Agent Skills: Status

Check your HACS instance status via introspect. Shows identity, role, project, runtime state.

UncategorizedID: LupoGrigi0/Human-Adjacent-Coordination/status

Install this agent skill to your local

pnpm dlx add-skill https://github.com/LupoGrigi0/Human-Adjacent-Coordination/tree/HEAD/.claude/skills/status

Skill Files

Browse the full folder contents for status.

Download Skill

Loading file tree…

.claude/skills/status/SKILL.md

Skill Metadata

Name
status
Description
Check your HACS instance status via introspect. Shows identity, role, project, runtime state.

Status

Introspect your HACS instance.

Steps

  1. 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.

  2. Call mcp__HACS__introspect or mcp__HACS__get_instance_v2 with instanceId: $HACS_INSTANCE_ID

  3. Display key fields:

    • Instance ID, role, project
    • Runtime status (if daemon/openfang running)
    • Last active timestamp
    • Any personality adopted

Rules

  • Keep output compact — key-value format
  • Highlight anything that looks wrong (no role, no project, runtime down)