一键导入
hacs-setup
One-time HACS identity registration. Saves your instance ID so all other HACS skills work without parameters. Run after bootstrap.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
One-time HACS identity registration. Saves your instance ID so all other HACS skills work without parameters. Run after bootstrap.
用 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 | hacs-setup |
| description | One-time HACS identity registration. Saves your instance ID so all other HACS skills work without parameters. Run after bootstrap. |
| allowed-tools | Bash, mcp__HACS__introspect, mcp__HACS__have_i_bootstrapped_before |
Register your HACS identity for all skills to use. Run once after bootstrap.
IMPORTANT: Identity is saved to the CURRENT WORKING DIRECTORY (.hacs-identity), not to your home directory. This is because multiple instances share the same Unix user (root) but wake in different directories. Each CWD gets its own identity.
Check if already set up:
cat .hacs-identity 2>/dev/null
If the file exists and looks correct, tell the user they're already set up and show the current identity.
If not set up, check if bootstrapped:
mcp__HACS__have_i_bootstrapped_before or mcp__HACS__introspectIf not bootstrapped, tell the user to run /hacs first to bootstrap.
Save identity to CWD:
cat > .hacs-identity << IDENTITY
HACS_INSTANCE_ID=<instance-id>
HACS_PROJECT=<project-name>
HACS_ROLE=<role>
IDENTITY
Confirm: "Identity saved to .hacs-identity in current directory. All /diary, /messages, /tasks, /checkin, /goals, /msg skills will now use your identity automatically."