skills/agent-management/SKILL.md
Use when you need to find, install, create, or manage AI agents. Supports installing agents from local paths or GitHub URLs, scaffolding custom agents, and assigning skills to agents. Triggers: "install agent", "create agent", "manage agents", "list agents", "new agent", "add agent".
npx skillsauth add Wilder1222/superomni agent-managementInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
On session start, read: branch from git branch --show-current, session timestamp from ~/.omni-skills/sessions/current-session-ts.
Report status using one of these at the end of every skill session:
Pipeline stage order: THINK -> PLAN -> REVIEW -> BUILD -> VERIFY -> RELEASE
THINK has exactly one human gate: spec review approval. brainstorm runs without manual gate. After spec-[branch]-[session]-[date].md is generated, STOP for user spec approval. Once approved, all subsequent stages (PLAN -> REVIEW -> BUILD -> VERIFY -> RELEASE) auto-advance on DONE.
| Status | At THINK stage (after spec generation) | At all other stages |
|--------|----------------------------------------|-------------------|
| DONE | STOP - present spec document for user review. Wait for user approval before advancing to PLAN. | Auto-advance - print [STAGE] DONE -> advancing to [NEXT-STAGE] and immediately invoke next skill |
| DONE_WITH_CONCERNS | STOP - present concerns, wait for user decision | STOP - present concerns, wait for user decision |
| BLOCKED / NEEDS_CONTEXT | STOP - present blocker, wait for user | STOP - present blocker, wait for user |
When auto-advancing:
docs/superomni/[STAGE] DONE -> advancing to [NEXT-STAGE] ([skill-name])Note: The REVIEW stage (plan-review) runs fully automatically — all decisions (mechanical and taste) are auto-resolved using the 6 Decision Principles. No user input is requested during REVIEW.
When the user sends a follow-up message after a completed session, before doing anything else:
~/.omni-skills/sessions/current-session-ts to get session start timestamp. Find artifacts in docs/superomni/specs/, docs/superomni/plans/ newer than that timestamp using find -newer. Check git log --oneline -3.workflow skill for stage → skill mapping) and announce:
"Continuing in superomni mode — picking up at [stage] using [skill-name]."using-skills/SKILL.md.When asking the user a question, match the confirmation requirement to the complexity of the response:
| Question type | Confirmation rule | |---------------|------------------| | Single-choice — user picks one option (A/B/C, 1/2/3, Yes/No) | The user's selection IS the confirmation. Do NOT ask "Are you sure?" or require a second submission. | | Free-text input — user types a value and presses Enter | The submitted text IS the confirmation. No secondary prompt needed. | | Multi-choice — user selects multiple items from a list | After the user lists their selections, ask once: "Confirm these selections? (Y to proceed)" before acting. | | Complex / open-ended discussion — back-and-forth clarification | Collect all input, then present a summary and ask: "Ready to proceed with the above? (Y/N)" before acting. |
Rule: never add a redundant confirmation layer on top of a single-choice or text-input answer.
Custom Input Option Rule: Always append Other — describe your own idea: ___ to predefined choice lists. Treat custom text as the chosen option; ask one clarifying question only if ambiguous.
Load context progressively — only what is needed for the current phase:
| Phase | Load these | Defer these |
|-------|-----------|------------|
| Planning | Latest docs/superomni/specs/spec-*.md, constraints, prior decisions | Full codebase, test files |
| Implementation | Latest docs/superomni/plans/plan-*.md, relevant source files | Unrelated modules, docs |
| Review/Debug | diff, failing test output, minimal repro | Full history, specs |
If context pressure is high: summarize prior phases into 3-5 bullet points, then discard raw content.
All skill artifacts are written to docs/superomni/ (relative to project root).
See the Document Output Convention in CLAUDE.md for the full directory map.
Agent failures are harness signals — not reasons to retry the same approach:
harness-engineering skill to update the harness before retrying.It is always OK to stop and say "this is too hard for me." Escalation is expected, not penalized.
Before reporting final status, answer: (1) Process — all phases followed? (2) Evidence — every claim backed by output or file reference? (3) Scope — stayed within task boundary? If any NO, address it or report DONE_WITH_CONCERNS. For full sprint evaluation, use self-improvement.
Never say these — they are sycophantic filler that delays real analysis:
Always do:
Before executing substantive decisions, check if any falls into these high-tacit-density categories.
These are NOT about operational danger (that's the careful skill) — they're about whether the Agent
has enough tacit knowledge to judge correctly.
| Category | Trigger | Action |
|----------|---------|--------|
| D1 Domain Expertise | Security, compliance, legal, financial judgment | State TACIT-DENSE [D1], present trade-offs, wait for user |
| D2 User-Facing UX | UI copy, interaction flow, error messaging | Draft with explicit review markers |
| D3 Team Culture | Workflow, naming conventions, file organization | Check style-profiles/ first; ask if none |
| D4 Novel Pattern | Fewer than 3 precedents in project history | Reduce autonomy, add checkpoints before executing |
When TACIT-DENSE detected, output: TACIT-DENSE [D#]: [category] — [question] — My default: [recommendation]
Relationship with careful skill: careful = "can we undo this?" (operational). TACIT-DENSE = "can we judge this correctly?" (knowledge). Complementary.
At session end, log skill name, duration, and outcome to ~/.omni-skills/analytics/ via bin/analytics-log. Nothing is sent to external servers.
If you have already entered Plan Mode (via EnterPlanMode), these rules apply:
ExitPlanMode prematurely to bypass a skill's STOP/gate.git log/git statusdocs/superomni/ (specs, plans, reviews)~/.omni-skills/ (sessions, analytics)docs/superomni/plans/, not to Claude's built-in plan file.ExitPlanMode after the current skill workflow is complete and has reported a status (DONE/BLOCKED/etc).Goal: Find, install, create, and manage AI agents within the superomni framework.
An agent is a specialized AI persona defined in agents/<name>.md. Each agent:
Always follow this order before creating anything from scratch:
1. Check project built-ins → bin/agent-manager list
2. Search the network → bin/agent-manager search <query>
3. Install from URL → bin/agent-manager install <url>
4. Create from scratch → bin/agent-manager create <name>
Never jump to Phase 4 (create) without first completing Phases 1–3.
Before anything else, check if a built-in or previously-installed agent already covers your need:
# List all agents (built-in + user-installed)
bin/agent-manager list
# Get details about a specific agent
bin/agent-manager info <name>
| Agent | Specialty |
|-------|-----------|
| code-reviewer | Structured code review (P0/P1/P2 framework) |
| planner | Strategic task decomposition and plan writing |
| debugger | Root-cause analysis and bug resolution |
| test-writer | Behavior-verifying test suites |
| security-auditor | OWASP-aware vulnerability identification |
| architect | System design and architecture review |
| ceo-advisor | Product strategy, scope decisions, demand validation |
| designer | UX design, missing states, AI slop detection |
Gate: If a built-in agent fits your need → use it directly. Stop here. If none fits → proceed to Phase 2.
If no built-in agent covers your need, search GitHub and known registries before creating from scratch:
# Search GitHub for matching agents
bin/agent-manager search <your-query>
This searches GitHub for agent markdown files matching your query and shows raw URLs you can install directly.
Search strategy:
bin/agent-manager search "data-analyst"https://github.com/obra/superpowers/tree/main/agentshttps://github.com/garrytan/gstack/tree/main/agentsGate: If a suitable agent is found online → install it (Phase 3). Stop here. If nothing suitable → proceed to Phase 4.
# Install from a raw GitHub URL
bin/agent-manager install https://raw.githubusercontent.com/user/repo/main/agents/my-agent.md
# Install from obra/superpowers
bin/agent-manager install https://raw.githubusercontent.com/obra/superpowers/main/agents/<agent-name>.md
bin/agent-manager install ./path/to/my-agent.md
The agent is copied to ~/.omni-skills/agents/ and available immediately.
bin/agent-manager list
bin/agent-manager info <agent-name>
bin/agent-manager create <agent-name>
This creates a template at either:
agents/<name>.md — project agents (tracked in git, shared with team)~/.omni-skills/agents/<name>.md — user agents (personal, not in git)Edit the scaffolded file and fill in:
To give an agent access to specific skills, reference them in its process:
## Available Skills
- Follow `skills/systematic-debugging/SKILL.md` for debugging protocol
- Follow `skills/test-driven-development/SKILL.md` when writing tests
Invoke the agent with a sample task:
Only user-installed agents can be removed (built-ins are part of the framework):
bin/agent-manager remove <agent-name>
subagent-development skill instead)AGENT MANAGEMENT REPORT
════════════════════════════════════════
Operation: [list/install/create/remove]
Agent: [name]
Location: [path]
Source: [local/url — if installed]
Flow used: [built-in | network search | created from scratch]
Built-in agents: [N]
User agents: [N]
Status: DONE | DONE_WITH_CONCERNS | BLOCKED
════════════════════════════════════════
development
Systematic, behavior-preserving code refactoring with safety gates. Dispatches refactoring-agent. Triggers: "refactor", "clean up code", "reduce tech debt", "extract method", "rename". NOT for reactive PR feedback — use code-review for that.
development
Meta-skill: create, install, list, and manage skills and agents within the superomni framework. Merges writing-skills + agent-management into one unified workflow. Triggers: "create skill", "write a skill", "install skill", "list skills", "create agent", "write an agent", "install agent", "list agents", "new skill", "new agent", "add skill", "add agent", "manage framework".
testing
Dependency security, license, and freshness audit. Dispatches dependency-auditor agent to scan all package managers. Triggers: "dependency audit", "check dependencies", "npm audit", "security scan", "check for vulnerabilities", "outdated packages", "license check".
development
Meta-skill: use when creating a new skill for the superomni framework. Guides through the process of designing and writing a well-structured skill. Triggers: "create a new skill", "write a skill for", "add a skill that".