RuleStack

Configs

Stacks

Compare

Diff

RuleStack

Configs

Stacks

Compare

Diff

Read API

RuleStack

Configs

Stacks

Compare

Diff

Read API

Configs/AGENTS.md/Yeachan-Heo/oh-my-claudecode

AGENTS.md

skills/AGENTS.md
AGENTS.md

Quality

66/100

Scores the file, not the repository.

Length

970 words

31 headings · 4 code blocks

Repository

38k

— · pushed 0 days ago

Last changed

3 days ago

First indexed 3 days ago.
Yeachan-Heo/oh-my-claudecode/skills/AGENTS.mdRawGitHub
1<!-- Parent: ../AGENTS.md -->
2<!-- Generated: 2026-01-28 | Updated: 2026-03-02 -->
3 
4# skills
5 
630 skill directories for workflow automation and specialized behaviors.
7 
8## Purpose
9 
10Skills are reusable workflow templates that can be invoked via `/oh-my-claudecode:skill-name`. Each skill provides:
11- Structured prompts for specific workflows
12- Activation triggers (manual or automatic)
13- Integration with execution modes
14 
15## Key Files
16 
17### Execution Mode Skills
18 
19| 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 |
26 
27### Planning Skills
28 
29| 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 |
35 
36### Exploration Skills
37 
38| File | Skill | Purpose |
39|-----------|-------|---------|
40| `deepinit/SKILL.md` | deepinit | Generate hierarchical AGENTS.md |
41| `sciomc/SKILL.md` | sciomc | Parallel scientist orchestration |
42 
43### Visual Skills
44 
45| File | Skill | Purpose |
46|-----------|-------|---------|
47| `visual-verdict/SKILL.md` | visual-verdict | Structured visual QA verdict for screenshot/reference comparisons |
48 
49### Utility Skills
50 
51| 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 |
66 
67### Domain Skills
68 
69| 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 |
74 
75## For AI Agents
76 
77### Working In This Directory
78 
79#### Skill Template Format
80 
81```markdown
82---
83name: skill-name
84description: Brief description
85triggers:
86 - "keyword1"
87 - "keyword2"
88agent: executor # Optional: which agent to use
89model: sonnet # Optional: model override
90pipeline: [skill-name, follow-up-skill] # Optional: standardized multi-skill flow
91next-skill: follow-up-skill # Optional: explicit handoff target
92next-skill-args: --direct # Optional: arguments for the next skill
93handoff: .omc/plans/example.md # Optional: artifact/context handed to next skill
94---
95 
96# Skill Name
97 
98## Purpose
99What this skill accomplishes.
100 
101## Workflow
1021. Step one
1032. Step two
1043. Step three
105 
106## Usage
107How to invoke this skill.
108 
109## Configuration
110Any configurable options.
111```
112 
113#### Skill Invocation
114 
115```bash
116# Manual invocation
117/oh-my-claudecode:skill-name
118 
119# With arguments
120/oh-my-claudecode:skill-name arg1 arg2
121 
122# Auto-detected from keywords
123&quot;autopilot build me a REST API&quot; # Triggers autopilot skill
124```
125 
126#### Creating a New Skill
127 
1281. Create `new-skill/SKILL.md` directory and file with YAML frontmatter
1292. Define purpose, workflow, and usage
1303. Add to skill registry (auto-detected from frontmatter)
1314. Optionally add activation triggers
1325. 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/` hook
135 
136### Common Patterns
137 
138**Skill chaining:**
139```markdown
140## Workflow
1411. Invoke `explore` agent for context
1422. Invoke `architect` for analysis
1433. Invoke `executor` for implementation
1444. Invoke `qa-tester` for verification
145```
146 
147If `pipeline` / `next-skill` metadata is present, OMC appends a standardized **Skill Pipeline** handoff block to the rendered skill prompt so downstream steps are explicit.
148 
149**Conditional behavior:**
150```markdown
151## Workflow
1521. Check if tests exist
153 - If yes: Run tests first
154 - If no: Create test plan
1552. Proceed with implementation
156```
157 
158### Testing Requirements
159 
160- Skills are verified via integration tests
161- Test skill invocation with `/oh-my-claudecode:skill-name`
162- Verify trigger keywords activate correct skill
163- For git-related skills, follow `templates/rules/git-workflow.md`
164 
165## Dependencies
166 
167### Internal
168- Loaded by skill bridge (`scripts/build-skill-bridge.mjs`)
169- References agents from `agents/`
170- Uses hooks from `src/hooks/`
171 
172### External
173None - pure markdown files.
174 
175## Skill Categories
176 
177| 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 |
185 
186## Auto-Activation
187 
188Some skills activate automatically based on context:
189 
190| 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" |
197 
198<!-- 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 

Sections

  • skills
  • Purpose
  • Key Files
  • Execution Mode Skills
  • Planning Skills
  • Exploration Skills
  • Visual Skills
  • Utility Skills
  • Domain Skills
  • For AI Agents
  • Working In This Directory
  • Skill Name
  • Purpose
  • Workflow
  • Usage
  • Configuration
  • Manual invocation
  • With arguments
  • Auto-detected from keywords
  • Common Patterns
  • Workflow
  • Workflow
  • Testing Requirements
  • Dependencies
  • Internal
  • External
  • Skill Categories
  • Auto-Activation

What it covers

testcode-stylearchitecturedependenciesagent-behaviour

Stack — with the evidence

typescript

(1.00)

vitest

(1.00)

eslint

(1.00)

node

(0.70)

react

(0.70)

vite

(0.70)

pytest

(0.70)

javascript

(0.60)

github-actions

(0.60)

python

(0.50)

Format

AGENTS.md

A plain-markdown README for coding agents, deliberately unopinionated: no frontmatter, no globs, no vendor keys. That minimalism is why it became the one file a dozen different agents will read, and why it carries the least per-file targeting power of any format here.

What the corpus says about it

Repository

Owner
Yeachan-Heo
Language
—
License
—
Archived
no

All configs in this repo

Also in Yeachan-Heo/oh-my-claudecode

Diff this repo’s formats

One 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?

The other instruction files in this repository
RepositoryFormatStackCoversScoreChanged
Yeachan-Heo/oh-my-claudecode.github/CLAUDE.md · 38kCLAUDE.mdtypescriptvitest+8setupbuildstylegit+279/1003 days ago
Yeachan-Heo/oh-my-claudecodeAGENTS.md · 38kAGENTS.mdtypescriptvitest+8setuplint-formatstyletypes+445/1003 days ago
Yeachan-Heo/oh-my-claudecodesrc/AGENTS.md · 38kAGENTS.mdtypescriptvitest+8buildteststylearch+277/1003 days ago
Yeachan-Heo/oh-my-claudecodesrc/agents/AGENTS.md · 38kAGENTS.mdtypescriptvitest+8teststylearchdependencies+166/1003 days ago
Yeachan-Heo/oh-my-claudecodesrc/features/AGENTS.md · 38kAGENTS.mdtypescriptvitest+8teststylearchdependencies74/1003 days ago
Yeachan-Heo/oh-my-claudecodesrc/hooks/AGENTS.md · 38kAGENTS.mdtypescriptvitest+8setupteststylearch+274/1003 days ago
Yeachan-Heo/oh-my-claudecodesrc/tools/AGENTS.md · 38kAGENTS.mdtypescriptvitest+8setupteststylearch+186/1003 days ago
Yeachan-Heo/oh-my-claudecodesrc/tools/diagnostics/AGENTS.md · 38kAGENTS.mdtypescriptvitest+8teststylearchtypes+277/1003 days ago
Yeachan-Heo/oh-my-claudecodesrc/tools/lsp/AGENTS.md · 38kAGENTS.mdtypescriptvitest+8setupteststylearch+274/1003 days ago
Yeachan-Heo/oh-my-claudecodeCLAUDE.md · 38kCLAUDE.mdtypescriptvitest+8setupbuildstylegit+165/1003 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.

Same format, overlapping stack, ranked by quality
RepositoryFormatStackCoversScoreChanged
mui/material-uiAGENTS.md · 99kAGENTS.mdtypescriptjavascript+13setupbuildtestlint-format+9100/1003 days ago
TryGhost/Ghoste2e/AGENTS.md · 55kAGENTS.mdtypescriptjavascript+12setupteststylearch+2100/1003 days ago
SkeneTechnologies/skene-cookbookAGENTS.md · 51AGENTS.mdpythoneslint+4setupbuildtestlint-format+7100/1002 days ago
duckduckgo/content-scope-scriptsspecial-pages/AGENTS.md · 70AGENTS.mdtypescriptjavascript+5buildteststylearch+3100/1003 days ago
n8n-io/n8npackages/@n8n/agents/AGENTS.md · 199kAGENTS.mdtypescriptlangchain+16buildteststylearch+3100/1003 days ago
aaif-goose/gooseAGENTS.md · 52kAGENTS.mdrusttypescript+2setupbuildtestlint-format+6100/1003 days ago
trick77/agents-md-syncAGENTS.md · 2AGENTS.mdtypescriptnode+4setupbuildteststyle+5100/1003 days ago
code-yeongyu/oh-my-openagentpackages/web/AGENTS.md · 67kAGENTS.mdtypescriptbun+10setupbuildtestlint-format+6100/1002 days ago
RuleStack

Built by

Kynth Studio

Directory

Configs
Stacks
Compare formats
Diff two configs
Best AGENTS.md examples

Formats

AGENTS.md
CLAUDE.md
Cursor rules
Copilot instructions

Reference

Read API
Corpus health
Privacy Policy
Terms

RuleStack

RuleStack

Built by

Kynth Studio

Directory

Configs
Stacks
Compare formats
Diff two configs
Best AGENTS.md examples

Formats

AGENTS.md
CLAUDE.md
Cursor rules
Copilot instructions

Reference

Read API
Corpus health
Privacy Policy
Terms

RuleStack

RuleStack

Built by

Kynth Studio

Directory

Configs
Stacks
Compare formats
Diff two configs
Best AGENTS.md examples

Formats

AGENTS.md
CLAUDE.md
Cursor rules
Copilot instructions

Reference

Read API
Corpus health
Privacy Policy
Terms

RuleStack