AGENTS.md
skills/AGENTS.mdAGENTS.md
Quality
66/100
Scores the file, not the repository.Length
970 words
31 headings · 4 code blocksRepository
38k
— · pushed 0 days agoLast changed
3 days ago
First indexed 3 days ago.1<!-- Parent: ../AGENTS.md -->2<!-- Generated: 2026-01-28 | Updated: 2026-03-02 -->34# skills5630 skill directories for workflow automation and specialized behaviors.78## Purpose910Skills are reusable workflow templates that can be invoked via `/oh-my-claudecode:skill-name`. Each skill provides:11- Structured prompts for specific workflows12- Activation triggers (manual or automatic)13- Integration with execution modes1415## Key Files1617### Execution Mode Skills1819| File | Skill | Purpose |20|-----------|-------|---------|21| `autopilot/SKILL.md` | autopilot | Full autonomous execution from idea to working code |22| `ultrawork/SKILL.md` | ultrawork | Maximum parallel agent execution |23| `ralph/SKILL.md` | ralph | Persistence until verified complete |24| `team/SKILL.md` | team | N coordinated agents with task claiming |25| `ultraqa/SKILL.md` | ultraqa | QA cycling until goal met |2627### Planning Skills2829| File | Skill | Purpose |30|-----------|-------|---------|31| `plan/SKILL.md` | omc-plan | Strategic planning with interview workflow |32| `ralplan/SKILL.md` | ralplan | Iterative planning (Planner+Architect+Critic) with RALPLAN-DR structured deliberation (`--deliberate` for high-risk) |33| `deep-interview/SKILL.md` | deep-interview | Socratic deep interview with mathematical ambiguity gating (Ouroboros-inspired) |34| `ralph-init/SKILL.md` | ralph-init | Initialize PRD for structured ralph |3536### Exploration Skills3738| File | Skill | Purpose |39|-----------|-------|---------|40| `deepinit/SKILL.md` | deepinit | Generate hierarchical AGENTS.md |41| `sciomc/SKILL.md` | sciomc | Parallel scientist orchestration |4243### Visual Skills4445| File | Skill | Purpose |46|-----------|-------|---------|47| `visual-verdict/SKILL.md` | visual-verdict | Structured visual QA verdict for screenshot/reference comparisons |4849### Utility Skills5051| File | Skill | Purpose |52|-----------|-------|---------|53| `ai-slop-cleaner/SKILL.md` | ai-slop-cleaner | Regression-safe cleanup workflow for AI-generated code slop |54| `skillify/SKILL.md` | skillify | Extract reusable skill from session |55| `learner/SKILL.md` | learner | Deprecated compatibility alias/internal implementation history for skillify |56| `ask/SKILL.md` | ask | Ask Claude, Codex, or Gemini via `omc ask` and capture an artifact |57| `note/SKILL.md` | note | Save notes for compaction resilience |58| `cancel/SKILL.md` | cancel | Cancel any active OMC mode |59| `hud/SKILL.md` | hud | Configure HUD display |60| `omc-doctor/SKILL.md` | omc-doctor | Diagnose installation issues |61| `setup/SKILL.md` | setup | Unified setup entrypoint for install, diagnostics, and MCP configuration |62| `omc-setup/SKILL.md` | omc-setup | One-time setup wizard |63| `omc-help/SKILL.md` | omc-help | Usage guide |64| `mcp-setup/SKILL.md` | mcp-setup | Configure MCP servers |65| `skill/SKILL.md` | skill | Manage local skills |6667### Domain Skills6869| File | Skill | Purpose |70|-----------|-------|---------|71| `project-session-manager/SKILL.md` | project-session-manager (+ `psm` alias) | Isolated dev environments |72| `writer-memory/SKILL.md` | writer-memory | Agentic memory for writers |73| `release/SKILL.md` | release | Generic release assistant — analyzes repo CI/rules, caches in `.omc/RELEASE_RULE.md`, guides the release |7475## For AI Agents7677### Working In This Directory7879#### Skill Template Format8081```markdown82---83name: skill-name84description: Brief description85triggers:86 - "keyword1"87 - "keyword2"88agent: executor # Optional: which agent to use89model: sonnet # Optional: model override90pipeline: [skill-name, follow-up-skill] # Optional: standardized multi-skill flow91next-skill: follow-up-skill # Optional: explicit handoff target92next-skill-args: --direct # Optional: arguments for the next skill93handoff: .omc/plans/example.md # Optional: artifact/context handed to next skill94---9596# Skill Name9798## Purpose99What this skill accomplishes.100101## Workflow1021. Step one1032. Step two1043. Step three105106## Usage107How to invoke this skill.108109## Configuration110Any configurable options.111```112113#### Skill Invocation114115```bash116# Manual invocation117/oh-my-claudecode:skill-name118119# With arguments120/oh-my-claudecode:skill-name arg1 arg2121122# Auto-detected from keywords123"autopilot build me a REST API" # Triggers autopilot skill124```125126#### Creating a New Skill1271281. Create `new-skill/SKILL.md` directory and file with YAML frontmatter1292. Define purpose, workflow, and usage1303. Add to skill registry (auto-detected from frontmatter)1314. Optionally add activation triggers1325. Create corresponding plugin-scoped skill/slash surface via `skills/new-skill/SKILL.md` (and generated artifacts when the build requires them)1336. Update `docs/REFERENCE.md` (Skills section, count)1347. If execution mode skill, also create `src/hooks/new-skill/` hook135136### Common Patterns137138**Skill chaining:**139```markdown140## Workflow1411. Invoke `explore` agent for context1422. Invoke `architect` for analysis1433. Invoke `executor` for implementation1444. Invoke `qa-tester` for verification145```146147If `pipeline` / `next-skill` metadata is present, OMC appends a standardized **Skill Pipeline** handoff block to the rendered skill prompt so downstream steps are explicit.148149**Conditional behavior:**150```markdown151## Workflow1521. Check if tests exist153 - If yes: Run tests first154 - If no: Create test plan1552. Proceed with implementation156```157158### Testing Requirements159160- Skills are verified via integration tests161- Test skill invocation with `/oh-my-claudecode:skill-name`162- Verify trigger keywords activate correct skill163- For git-related skills, follow `templates/rules/git-workflow.md`164165## Dependencies166167### Internal168- Loaded by skill bridge (`scripts/build-skill-bridge.mjs`)169- References agents from `agents/`170- Uses hooks from `src/hooks/`171172### External173None - pure markdown files.174175## Skill Categories176177| Category | Skills | Trigger Keywords |178|----------|--------|------------------|179| Execution | autopilot, ultrawork, ralph, team, ultraqa | "autopilot", "ulw", "ralph", "team" |180| Cleanup | ai-slop-cleaner | "deslop", "anti-slop", cleanup/refactor + slop smells |181| Planning | omc-plan, ralplan, deep-interview, ralph-init | "plan this", "interview me", "ouroboros" |182| Exploration | deepinit, sciomc, external-context | "deepinit", "research" |183| Utility | skillify, learner (deprecated alias), note, cancel, hud, setup, omc-doctor, omc-setup, omc-help, mcp-setup | "stop", "cancel" |184| Domain | psm, writer-memory, release | psm context |185186## Auto-Activation187188Some skills activate automatically based on context:189190| Skill | Auto-Trigger Condition |191|-------|----------------------|192| autopilot | "autopilot", "build me", "I want a" |193| ultrawork | "ulw", "ultrawork" |194| ralph | "ralph", "don't stop until" |195| deep-interview | "deep interview", "interview me", "ouroboros", "don't assume" |196| cancel | "stop", "cancel", "abort" |197198<!-- MANUAL:199- Team runtime wait semantics: `omc_run_team_wait.timeout_ms` only limits the wait call and does not stop workers.200- `timeoutSeconds` is removed from `omc_run_team_start`; use explicit `omc_run_team_cleanup` for intentional worker pane termination.201-->202
Also in Yeachan-Heo/oh-my-claudecode
Diff this repo’s formatsOne repository carrying more than one format is the comparison this product exists for: does anyone actually write different content in each file, or is one a copy of the other?
| Repository | Format | Stack | Covers | Score | Changed |
|---|---|---|---|---|---|
| Yeachan-Heo/oh-my-claudecode.github/CLAUDE.md · 38k | CLAUDE.md | setupbuildstylegit+2 | 79/100 | 3 days ago | |
| Yeachan-Heo/oh-my-claudecodeAGENTS.md · 38k | AGENTS.md | setuplint-formatstyletypes+4 | 45/100 | 3 days ago | |
| Yeachan-Heo/oh-my-claudecodesrc/AGENTS.md · 38k | AGENTS.md | buildteststylearch+2 | 77/100 | 3 days ago | |
| Yeachan-Heo/oh-my-claudecodesrc/agents/AGENTS.md · 38k | AGENTS.md | teststylearchdependencies+1 | 66/100 | 3 days ago | |
| Yeachan-Heo/oh-my-claudecodesrc/features/AGENTS.md · 38k | AGENTS.md | teststylearchdependencies | 74/100 | 3 days ago | |
| Yeachan-Heo/oh-my-claudecodesrc/hooks/AGENTS.md · 38k | AGENTS.md | setupteststylearch+2 | 74/100 | 3 days ago | |
| Yeachan-Heo/oh-my-claudecodesrc/tools/AGENTS.md · 38k | AGENTS.md | setupteststylearch+1 | 86/100 | 3 days ago | |
| Yeachan-Heo/oh-my-claudecodesrc/tools/diagnostics/AGENTS.md · 38k | AGENTS.md | teststylearchtypes+2 | 77/100 | 3 days ago | |
| Yeachan-Heo/oh-my-claudecodesrc/tools/lsp/AGENTS.md · 38k | AGENTS.md | setupteststylearch+2 | 74/100 | 3 days ago | |
| Yeachan-Heo/oh-my-claudecodeCLAUDE.md · 38k | CLAUDE.md | setupbuildstylegit+1 | 65/100 | 3 days ago |
Diff against .github/CLAUDE.md Diff against AGENTS.md Diff against src/AGENTS.md Diff against src/agents/AGENTS.md Diff against src/features/AGENTS.md Diff against src/hooks/AGENTS.md Diff against src/tools/AGENTS.md Diff against src/tools/diagnostics/AGENTS.md Diff against src/tools/lsp/AGENTS.md Diff against CLAUDE.md
Similar configs
Same format, overlapping stack, ranked by quality.
| Repository | Format | Stack | Covers | Score | Changed |
|---|---|---|---|---|---|
| mui/material-uiAGENTS.md · 99k | AGENTS.md | setupbuildtestlint-format+9 | 100/100 | 3 days ago | |
| TryGhost/Ghoste2e/AGENTS.md · 55k | AGENTS.md | setupteststylearch+2 | 100/100 | 3 days ago | |
| SkeneTechnologies/skene-cookbookAGENTS.md · 51 | AGENTS.md | setupbuildtestlint-format+7 | 100/100 | 2 days ago | |
| duckduckgo/content-scope-scriptsspecial-pages/AGENTS.md · 70 | AGENTS.md | buildteststylearch+3 | 100/100 | 3 days ago | |
| n8n-io/n8npackages/@n8n/agents/AGENTS.md · 199k | AGENTS.md | buildteststylearch+3 | 100/100 | 3 days ago | |
| aaif-goose/gooseAGENTS.md · 52k | AGENTS.md | setupbuildtestlint-format+6 | 100/100 | 3 days ago | |
| trick77/agents-md-syncAGENTS.md · 2 | AGENTS.md | setupbuildteststyle+5 | 100/100 | 3 days ago | |
| code-yeongyu/oh-my-openagentpackages/web/AGENTS.md · 67k | AGENTS.md | setupbuildtestlint-format+6 | 100/100 | 2 days ago |
