AgentSkillsCN

status-map

为代理会话生成易于人类阅读的ASCII状态可视化图表。

SKILL.md
--- frontmatter
name: status-map
description: Generate human-readable ASCII status visualizations for agent sessions
version: 1.0.0

Status Map Skill

Purpose

Generate ASCII-based visualizations for human observability of AI agent sessions. Complements Sentinel Protocol (JSON-based) by providing quick, scannable status information.

When to Use

  • Every response (PULSE template)
  • Every 5 responses (COMPACT template)
  • Session start/end
  • Before/after delegations
  • On errors
  • Before commits

Template Catalog

TemplatePurposeTime
PULSE1-line minimal status1-2s
COMPACTQuick 6-line check3-5s
SESSION_STARTInitial state8-10s
SESSION_ENDHandoff summary20-30s
DELEGATION_PREPre-delegation context5-8s
DELEGATION_POSTPost-delegation result8-12s
ERROR_DEBUGError diagnosis15-20s
PRE_COMMITCommit validation8-10s
FULL_REPORTComplete audit60-120s

Template Examples

PULSE (1-line)

code
[PULSE] ████████░░ 80% | ✓3 ↻1 ⚠0 | 25m | → Continue editing

COMPACT (6-line)

code
┌─────────────────────────────────────────────────────────────────┐
│  STATUS MAP | 2026-01-06T12:30 | Session: c614                  │
├────────────┬────────────────────────────────────────────────────┤
│ 🟢 GIT     │ main | clean | last: a31b933                       │
│ 🟢 AGENTS  │ 23 completed | 0 active | 0 blocked                │
│ 🟢 SENTINEL│ v1.0 | 10 rules | health: 100                      │
│ 🟢 LOCKS   │ 0 active | 0 stale                                 │
├────────────┴────────────────────────────────────────────────────┤
│ NEXT: aguardando instrucao do humano                            │
└─────────────────────────────────────────────────────────────────┘

Semaphore Indicators

IndicatorMeaningFallback
🟢OK / Healthy[OK]
🟡Warning[WARN]
🔴Error / Critical[FAIL]

Override Commands

CommandTemplate
/statusCOMPACT
/status fullFULL_REPORT
/status debugERROR_DEBUG
/status prePRE_COMMIT
/status endSESSION_END
/status pulsePULSE

Template Inference

The AI automatically selects template based on context:

  • Session start? → SESSION_START
  • Error detected? → ERROR_DEBUG
  • About to delegate? → DELEGATION_PRE
  • Delegation returned? → DELEGATION_POST
  • About to commit? → PRE_COMMIT
  • Session ending? → SESSION_END
  • Every 5th response? → COMPACT
  • Default → PULSE

Skill based on Status Map System v1.0 | multi-agent-os