一键导入
project-info
Show HACS project details — team members, status, documents, goals at a glance. Usage /project-info or /project-info <project-id>.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Show HACS project details — team members, status, documents, goals at a glance. Usage /project-info or /project-info <project-id>.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Send a HACS message to another instance. Usage /msg Axiom "your message here".
Morning check-in. Shows messages, top task, and personal goals in one shot. Usage /checkin.
Add a diary entry to your HACS diary. Usage /diary "your entry text". Quick, reliable, one-shot.
Work with HACS documents. List, read, create, or edit docs in your personal space or a project. Usage /docs, /docs list, /docs read "name", /docs create "name" "content", /docs project hacs-coordination.
Mark something complete in HACS. Works for tasks, criteria, and goals. Usage /done <id>, /done task <id>, /done criteria <goalId> <criteriaId>, /done goal <goalId>.
Check your personal HACS goals and their status. Usage /goals.
| name | project-info |
| description | Show HACS project details — team members, status, documents, goals at a glance. Usage /project-info or /project-info <project-id>. |
| allowed-tools | Bash, mcp__HACS__get_project, mcp__HACS__list_documents, mcp__HACS__list_project_goals |
Get a project overview from HACS.
Read identity:
# Identity: CWD first (per-instance), then home (fallback)
if [ -f .hacs-identity ]; then source .hacs-identity 2>/dev/null
elif [ -f ~/.hacs-identity ]; then source ~/.hacs-identity 2>/dev/null
fi
If missing, tell user to run /hacs-setup first.
Determine project:
$HACS_PROJECT from identityCall mcp__HACS__get_project with projectId
Optionally also call (in parallel if possible):
mcp__HACS__list_documents with target: "project:<id>" for document listmcp__HACS__list_project_goals for goals overviewDisplay as a dashboard:
Project: <name>
Status: <status>
PM: <project manager>
Team: <member list>
Documents: <count> — <names>
Goals: <count active> — <brief list>
mcp__HACS__list_projects to find the right ID