一键导入
user-commands
Slash commands for agent management — gene monitoring, workspace ops, task tracking, and system info. Extensible command dispatch system.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Slash commands for agent management — gene monitoring, workspace ops, task tracking, and system info. Extensible command dispatch system.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | user-commands |
| layer | professional |
| description | Slash commands for agent management — gene monitoring, workspace ops, task tracking, and system info. Extensible command dispatch system. |
This gene gives your agent a slash command system — a set of /commands that let the human (and the agent itself) quickly inspect status, manage goals, sync workspace, and monitor genes.
Commands are stored as individual markdown files, one file per command:
skills/user-commands/
├── SKILL.md ← this file (dispatch logic + /genes commands)
├── config.schema.json
└── commands/ ← one .md file per command
├── lscmd.md
├── sync.md
├── reload.md
├── clean.md
├── status.md
├── sysinfo.md
├── tasks.md
├── goals.md
├── cron.md
├── skills.md
└── <your-custom>.md ← add your own here
⚠️ Do NOT put all commands in a single file. Each command = its own .md file. This is how the dispatch system works — it reads one file per command invocation, keeping context minimal.
/ (e.g., /scrum board → scrum)skills/user-commands/commands/<command>.mdCreate a new file skills/user-commands/commands/<name>.md:
# /<name>
**Purpose:** One-line description.
**Steps:**
1. Step one
2. Step two
**Output:** Format instructions.
The agent will auto-discover it via /lscmd. No registration needed.
| Command | Description |
|---|---|
/sync | Internalize session changes into files + git push |
/reload | Broadcast reload signal to all active sessions |
/clean | Clean zombie processes and expired resources |
| Command | Description |
|---|---|
/status | Quick overview: running tasks, pending reviews, issues |
/sysinfo | System resources (CPU/RAM/disk) + session token usage |
/tasks | List all dispatched tasks grouped by status |
/cron | List scheduled cron jobs with health status |
/skills | List all installed agent skills |
| Command | Description |
|---|---|
/goals | View/manage agent goals (add, complete, drop) |
/duties | List long-term responsibilities with health status (🟢🟡🔴) |
| Command | Description |
|---|---|
/genes status | Overview of installed genes with health indicators |
/genes list | All available genes (installed + not installed) by layer |
/genes check <name> | Deep check: config validation, dependencies |
/genes install <name> | Guided gene installation |
/genes update | Check for gene updates from upstream |
/genes config | Pretty-print current .agent-config.json |
| Command | Description |
|---|---|
/lscmd | List all available commands |
| Variable | Type | Default | Description |
|---|---|---|---|
COMMAND_PREFIX | string | /genes | Prefix for gene management commands |
CUSTOM_COMMANDS_DIR | string | commands/ | Directory for command definitions |
/lscmd (Inline)List all commands — scan commands/ directory, output table with name + purpose.
/genes Commands/genes status.agent-config.json for configured genesskills//genes list/genes check <name>/genes install <name>skills/<name>/config.schema.json).agent-config.json/genes update/genes config.agent-config.json| Gene | Layer | Description |
|---|---|---|
| memory | Core | Daily logs + long-term memory + distillation |
| evolution | Core | Passive learning from mistakes |
| workspace-sync | Core | Git-based persistence and bootstrap recovery |
| heartbeat-ops | Core | Proactive behavior during idle time |
| task-alignment | Core | Confirm understanding before acting |
| secret-vault | Core | Encrypted secret management |
| resource-efficiency | Core | Model routing & token conservation |
| doc-sync | Core | Documentation-code synchronization |
| gitflow-discipline | Core | Strict branching — all changes through PR |
| task-dispatch | Professional | Background task delegation with resumability |
| delivery | Professional | Structured work handoff, PR/MR creation |
| scout | Professional | Autonomous information gathering |
| scrum | Professional | Sprint planning, kanban, velocity tracking |
| ci-autonomy | Professional | Self-healing CI/CD |
| project-bootstrap | Professional | Day-zero project standards |
| user-commands | Professional | This gene — slash commands |
| coding | Domain | TDD, git discipline, code quality |
| product | Domain | PRDs, user stories, prioritization |
| finance | Domain | Financial analysis, reporting |
| design | Domain | Design review, accessibility |
| domain-first-design | Domain | ERD-first platform design |
/genes commands provide visibility into gene health/sync triggers git persistence/tasks shows dispatched work/clean overlaps with heartbeat zombie cleanup/scrum as a custom command