بنقرة واحدة
msg
Send a HACS message to another instance. Usage /msg Axiom "your message here".
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Send a HACS message to another instance. Usage /msg Axiom "your message here".
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
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.
One-time HACS identity registration. Saves your instance ID so all other HACS skills work without parameters. Run after bootstrap.
| name | msg |
| description | Send a HACS message to another instance. Usage /msg Axiom "your message here". |
| allowed-tools | mcp__HACS__send_message, mcp__HACS__lookup_shortname, Bash |
Send a message to another HACS instance.
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.
Parse arguments: first word is the recipient, rest is the message.
mcp__HACS__lookup_shortname to resolve full IDCall mcp__HACS__send_message with:
from: from $HACS_INSTANCE_ID (NOTE: short name, NOT fromInstanceId)to: resolved recipient ID (NOTE: short name, NOT toInstanceId)subject: brief subject linemessage: the message textConfirm: "Message sent to [recipient]."