agent-status
Check the health and availability of all agentd services. Use to verify services are running before performing operations.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Check the health and availability of all agentd services. Use to verify services are running before performing operations.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Store, search, and manage shared knowledge through the memory service. Use for persisting information across agent sessions, semantic search over stored knowledge, and inter-agent knowledge sharing.
Browse, read, and author per-project knowledgebase documents through the knowledge service CLI. Use for creating, updating, listing, and reading markdown documents stored against a project, and reconciling DB rows against disk.
Cut a new agentd release. Suggests the next semver version from conventional commits (or accepts an explicit `x.y.z`), bumps the workspace version, regenerates the changelog with git-cliff, then commits, tags, and pushes the `v*` tag that triggers the Release workflow. Use when the user runs /release or asks to publish/cut/tag a new version.
Create a new GitHub plan issue with the "Plan: <title>" format, appropriate labels, and structured body. Use when the user wants to capture a high-level plan for future work.
Ask the human user a question during workflow execution and check for answers. Use for agent-to-human Q&A, collecting decisions, and reacting to human responses via ask_response workflow triggers.
Branch stacking and PR management with git-spice for the agentd project. Use when creating stacked branches, submitting PRs, syncing with upstream, resolving rebase conflicts, or navigating a branch stack.
| name | agent-status |
| description | Check the health and availability of all agentd services. Use to verify services are running before performing operations. |
Skill for checking the health of agentd services.
# Check health of all services at once
agent status
# JSON output
agent status --json
Displays a summary table with each service's status and details.
Each service subcommand also has a health check:
agent orchestrator health
agent notify health
agent ask health
agent wrap health
agent memory health
| Service | Dev Port | Prod Port | Env Var |
|---|---|---|---|
| Ask | 17001 | 7001 | AGENTD_ASK_SERVICE_URL |
| Notify | 17004 | 7004 | AGENTD_NOTIFY_SERVICE_URL |
| Wrap | 17005 | 7005 | AGENTD_WRAP_SERVICE_URL |
| Orchestrator | 17006 | 7006 | AGENTD_ORCHESTRATOR_SERVICE_URL |
| Memory | 17008 | 7008 | AGENTD_MEMORY_SERVICE_URL |
Default URLs use http://localhost:<prod-port>. Override with env vars for non-default setups.