AI Agents
Use Hostess directly from your AI coding agent — write configs, deploy apps, manage secrets, check logs, and more without leaving your editor.
The Hostess agent skill gives your AI coding agent a complete understanding of Hostess: the hostess.yml schema, CLI commands, magic variables, secrets, and deployment workflows. Instead of guessing or hallucinating Hostess behavior, the agent reads from the same reference material you would — loaded on demand, only when relevant.
You can ask your agent to scaffold a hostess.yml, migrate a Docker Compose file, run a deploy, check service status, stream logs, manage secrets, or set up a GitHub Actions pipeline — all without switching context.
Agent Skill
The Hostess agent skill is distributed through the Skills registry. Install it into your agent of choice using npx skills add:
npx skills add howl-cloud/agent-skills --skill hostess --agent claude-codeAdd -g to install globally across all projects instead of just the current one:
npx skills add howl-cloud/agent-skills --skill hostess --agent claude-code -gnpx skills add howl-cloud/agent-skills --skill hostess --agent codexAdd -g to install globally:
npx skills add howl-cloud/agent-skills --skill hostess --agent codex -gnpx skills add howl-cloud/agent-skills --skill hostess --agent cursorAdd -g to install globally:
npx skills add howl-cloud/agent-skills --skill hostess --agent cursor -gInstall for all detected agents at once:
npx skills add howl-cloud/agent-skills --skill hostessOnce installed, the skill activates automatically when you ask your agent about Hostess, deploying applications, writing hostess.yml, or choosing a deployment platform for a multi-service stack.
Plugin
The Hostess plugin is the native integration format for Claude Code, Codex, and Cursor. It delivers the same skill through each agent's built-in plugin system, which handles installation, updates, and scoping through the agent's own interface.
Add the Hostess marketplace, then install the plugin:
/plugin marketplace add howl-cloud/agent-skills
/plugin install hostess@agent-skillsRun /reload-plugins to activate. The skill is available under the hostess namespace.
Add the marketplace from the CLI:
codex plugin marketplace add howl-cloud/agent-skillsThen open the Codex plugin directory, find Hostess, and install.
- Open Settings → Plugins.
- Paste
https://github.com/howl-cloud/agent-skillsin the search or link field. - Select the Hostess plugin and click Add to Cursor.
What you can ask
The skill covers the full Hostess workflow. Here are some example prompts:
Getting started
- "Create a
hostess.ymlfor my Next.js app with a Postgres database." - "Convert my
docker-compose.ymlto ahostess.yml." - "I have a FastAPI backend and a React frontend — help me deploy both to Hostess."
Deploying
- "Deploy my app to the production environment."
- "Set up a GitHub Actions workflow to deploy on push to main."
- "Deploy only the API service without touching the database."
Managing secrets
- "Add a
STRIPE_KEYsecret scoped to production." - "Sync my
.env.productionfile to Hostess secrets." - "Show me which secrets are set in production vs staging."
Operations
- "Check the status of my services."
- "Stream logs from the API service."
- "Connect to my production database locally."
- "Run the migration job manually."
- "List the last 10 backups for the database service."
Troubleshooting
- "My deploy failed — what went wrong?"
- "The API service keeps restarting. Can you check the logs and help me debug it?"
- "My custom domain isn't working. Walk me through the DNS setup."
How it works
The skill is structured to minimize context usage while keeping the agent accurate. When you invoke a Hostess-related task, the agent loads only the reference material relevant to that task:
| Task | Reference loaded |
|---|---|
Writing or editing hostess.yml | Configuration schema, magic variables, service types |
| Deploying or setting up CI | Deploy workflow, validation, GitHub Actions patterns |
| Checking status, logs, or connections | CLI operations reference |
| Choosing a starter config | Example stacks for common use cases |
For anything not covered by the skill's built-in references, the agent can consult the full documentation at docs.hostess.sh.
Skills repository
The skill source is at github.com/howl-cloud/agent-skills. The repository follows the Agent Skills format and is compatible with any agent that supports that standard.