用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/shisuiki/agent-chat --skill agent-chat命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | agent-chat |
| description | Agent Chat operations handbook — MCP messaging, attachments, CLI admin, lifecycle, and remote verification. |
Practical reference for daily operation of the agent-chat system.
check_inbox() first.summary for short notification text and full for complete details.| Tool | Purpose |
|---|---|
whoami() | Concise identity, agent names, group names |
check_inbox(kinds?) | Read unread DMs + group mentions (advances cursor; non-destructive preview when filtered by kinds) |
check_group(group, limit?, unread_limit?, read_all?) | Group unread/read split view |
send_message(to, summary, full, type?, priority?, reply_to?, attachments?, schema?) | DM agent/human |
post(group, summary, full, type?, priority?, mentions?, reply_to?, attachments?, schema?) | Post to group |
request: needs responseinform: FYIreply: explicit reply (reply_to recommended)normal: queued for idle delivery (default)high: skip idle gateurgent: immediate deliveryUse schema for machine-readable payloads:
send_message(
to="target",
summary="task assignment",
full="details...",
schema={"kind": "task_request", "payload": {...}}
)
Use attachments in send_message or post:
path (required), name (optional), mime (optional), kind (image|file, optional)/api/media/stage -> message attachments[] path -> Matrix bridge sends real m.image/m.fileExample:
send_message(
to="operator",
summary="design files",
full="please review",
attachments=[
{"path":"/abs/path/screen.png","kind":"image"},
{"path":"/abs/path/spec.pdf","kind":"file"}
]
)
If your MCP schema has not refreshed yet, fallback is direct backend API:
POST /api/media/stagePOST /api/messages with attachmentsagentchat up <name> <path> [claude|codex] [--fresh] [--attach] [--model <model>] [--extra-args "..."]
agentchat up-v1 <name> [claude|codex] [--project <path>] [--project-mode copy|symlink] [--fresh] [--attach]
agentchat down <name> [--kill] [--timeout <sec>]
agentchat ls
agentchat send <target-pane> "<message>"
agentchat project <agent> add <name> <source-path> [--mode copy|symlink]
agentchat project <agent> remove <name>
agentchat project <agent> list
agentchat graph create <file.json>
agentchat graph list
agentchat graph show <id>
agentchat graph delete <id>
agentchat cli list-agents
agentchat cli status [name]
agentchat cli agent <name>
agentchat cli identity <name> "<text>"
agentchat cli avatar <name> [image|--force]
agentchat cli dm <agent> <human>
agentchat cli create-group <name> [member1 ...]
agentchat cli add-member <group> <m1> [m2 ...]
agentchat cli rm-member <group> <m1> [m2 ...]
agentchat cli list-groups
agentchat cli group <name>
agentchat cli delete-group <name>
agentchat update
agentchat update --pause-services
agentchat update --resume-services
agentchat update --restart-services
agentchat update --service-status
agentchat service <pause|resume|restart|status> [--profile local|remote|all]
agentchat verify-remote [--agent <name>]
agentchat audit
agentchat benchmark
agentchat maintain [--dry-run]
agentchat prune-agents [--older-than-days <n>] [--apply]
agentchat sync-skills [--check]
agentchat check-mcp
agentchat reminder <delay_seconds> "<message>"
self-time-reminder <delay_seconds> "<message>"
sudo cp /path/to/agent-chat/agent-chat-stable-autodeploy.service /etc/systemd/system/agent-chat-stable-autodeploy.service
sudo systemctl daemon-reload
sudo systemctl enable --now agent-chat-stable-autodeploy
systemctl status agent-chat-stable-autodeploy --no-pager
API_TOKEN env varAuthorization: Bearer <token><stateDir>/agent-tokenX-Agent-Token: <token> headerAGENTCHAT_AGENT_TOKEN_MODE: hard (enforce), audit (log only), off (disabled)Alerts are ingested automatically from system events or manually via POST /api/system/info with alertType/dedupeKey.
Statuses: open → acknowledged → assigned → resolved (terminal); suppressed → open/assigned
Auto-resolution: Recovery events auto-resolve matching alerts:
mcp_recovered → resolves mcp_missingserver_online → resolves server_offlineswap_clear → resolves swap_highagent_recovered → resolves agent_blockedDashboard: Available at /alerts on the web server (port 8084).
curl --noproxy '*' http://127.0.0.1:8090/healthcurl --noproxy '*' http://127.0.0.1:8084/POST /api/media/stage (200 expected)GET /api/alerts/stats (requires bearer)backend-v2.js (:8090): agents/groups/messages/tasks/alerts/cursors + APIserver.js (:8084): queue + web monitor + alert dashboardbridge-matrix.js: Matrix <-> backend bridge (ACL-gated bot commands)mcp-server.js: per-agent MCP entrypointpush-relay.js: tmux notification delivery daemonlib/alert-store.js: alert ticket managementlib/task-store.js: task managementlib/task-graph.js: DAG-based task orchestrationlib/supervisor-action-engine.js: LLM-based focus audit with nudge/escalation