Skip to content

Commit 219a3e8

Browse files
gracefullightgithub-actions[bot]
authored andcommitted
chore(deps): update oh-my-agent skills
1 parent e2242e3 commit 219a3e8

File tree

331 files changed

+14550
-15334
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

331 files changed

+14550
-15334
lines changed

.agents/agents/backend-engineer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ You are a Backend Specialist. Detect the project's language and framework from p
1010
## Execution Protocol
1111

1212
Follow the vendor-specific execution protocol:
13-
- Write results to `.agents/results/result-backend.md`
13+
- Write results to project root `.agents/results/result-backend.md` (orchestrated: `result-backend-{sessionId}.md`)
1414
- Include: status, summary, files changed, acceptance criteria checklist
1515

1616
## Charter Preflight (MANDATORY)

.agents/agents/db-engineer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ You are a Database Specialist.
1010
## Execution Protocol
1111

1212
Follow the vendor-specific execution protocol:
13-
- Write results to `.agents/results/result-db.md`
13+
- Write results to project root `.agents/results/result-db.md` (orchestrated: `result-db-{sessionId}.md`)
1414
- Include: status, summary, files changed, acceptance criteria checklist
1515

1616
## Charter Preflight (MANDATORY)

.agents/agents/debug-investigator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ You are a Debug Specialist.
1010
## Execution Protocol
1111

1212
Follow the vendor-specific execution protocol:
13-
- Write results to `.agents/results/result-debug.md`
13+
- Write results to project root `.agents/results/result-debug.md` (orchestrated: `result-debug-{sessionId}.md`)
1414
- Include: status, summary, files changed, acceptance criteria checklist
1515

1616
## Charter Preflight (MANDATORY)

.agents/agents/frontend-engineer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ You are a Frontend Specialist.
1010
## Execution Protocol
1111

1212
Follow the vendor-specific execution protocol:
13-
- Write results to `.agents/results/result-frontend.md`
13+
- Write results to project root `.agents/results/result-frontend.md` (orchestrated: `result-frontend-{sessionId}.md`)
1414
- Include: status, summary, files changed, acceptance criteria checklist
1515

1616
## Charter Preflight (MANDATORY)

.agents/agents/mobile-engineer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ You are a Mobile Specialist.
1010
## Execution Protocol
1111

1212
Follow the vendor-specific execution protocol:
13-
- Write results to `.agents/results/result-mobile.md`
13+
- Write results to project root `.agents/results/result-mobile.md` (orchestrated: `result-mobile-{sessionId}.md`)
1414
- Include: status, summary, files changed, acceptance criteria checklist
1515

1616
## Charter Preflight (MANDATORY)

.agents/agents/pm-planner.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ You are a Product Manager.
1010
## Execution Protocol
1111

1212
Follow the vendor-specific execution protocol:
13-
- Write results to `.agents/results/result-pm.md`
13+
- Write results to project root `.agents/results/result-pm.md` (orchestrated: `result-pm-{sessionId}.md`)
1414
- Include: status, summary, files changed, acceptance criteria checklist
1515

1616
## Charter Preflight (MANDATORY)
@@ -36,7 +36,7 @@ CHARTER_CHECK:
3636
2. **Analyze**: Technical feasibility using codebase analysis
3737
3. **Contracts**: Define API contracts (save to `.agents/skills/_shared/api-contracts/`)
3838
4. **Decompose**: Break into tasks with agent, title, acceptance criteria, priority (P0-P3), dependencies
39-
5. **Output**: Save to `.agents/plan.json`
39+
5. **Output**: Save to `.agents/results/plan-{sessionId}.json`
4040

4141
## Task Format
4242

.agents/agents/qa-reviewer.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ You are a QA Specialist. Review code changes for quality and security.
1010
## Execution Protocol
1111

1212
Follow the vendor-specific execution protocol:
13-
- Write results to `.agents/results/result-qa.md`
13+
- Write results to project root `.agents/results/result-qa.md` (orchestrated: `result-qa-{sessionId}.md`)
1414
- Include: status, summary, files changed, acceptance criteria checklist
1515

1616
## Charter Preflight (MANDATORY)
@@ -38,7 +38,7 @@ CHARTER_CHECK:
3838
Report findings with severity levels:
3939

4040
```
41-
## Review Result: {PASS | FAIL}
41+
## Review Result: {PASS | WARNING | FAIL}
4242
4343
### CRITICAL
4444
- `file:line` — description — remediation code
@@ -60,7 +60,8 @@ Report findings with severity levels:
6060
3. Run automated tools first (`npm audit`, lint, type-check)
6161
4. No false positives — verify each finding
6262
5. Provide remediation code, not just descriptions
63-
6. PASS verdict: zero CRITICAL and zero HIGH issues
64-
7. FAIL verdict: any CRITICAL or HIGH issue found
65-
8. Never modify source code — review only
66-
9. Never modify `.agents/` files
63+
6. PASS verdict: zero CRITICAL, HIGH, and MEDIUM issues
64+
7. WARNING verdict: zero CRITICAL and HIGH, but MEDIUM issues exist
65+
8. FAIL verdict: any CRITICAL or HIGH issue found
66+
9. Never modify source code — review only
67+
10. Never modify `.agents/` files
Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
{
2+
"$schema": "http://json-schema.org/draft-07/schema#",
3+
"title": "Agent Variant Configuration",
4+
"description": "Configuration for vendor-specific agent generation from core prompts",
5+
"type": "object",
6+
"required": ["vendor", "destDir", "modelDefault", "toolsDefault", "protocolPath", "agents"],
7+
"properties": {
8+
"$schema": {
9+
"type": "string"
10+
},
11+
"vendor": {
12+
"type": "string",
13+
"description": "The target CLI vendor name (e.g., gemini, claude)"
14+
},
15+
"destDir": {
16+
"type": "string",
17+
"description": "The relative path to the directory where generated agent files will be saved"
18+
},
19+
"modelDefault": {
20+
"type": "string",
21+
"description": "The default AI model to use for this vendor's agents"
22+
},
23+
"maxTurnsDefault": {
24+
"type": "integer",
25+
"description": "The default maximum number of turns allowed for agents"
26+
},
27+
"toolsDefault": {
28+
"oneOf": [
29+
{
30+
"type": "array",
31+
"items": { "type": "string" }
32+
},
33+
{
34+
"type": "string"
35+
}
36+
],
37+
"description": "The default set of tools (abstract or vendor-specific) for agents"
38+
},
39+
"protocolPath": {
40+
"type": "string",
41+
"description": "The path to the vendor-specific execution protocol markdown file"
42+
},
43+
"agents": {
44+
"type": "object",
45+
"description": "Map of agent-id to vendor-specific overrides",
46+
"additionalProperties": {
47+
"type": "object",
48+
"properties": {
49+
"tools": {
50+
"oneOf": [
51+
{
52+
"type": "array",
53+
"items": { "type": "string" }
54+
},
55+
{
56+
"type": "string"
57+
}
58+
]
59+
},
60+
"model": {
61+
"type": "string"
62+
},
63+
"maxTurns": {
64+
"type": "integer"
65+
},
66+
"effort": {
67+
"type": "string",
68+
"enum": ["low", "medium", "high"]
69+
},
70+
"extra": {
71+
"type": "object",
72+
"description": "Arbitrary vendor-specific frontmatter fields (e.g., mcpServers)"
73+
}
74+
}
75+
}
76+
}
77+
}
78+
}
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"$schema": "./agent-variant.schema.json",
3+
"vendor": "claude",
4+
"destDir": ".claude/agents",
5+
"modelDefault": "sonnet",
6+
"maxTurnsDefault": 20,
7+
"toolsDefault": "Read, Write, Edit, Bash, Grep, Glob",
8+
"protocolPath": ".agents/skills/_shared/runtime/execution-protocols/claude.md",
9+
"agents": {
10+
"backend-engineer": {},
11+
"frontend-engineer": {},
12+
"db-engineer": {
13+
"maxTurns": 15
14+
},
15+
"debug-investigator": {
16+
"maxTurns": 15
17+
},
18+
"mobile-engineer": {},
19+
"pm-planner": {
20+
"tools": "Read, Write, Grep, Glob, Bash",
21+
"maxTurns": 10
22+
},
23+
"qa-reviewer": {
24+
"tools": "Read, Grep, Glob, Bash",
25+
"maxTurns": 15,
26+
"effort": "low"
27+
}
28+
}
29+
}
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"$schema": "./agent-variant.schema.json",
3+
"vendor": "cursor",
4+
"destDir": ".cursor/agents",
5+
"modelDefault": "inherit",
6+
"toolsDefault": [],
7+
"protocolPath": ".agents/skills/_shared/core/quality-principles.md",
8+
"agents": {
9+
"backend-engineer": {
10+
"extra": {
11+
"is_background": true
12+
}
13+
},
14+
"frontend-engineer": {
15+
"extra": {
16+
"is_background": true
17+
}
18+
},
19+
"db-engineer": {
20+
"extra": {
21+
"readonly": true
22+
}
23+
},
24+
"debug-investigator": {},
25+
"mobile-engineer": {
26+
"extra": {
27+
"is_background": true
28+
}
29+
},
30+
"pm-planner": {
31+
"extra": {
32+
"readonly": true
33+
}
34+
},
35+
"qa-reviewer": {
36+
"extra": {
37+
"readonly": true,
38+
"is_background": true
39+
}
40+
}
41+
}
42+
}

0 commit comments

Comments
 (0)