@orderful/droid 0.7.0 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +37 -0
- package/README.md +80 -89
- package/assets/droid+claude.png +0 -0
- package/dist/commands/setup.d.ts +1 -0
- package/dist/commands/setup.d.ts.map +1 -1
- package/dist/commands/setup.js +77 -9
- package/dist/commands/setup.js.map +1 -1
- package/dist/commands/tui.d.ts.map +1 -1
- package/dist/commands/tui.js +111 -70
- package/dist/commands/tui.js.map +1 -1
- package/dist/lib/agents.d.ts +19 -4
- package/dist/lib/agents.d.ts.map +1 -1
- package/dist/lib/agents.js +121 -42
- package/dist/lib/agents.js.map +1 -1
- package/dist/lib/skills.d.ts.map +1 -1
- package/dist/lib/skills.js +55 -0
- package/dist/lib/skills.js.map +1 -1
- package/dist/lib/types.d.ts +1 -0
- package/dist/lib/types.d.ts.map +1 -1
- package/dist/skills/brain/SKILL.md +11 -9
- package/dist/skills/brain/SKILL.yaml +1 -1
- package/dist/skills/brain/commands/brain.md +9 -4
- package/dist/skills/brain/references/workflows.md +14 -4
- package/dist/skills/code-review/SKILL.md +57 -0
- package/dist/skills/code-review/SKILL.yaml +22 -0
- package/dist/skills/code-review/agents/edi-standards-reviewer/AGENT.md +39 -0
- package/dist/skills/code-review/agents/edi-standards-reviewer/AGENT.yaml +14 -0
- package/dist/skills/code-review/agents/error-handling-reviewer/AGENT.md +51 -0
- package/dist/skills/code-review/agents/error-handling-reviewer/AGENT.yaml +14 -0
- package/dist/skills/code-review/agents/test-coverage-analyzer/AGENT.md +53 -0
- package/dist/skills/code-review/agents/test-coverage-analyzer/AGENT.yaml +14 -0
- package/dist/skills/code-review/agents/type-reviewer/AGENT.md +50 -0
- package/dist/skills/code-review/agents/type-reviewer/AGENT.yaml +13 -0
- package/dist/skills/code-review/commands/code-review.md +91 -0
- package/dist/skills/comments/SKILL.md +20 -5
- package/dist/skills/comments/SKILL.yaml +1 -1
- package/dist/skills/comments/commands/comments.md +1 -1
- package/dist/skills/project/SKILL.md +9 -7
- package/dist/skills/project/SKILL.yaml +1 -1
- package/dist/skills/project/commands/project.md +9 -4
- package/dist/skills/project/references/creating.md +9 -4
- package/dist/skills/project/references/loading.md +11 -5
- package/package.json +1 -1
- package/src/commands/setup.test.ts +276 -0
- package/src/commands/setup.ts +80 -10
- package/src/commands/tui.tsx +149 -82
- package/src/lib/agents.ts +134 -44
- package/src/lib/skills.ts +60 -0
- package/src/lib/types.ts +1 -0
- package/src/skills/brain/SKILL.md +11 -9
- package/src/skills/brain/SKILL.yaml +1 -1
- package/src/skills/brain/commands/brain.md +9 -4
- package/src/skills/brain/references/workflows.md +14 -4
- package/src/skills/code-review/SKILL.md +57 -0
- package/src/skills/code-review/SKILL.yaml +22 -0
- package/src/skills/code-review/agents/edi-standards-reviewer/AGENT.md +39 -0
- package/src/skills/code-review/agents/edi-standards-reviewer/AGENT.yaml +14 -0
- package/src/skills/code-review/agents/error-handling-reviewer/AGENT.md +51 -0
- package/src/skills/code-review/agents/error-handling-reviewer/AGENT.yaml +14 -0
- package/src/skills/code-review/agents/test-coverage-analyzer/AGENT.md +53 -0
- package/src/skills/code-review/agents/test-coverage-analyzer/AGENT.yaml +14 -0
- package/src/skills/code-review/agents/type-reviewer/AGENT.md +50 -0
- package/src/skills/code-review/agents/type-reviewer/AGENT.yaml +13 -0
- package/src/skills/code-review/commands/code-review.md +91 -0
- package/src/skills/comments/SKILL.md +20 -5
- package/src/skills/comments/SKILL.yaml +1 -1
- package/src/skills/comments/commands/comments.md +1 -1
- package/src/skills/project/SKILL.md +9 -7
- package/src/skills/project/SKILL.yaml +1 -1
- package/src/skills/project/commands/project.md +9 -4
- package/src/skills/project/references/creating.md +9 -4
- package/src/skills/project/references/loading.md +11 -5
package/src/lib/skills.ts
CHANGED
|
@@ -5,6 +5,7 @@ import { fileURLToPath } from 'url';
|
|
|
5
5
|
import YAML from 'yaml';
|
|
6
6
|
import { loadConfig, saveConfig } from './config.js';
|
|
7
7
|
import { AITool, SkillStatus, type SkillManifest, type InstalledSkill } from './types.js';
|
|
8
|
+
import { getInstalledAgentsDir, installAgentFromPath, uninstallAgent, isAgentInstalled } from './agents.js';
|
|
8
9
|
|
|
9
10
|
// Marker comments for CLAUDE.md skill registration
|
|
10
11
|
const DROID_SKILLS_START = '<!-- droid-skills-start -->';
|
|
@@ -336,6 +337,22 @@ export function installSkill(skillName: string): { success: boolean; message: st
|
|
|
336
337
|
}
|
|
337
338
|
}
|
|
338
339
|
}
|
|
340
|
+
|
|
341
|
+
// Check bundled agent collisions
|
|
342
|
+
const agentsSource = join(bundledSkillDir, 'agents');
|
|
343
|
+
if (existsSync(agentsSource)) {
|
|
344
|
+
const agentDirs = readdirSync(agentsSource, { withFileTypes: true })
|
|
345
|
+
.filter(dirent => dirent.isDirectory())
|
|
346
|
+
.map(dirent => dirent.name);
|
|
347
|
+
for (const agentName of agentDirs) {
|
|
348
|
+
if (isAgentInstalled(agentName)) {
|
|
349
|
+
return {
|
|
350
|
+
success: false,
|
|
351
|
+
message: `Cannot install: agent '${agentName}' already exists at ${getInstalledAgentsDir()}`,
|
|
352
|
+
};
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
}
|
|
339
356
|
}
|
|
340
357
|
|
|
341
358
|
// Ensure skills directory exists
|
|
@@ -354,6 +371,22 @@ export function installSkill(skillName: string): { success: boolean; message: st
|
|
|
354
371
|
writeFileSync(skillMdTarget, content);
|
|
355
372
|
}
|
|
356
373
|
|
|
374
|
+
// Copy references if present (skill documentation files)
|
|
375
|
+
const referencesSource = join(bundledSkillDir, 'references');
|
|
376
|
+
if (existsSync(referencesSource)) {
|
|
377
|
+
const targetReferencesDir = join(targetSkillDir, 'references');
|
|
378
|
+
if (!existsSync(targetReferencesDir)) {
|
|
379
|
+
mkdirSync(targetReferencesDir, { recursive: true });
|
|
380
|
+
}
|
|
381
|
+
const referenceFiles = readdirSync(referencesSource).filter(f => f.endsWith('.md'));
|
|
382
|
+
for (const file of referenceFiles) {
|
|
383
|
+
const sourcePath = join(referencesSource, file);
|
|
384
|
+
const targetPath = join(targetReferencesDir, file);
|
|
385
|
+
const content = readFileSync(sourcePath, 'utf-8');
|
|
386
|
+
writeFileSync(targetPath, content);
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
|
|
357
390
|
// Copy commands if present
|
|
358
391
|
const commandsSource = join(bundledSkillDir, 'commands');
|
|
359
392
|
if (existsSync(commandsSource)) {
|
|
@@ -369,10 +402,29 @@ export function installSkill(skillName: string): { success: boolean; message: st
|
|
|
369
402
|
}
|
|
370
403
|
}
|
|
371
404
|
|
|
405
|
+
// Install bundled agents if present
|
|
406
|
+
const installedAgents: string[] = [];
|
|
407
|
+
const agentsSource = join(bundledSkillDir, 'agents');
|
|
408
|
+
if (existsSync(agentsSource)) {
|
|
409
|
+
const agentDirs = readdirSync(agentsSource, { withFileTypes: true })
|
|
410
|
+
.filter(dirent => dirent.isDirectory())
|
|
411
|
+
.map(dirent => dirent.name);
|
|
412
|
+
|
|
413
|
+
for (const agentName of agentDirs) {
|
|
414
|
+
// Use the skill's bundled agent path instead of global agents
|
|
415
|
+
const agentDir = join(agentsSource, agentName);
|
|
416
|
+
const result = installAgentFromPath(agentDir, agentName);
|
|
417
|
+
if (result.success) {
|
|
418
|
+
installedAgents.push(agentName);
|
|
419
|
+
}
|
|
420
|
+
}
|
|
421
|
+
}
|
|
422
|
+
|
|
372
423
|
// Update config
|
|
373
424
|
config.skills[skillName] = {
|
|
374
425
|
version: manifest.version,
|
|
375
426
|
installed_at: new Date().toISOString(),
|
|
427
|
+
...(installedAgents.length > 0 && { bundled_agents: installedAgents }),
|
|
376
428
|
};
|
|
377
429
|
saveConfig(config);
|
|
378
430
|
|
|
@@ -414,6 +466,14 @@ export function uninstallSkill(skillName: string): { success: boolean; message:
|
|
|
414
466
|
}
|
|
415
467
|
}
|
|
416
468
|
|
|
469
|
+
// Remove bundled agents if they were installed with this skill
|
|
470
|
+
const installedSkillInfo = config.skills[skillName];
|
|
471
|
+
if (installedSkillInfo?.bundled_agents) {
|
|
472
|
+
for (const agentName of installedSkillInfo.bundled_agents) {
|
|
473
|
+
uninstallAgent(agentName);
|
|
474
|
+
}
|
|
475
|
+
}
|
|
476
|
+
|
|
417
477
|
// Remove from config
|
|
418
478
|
delete config.skills[skillName];
|
|
419
479
|
saveConfig(config);
|
package/src/lib/types.ts
CHANGED
|
@@ -38,16 +38,16 @@ Ideas develop through iteration, not single prompts.
|
|
|
38
38
|
|
|
39
39
|
## Configuration
|
|
40
40
|
|
|
41
|
-
|
|
41
|
+
**IMPORTANT:** Before using any default paths, ALWAYS read `~/.droid/skills/brain/overrides.yaml` first. If `brain_dir` is configured there, use that path. Only fall back to defaults if the file doesn't exist or lacks a `brain_dir` setting.
|
|
42
42
|
|
|
43
43
|
| Setting | Default | Description |
|
|
44
44
|
|---------|---------|-------------|
|
|
45
|
-
| `brain_dir` |
|
|
45
|
+
| `brain_dir` | (see below) | Where docs are stored |
|
|
46
46
|
| `inbox_folder` | (empty) | Optional subfolder for new docs (omit for flat structure) |
|
|
47
47
|
|
|
48
|
-
Default `brain_dir` by AI tool:
|
|
48
|
+
Default `brain_dir` by AI tool (only if not configured):
|
|
49
49
|
- **claude-code**: `~/.claude/brain`
|
|
50
|
-
- **opencode**: `~/.opencode/brain`
|
|
50
|
+
- **opencode**: `~/.config/opencode/brain`
|
|
51
51
|
|
|
52
52
|
## Core Concepts
|
|
53
53
|
|
|
@@ -68,20 +68,22 @@ Default `brain_dir` by AI tool:
|
|
|
68
68
|
| Command | Action |
|
|
69
69
|
|---------|--------|
|
|
70
70
|
| `/brain` | List recent docs or create new |
|
|
71
|
-
| `/brain {topic}` |
|
|
72
|
-
| `/brain plan {topic}` | Create planning doc
|
|
73
|
-
| `/brain research {topic}` | Create research doc
|
|
74
|
-
| `/brain review {topic}` | Create review doc
|
|
71
|
+
| `/brain {topic}` | **Search** for existing doc (fuzzy match) → becomes active |
|
|
72
|
+
| `/brain plan {topic}` | Create planning doc (requires `plan` keyword) |
|
|
73
|
+
| `/brain research {topic}` | Create research doc (requires `research` keyword) |
|
|
74
|
+
| `/brain review {topic}` | Create review doc (requires `review` keyword) |
|
|
75
75
|
| `/brain note {text}` | Quick capture (standalone, doesn't become active) |
|
|
76
76
|
| `/brain add {text}` | Append to active doc |
|
|
77
77
|
| `/brain check` | Address @droid comments in active doc |
|
|
78
78
|
| `/brain done` | Finalize active doc, update status |
|
|
79
79
|
|
|
80
|
+
**IMPORTANT:** The default action for `/brain {topic}` is to **SEARCH** for existing docs, NOT create. Only use `/brain plan {topic}` or `/brain research {topic}` when the user explicitly wants to create a new doc.
|
|
81
|
+
|
|
80
82
|
## Opening a Doc
|
|
81
83
|
|
|
82
84
|
**Trigger:** `/brain {topic}` or user asks to open a brain doc
|
|
83
85
|
|
|
84
|
-
**TLDR:** Fuzzy-match topic against existing docs, read content, set as active.
|
|
86
|
+
**TLDR:** Search for and open an existing doc. Fuzzy-match topic against existing docs, read content, set as active.
|
|
85
87
|
|
|
86
88
|
Full procedure: `references/workflows.md` § Opening
|
|
87
89
|
|
|
@@ -4,7 +4,7 @@ description: >-
|
|
|
4
4
|
"let's use our brain", "let's think through this", or "plan this out" to capture
|
|
5
5
|
AI output into a persistent doc. Create docs with /brain plan, /brain research,
|
|
6
6
|
or /brain review. Use @mentions for async discussion. Docs persist across sessions.
|
|
7
|
-
version: 0.1.
|
|
7
|
+
version: 0.1.1
|
|
8
8
|
status: beta
|
|
9
9
|
dependencies: []
|
|
10
10
|
provides_output: false
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: Collaborative scratch pad for planning and research
|
|
3
|
-
argument-hint: [plan|research|review|note|add|check|done]
|
|
3
|
+
argument-hint: "[{topic} | plan|research|review {topic} | note|add {text} | check|done]"
|
|
4
4
|
allowed-tools: Read, Write, Edit, Glob, Grep, Bash(mkdir:*), Bash(ls:*)
|
|
5
5
|
---
|
|
6
6
|
|
|
@@ -12,12 +12,16 @@ Entry point for brain doc management. See the **brain skill** for full behavior.
|
|
|
12
12
|
|
|
13
13
|
$ARGUMENTS
|
|
14
14
|
|
|
15
|
+
## Default Behavior
|
|
16
|
+
|
|
17
|
+
**IMPORTANT:** When given just a topic (e.g., `/brain auth-refactor`), the default action is to **SEARCH** for existing docs, NOT create. Only create docs with explicit `/brain plan {topic}` or `/brain research {topic}`.
|
|
18
|
+
|
|
15
19
|
## Usage
|
|
16
20
|
|
|
17
21
|
```
|
|
18
22
|
/brain # List recent docs or create new
|
|
19
|
-
/brain {topic} # Open existing (fuzzy match) → active
|
|
20
|
-
/brain plan {topic} #
|
|
23
|
+
/brain {topic} # SEARCH: Open existing doc (fuzzy match) → active
|
|
24
|
+
/brain plan {topic} # CREATE: New planning doc → active
|
|
21
25
|
/brain research {topic} # Create research doc → active
|
|
22
26
|
/brain review {topic} # Create review doc → active
|
|
23
27
|
/brain note {text} # Quick capture (fire-and-forget)
|
|
@@ -28,7 +32,8 @@ $ARGUMENTS
|
|
|
28
32
|
|
|
29
33
|
## Configuration
|
|
30
34
|
|
|
31
|
-
|
|
35
|
+
**ALWAYS read `~/.droid/skills/brain/overrides.yaml` first.** Use configured values if present, only fall back to defaults if missing.
|
|
36
|
+
|
|
32
37
|
- `brain_dir` - Where docs live (default varies by AI tool)
|
|
33
38
|
- `inbox_folder` - Subfolder for new docs (empty = flat)
|
|
34
39
|
|
|
@@ -8,7 +8,9 @@ Detailed procedures for each brain operation.
|
|
|
8
8
|
|
|
9
9
|
**Steps:**
|
|
10
10
|
|
|
11
|
-
1. **
|
|
11
|
+
1. **Read config first**
|
|
12
|
+
- Read `~/.droid/skills/brain/overrides.yaml`
|
|
13
|
+
- Use `brain_dir` if configured, otherwise use default for current AI tool
|
|
12
14
|
|
|
13
15
|
2. **Search for matches**
|
|
14
16
|
```
|
|
@@ -35,7 +37,10 @@ Detailed procedures for each brain operation.
|
|
|
35
37
|
|
|
36
38
|
**Steps:**
|
|
37
39
|
|
|
38
|
-
1. **
|
|
40
|
+
1. **Read config first**
|
|
41
|
+
- Read `~/.droid/skills/brain/overrides.yaml`
|
|
42
|
+
- Use `brain_dir` if configured, otherwise use default for current AI tool
|
|
43
|
+
- Use `inbox_folder` if configured
|
|
39
44
|
|
|
40
45
|
2. **Generate filename** using naming conventions (see `naming.md`):
|
|
41
46
|
- Format: `{type}-{topic-slug}.md`
|
|
@@ -66,7 +71,10 @@ Detailed procedures for each brain operation.
|
|
|
66
71
|
|
|
67
72
|
**Steps:**
|
|
68
73
|
|
|
69
|
-
1. **
|
|
74
|
+
1. **Read config first**
|
|
75
|
+
- Read `~/.droid/skills/brain/overrides.yaml`
|
|
76
|
+
- Use `brain_dir` if configured, otherwise use default for current AI tool
|
|
77
|
+
- Use `inbox_folder` if configured
|
|
70
78
|
|
|
71
79
|
2. **Generate filename:**
|
|
72
80
|
- Format: `note-{date}-{slug}.md` where date is `YYYYMMDD`
|
|
@@ -169,7 +177,9 @@ Detailed procedures for each brain operation.
|
|
|
169
177
|
|
|
170
178
|
**Steps:**
|
|
171
179
|
|
|
172
|
-
1. **
|
|
180
|
+
1. **Read config first**
|
|
181
|
+
- Read `~/.droid/skills/brain/overrides.yaml`
|
|
182
|
+
- Use `brain_dir` if configured, otherwise use default for current AI tool
|
|
173
183
|
|
|
174
184
|
2. **Find recent docs:**
|
|
175
185
|
```
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: code-review
|
|
3
|
+
description: >-
|
|
4
|
+
Comprehensive code review using specialized agents. Reviews PRs, staged changes,
|
|
5
|
+
branches, or specific files. Includes EDI/partnership analysis, test coverage,
|
|
6
|
+
error handling, and type safety checks with confidence scoring.
|
|
7
|
+
globs:
|
|
8
|
+
- "**/*"
|
|
9
|
+
alwaysApply: false
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# Code Review Skill
|
|
13
|
+
|
|
14
|
+
Run comprehensive code reviews using specialized agents, each focused on a specific concern.
|
|
15
|
+
|
|
16
|
+
## How It Works
|
|
17
|
+
|
|
18
|
+
The `/code-review` command orchestrates multiple specialized agents in parallel:
|
|
19
|
+
|
|
20
|
+
1. **edi-standards-reviewer** - EDI patterns, partnership handling, billing concerns
|
|
21
|
+
2. **test-coverage-analyzer** - Test completeness and edge cases
|
|
22
|
+
3. **error-handling-reviewer** - Silent failures, missing error handling
|
|
23
|
+
4. **type-reviewer** - TypeScript type design, interface contracts
|
|
24
|
+
|
|
25
|
+
Each agent returns issues with confidence scores (0-100). Issues below 80% confidence are filtered out to reduce noise.
|
|
26
|
+
|
|
27
|
+
## Usage
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
/code-review #123 # Review PR #123
|
|
31
|
+
/code-review staged # Review staged changes
|
|
32
|
+
/code-review branch # Review current branch vs main
|
|
33
|
+
/code-review path/to/file # Review specific file
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Output Format
|
|
37
|
+
|
|
38
|
+
Reviews are presented in prioritized categories:
|
|
39
|
+
|
|
40
|
+
🔴 **Critical** - Security, data loss, billing errors
|
|
41
|
+
🟠 **Important** - Bugs, missing tests, type issues
|
|
42
|
+
🟡 **Suggestions** - Style, readability improvements
|
|
43
|
+
|
|
44
|
+
## Post-Review Actions
|
|
45
|
+
|
|
46
|
+
After presenting findings, you can:
|
|
47
|
+
- Post the review as a PR comment
|
|
48
|
+
- Get suggested fixes for specific issues
|
|
49
|
+
- Check out the branch and fix critical issues
|
|
50
|
+
|
|
51
|
+
## Domain-Aware Reviews
|
|
52
|
+
|
|
53
|
+
The EDI Standards Reviewer discovers project conventions by reading:
|
|
54
|
+
- `.claude/CLAUDE.md` or `CLAUDE.md` for team conventions
|
|
55
|
+
- `AGENTS.md` or `docs/` for architecture guidance
|
|
56
|
+
|
|
57
|
+
This lets it apply your project's specific patterns rather than generic rules.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
name: code-review
|
|
2
|
+
description: >-
|
|
3
|
+
Comprehensive code review using specialized agents. Reviews PRs, staged changes,
|
|
4
|
+
branches, or specific files. Includes EDI/partnership analysis, test coverage,
|
|
5
|
+
error handling, and type safety checks with confidence scoring.
|
|
6
|
+
version: 0.1.0
|
|
7
|
+
status: alpha
|
|
8
|
+
dependencies: []
|
|
9
|
+
provides_output: false
|
|
10
|
+
examples:
|
|
11
|
+
- title: "Review a PR"
|
|
12
|
+
code: |
|
|
13
|
+
/code-review #123
|
|
14
|
+
- title: "Review staged changes"
|
|
15
|
+
code: |
|
|
16
|
+
/code-review staged
|
|
17
|
+
- title: "Review current branch vs main"
|
|
18
|
+
code: |
|
|
19
|
+
/code-review branch
|
|
20
|
+
- title: "Review a specific file"
|
|
21
|
+
code: |
|
|
22
|
+
/code-review src/billing/BillingService.ts
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
You are a domain-aware code reviewer that understands EDI patterns and integration best practices.
|
|
2
|
+
|
|
3
|
+
## How to Review
|
|
4
|
+
|
|
5
|
+
1. **First, find project context:**
|
|
6
|
+
- Look for `.claude/CLAUDE.md` or `CLAUDE.md` for team conventions
|
|
7
|
+
- Look for `AGENTS.md` or `docs/` for architecture guidance
|
|
8
|
+
- These files define what "correct" looks like for this codebase
|
|
9
|
+
|
|
10
|
+
2. **Review with that context:**
|
|
11
|
+
- Apply the project's stated conventions and patterns
|
|
12
|
+
- Flag deviations from documented best practices
|
|
13
|
+
- Consider EDI-specific concerns (partnerships, billing, transactions)
|
|
14
|
+
|
|
15
|
+
## Output Format
|
|
16
|
+
|
|
17
|
+
Return JSON:
|
|
18
|
+
|
|
19
|
+
```json
|
|
20
|
+
{
|
|
21
|
+
"issues": [
|
|
22
|
+
{
|
|
23
|
+
"file": "path/to/file.ts",
|
|
24
|
+
"line": 42,
|
|
25
|
+
"severity": "critical|important|suggestion",
|
|
26
|
+
"confidence": 85,
|
|
27
|
+
"issue": "Brief description",
|
|
28
|
+
"suggestion": "How to fix"
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"summary": "One-line summary"
|
|
32
|
+
}
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Severity Guidelines
|
|
36
|
+
|
|
37
|
+
- **critical**: Security, data loss, billing errors
|
|
38
|
+
- **important**: Bugs, missing validations, pattern violations
|
|
39
|
+
- **suggestion**: Style, documentation, minor improvements
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
name: edi-standards-reviewer
|
|
2
|
+
description: >-
|
|
3
|
+
Review code for EDI integration patterns, partnership handling, and billing
|
|
4
|
+
system concerns. Use PROACTIVELY when changes touch trading partners,
|
|
5
|
+
transactions, or billing.
|
|
6
|
+
version: 0.1.0
|
|
7
|
+
status: alpha
|
|
8
|
+
mode: subagent
|
|
9
|
+
model: sonnet
|
|
10
|
+
color: blue
|
|
11
|
+
tools:
|
|
12
|
+
- Read
|
|
13
|
+
- Grep
|
|
14
|
+
- Glob
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
You are a reliability engineer hunting for silent failures.
|
|
2
|
+
|
|
3
|
+
## Silent Failure Patterns
|
|
4
|
+
|
|
5
|
+
1. Empty catch blocks: `catch (e) {}`
|
|
6
|
+
2. Catch-and-log-only: `catch (e) { console.log(e) }` without rethrowing
|
|
7
|
+
3. Promises without `.catch()` or try/catch
|
|
8
|
+
4. Optional chaining hiding real errors: `data?.value` when data should exist
|
|
9
|
+
5. Missing validation before operations
|
|
10
|
+
6. Ignored return values from functions that can fail
|
|
11
|
+
|
|
12
|
+
## Review Process
|
|
13
|
+
|
|
14
|
+
1. Grep for `catch` blocks - check they handle/rethrow appropriately
|
|
15
|
+
2. Find async functions - verify error propagation
|
|
16
|
+
3. Look for external calls - network, DB, APIs need error handling
|
|
17
|
+
4. Check critical paths - billing, transactions, partnerships
|
|
18
|
+
|
|
19
|
+
## Orderful-Specific
|
|
20
|
+
|
|
21
|
+
- BillingEvent creation failures must be surfaced
|
|
22
|
+
- Partnership API calls need retry logic
|
|
23
|
+
- Transaction processing errors must not be swallowed
|
|
24
|
+
- Chargebee integration errors need proper handling
|
|
25
|
+
|
|
26
|
+
## Output Format
|
|
27
|
+
|
|
28
|
+
Return JSON:
|
|
29
|
+
|
|
30
|
+
```json
|
|
31
|
+
{
|
|
32
|
+
"issues": [
|
|
33
|
+
{
|
|
34
|
+
"file": "src/billing/BillingService.ts",
|
|
35
|
+
"line": 89,
|
|
36
|
+
"severity": "critical",
|
|
37
|
+
"confidence": 95,
|
|
38
|
+
"issue": "Catch block swallows BillingEvent creation error",
|
|
39
|
+
"suggestion": "Rethrow the error or implement proper error recovery"
|
|
40
|
+
}
|
|
41
|
+
],
|
|
42
|
+
"summary": "One-line summary of error handling concerns"
|
|
43
|
+
}
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## Confidence Guidelines
|
|
47
|
+
|
|
48
|
+
- Silent failures in billing/transactions: 90-100
|
|
49
|
+
- Missing error handling in external API calls: 85-95
|
|
50
|
+
- Optional chaining style issues: 60-75
|
|
51
|
+
- Logging-only catch blocks in non-critical code: 70-80
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
name: error-handling-reviewer
|
|
2
|
+
description: >-
|
|
3
|
+
Hunt for silent failures and missing error handling. Use PROACTIVELY to find
|
|
4
|
+
try/catch blocks that swallow errors, promises without rejection handling,
|
|
5
|
+
and missing validation.
|
|
6
|
+
version: 0.1.0
|
|
7
|
+
status: alpha
|
|
8
|
+
mode: subagent
|
|
9
|
+
model: sonnet
|
|
10
|
+
color: orange
|
|
11
|
+
tools:
|
|
12
|
+
- Read
|
|
13
|
+
- Grep
|
|
14
|
+
- Glob
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
You are a testing specialist focused on comprehensive coverage.
|
|
2
|
+
|
|
3
|
+
## Review Process
|
|
4
|
+
|
|
5
|
+
1. Identify changed files (production code)
|
|
6
|
+
2. Find corresponding test files
|
|
7
|
+
3. Analyze: Are key behaviors tested?
|
|
8
|
+
4. Check edge cases: nulls, errors, boundaries, async paths
|
|
9
|
+
|
|
10
|
+
## Specific Checks
|
|
11
|
+
|
|
12
|
+
- New functions should have tests
|
|
13
|
+
- Conditionals: Are all branches covered?
|
|
14
|
+
- Error paths: Are failure cases tested?
|
|
15
|
+
- Async code: Is timeout/failure handling tested?
|
|
16
|
+
- Mocking: Are external dependencies properly mocked?
|
|
17
|
+
|
|
18
|
+
## Orderful-Specific
|
|
19
|
+
|
|
20
|
+
- BillingService methods need billing event assertions
|
|
21
|
+
- Partnership changes need isolation tests
|
|
22
|
+
- Transaction Template rendering needs snapshot/output tests
|
|
23
|
+
|
|
24
|
+
## Output Format
|
|
25
|
+
|
|
26
|
+
Return JSON:
|
|
27
|
+
|
|
28
|
+
```json
|
|
29
|
+
{
|
|
30
|
+
"issues": [
|
|
31
|
+
{
|
|
32
|
+
"file": "src/billing/BillingService.ts",
|
|
33
|
+
"line": 67,
|
|
34
|
+
"severity": "important",
|
|
35
|
+
"confidence": 90,
|
|
36
|
+
"issue": "New `calculatePartnershipFee` function has no test coverage",
|
|
37
|
+
"suggestion": "Add test in BillingService.spec.ts covering standard and 'first partnership free' scenarios"
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"coverage_summary": {
|
|
41
|
+
"new_functions_tested": 3,
|
|
42
|
+
"new_functions_untested": 1,
|
|
43
|
+
"branches_uncovered": 2
|
|
44
|
+
},
|
|
45
|
+
"summary": "One-line summary of test coverage concerns"
|
|
46
|
+
}
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
## Severity Guidelines
|
|
50
|
+
|
|
51
|
+
- **critical**: No tests for billing/payment code, security-related code untested
|
|
52
|
+
- **important**: New functions untested, major branches uncovered
|
|
53
|
+
- **suggestion**: Edge cases, additional assertions
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
name: test-coverage-analyzer
|
|
2
|
+
description: >-
|
|
3
|
+
Analyze test coverage for code changes. Use PROACTIVELY when reviewing PRs
|
|
4
|
+
or before merging to ensure adequate test coverage.
|
|
5
|
+
version: 0.1.0
|
|
6
|
+
status: alpha
|
|
7
|
+
mode: subagent
|
|
8
|
+
model: sonnet
|
|
9
|
+
color: green
|
|
10
|
+
tools:
|
|
11
|
+
- Read
|
|
12
|
+
- Grep
|
|
13
|
+
- Glob
|
|
14
|
+
- Bash
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
You are a TypeScript expert focused on type safety and design.
|
|
2
|
+
|
|
3
|
+
## Review Focus
|
|
4
|
+
|
|
5
|
+
1. **No sneaky `any`**: Explicit types for function params/returns
|
|
6
|
+
2. **Domain types**: Use branded types for IDs (PartnerId, TransactionId)
|
|
7
|
+
3. **Null safety**: Proper handling of optional values
|
|
8
|
+
4. **Interface contracts**: APIs have explicit input/output types
|
|
9
|
+
5. **Enums and unions**: Use discriminated unions for state machines
|
|
10
|
+
|
|
11
|
+
## Specific Patterns at Orderful
|
|
12
|
+
|
|
13
|
+
- BillingEvent types should be exhaustive
|
|
14
|
+
- Partnership configs need strict typing
|
|
15
|
+
- Transaction Templates have well-defined shapes
|
|
16
|
+
- API responses should use Zod schemas
|
|
17
|
+
|
|
18
|
+
## Anti-Patterns to Flag
|
|
19
|
+
|
|
20
|
+
- `as any` type assertions
|
|
21
|
+
- Implicit `any` from untyped dependencies
|
|
22
|
+
- `// @ts-ignore` without explanation
|
|
23
|
+
- Overly permissive union types
|
|
24
|
+
- Missing return types on exported functions
|
|
25
|
+
|
|
26
|
+
## Output Format
|
|
27
|
+
|
|
28
|
+
Return JSON:
|
|
29
|
+
|
|
30
|
+
```json
|
|
31
|
+
{
|
|
32
|
+
"issues": [
|
|
33
|
+
{
|
|
34
|
+
"file": "src/api/handlers.ts",
|
|
35
|
+
"line": 45,
|
|
36
|
+
"severity": "important",
|
|
37
|
+
"confidence": 88,
|
|
38
|
+
"issue": "Function `processTransaction` has implicit `any` return type",
|
|
39
|
+
"suggestion": "Add explicit return type `Promise<TransactionResult>`"
|
|
40
|
+
}
|
|
41
|
+
],
|
|
42
|
+
"summary": "One-line summary of type safety concerns"
|
|
43
|
+
}
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## Severity Guidelines
|
|
47
|
+
|
|
48
|
+
- **critical**: `any` in billing/transaction code, missing API contract types
|
|
49
|
+
- **important**: Implicit `any`, missing return types on public APIs
|
|
50
|
+
- **suggestion**: Could use stricter types, minor improvements
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
name: type-reviewer
|
|
2
|
+
description: >-
|
|
3
|
+
Review TypeScript type design and interface contracts. Check for proper
|
|
4
|
+
typing, avoid `any`, ensure domain types are used correctly.
|
|
5
|
+
version: 0.1.0
|
|
6
|
+
status: alpha
|
|
7
|
+
mode: subagent
|
|
8
|
+
model: sonnet
|
|
9
|
+
color: purple
|
|
10
|
+
tools:
|
|
11
|
+
- Read
|
|
12
|
+
- Grep
|
|
13
|
+
- Glob
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Run comprehensive code review using specialized agents. Accepts PR number, 'staged', 'branch', or file path.
|
|
3
|
+
argument-hint: "[#123 | staged | branch | path/to/file.ts]"
|
|
4
|
+
allowed-tools: Task, Bash(git:*), Bash(gh:*), Read, Glob
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# /code-review - Run comprehensive code review using specialized agents
|
|
8
|
+
|
|
9
|
+
Review target: $ARGUMENTS
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
/code-review #123 # Review PR #123
|
|
15
|
+
/code-review staged # Review staged changes
|
|
16
|
+
/code-review branch # Review current branch vs main
|
|
17
|
+
/code-review path/to/file # Review specific file
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
### Step 1: Determine Review Scope
|
|
21
|
+
|
|
22
|
+
Parse the argument to determine what to review:
|
|
23
|
+
|
|
24
|
+
**If argument starts with `#` or is a number (e.g., `#123` or `123`):**
|
|
25
|
+
- This is a PR number
|
|
26
|
+
- Fetch PR details: `gh pr view $PR_NUMBER --json title,body,baseRefName,headRefName,files`
|
|
27
|
+
- Get the diff: `gh pr diff $PR_NUMBER`
|
|
28
|
+
- Note the PR author and description for context
|
|
29
|
+
|
|
30
|
+
**If argument is `staged` or empty:**
|
|
31
|
+
- Review staged changes: `git diff --cached`
|
|
32
|
+
|
|
33
|
+
**If argument is `branch`:**
|
|
34
|
+
- Review current branch vs main: `git diff origin/main...HEAD`
|
|
35
|
+
|
|
36
|
+
**If argument is a file path:**
|
|
37
|
+
- Review specific file: `git diff HEAD -- $FILE_PATH`
|
|
38
|
+
- If no changes, review the entire file for issues
|
|
39
|
+
|
|
40
|
+
### Step 2: Gather Context
|
|
41
|
+
|
|
42
|
+
For PR reviews, also fetch:
|
|
43
|
+
- PR description (may contain context about the change)
|
|
44
|
+
- Linked issues: `gh pr view $PR_NUMBER --json body` and parse for #issue refs
|
|
45
|
+
- Changed files list for targeted agent assignment
|
|
46
|
+
|
|
47
|
+
### Step 3: Parallel Agent Reviews
|
|
48
|
+
|
|
49
|
+
Launch these agents in parallel using the Task tool with `run_in_background: true`:
|
|
50
|
+
|
|
51
|
+
1. **edi-standards-reviewer**: EDI patterns, partnership handling, billing concerns
|
|
52
|
+
2. **test-coverage-analyzer**: Test completeness and edge cases
|
|
53
|
+
3. **error-handling-reviewer**: Silent failures, missing error handling
|
|
54
|
+
4. **type-reviewer**: Type design, interface contracts
|
|
55
|
+
|
|
56
|
+
Pass each agent:
|
|
57
|
+
1. The diff content
|
|
58
|
+
2. The full file content for changed files (for context)
|
|
59
|
+
3. PR description if available
|
|
60
|
+
|
|
61
|
+
Use TaskOutput to collect results from all agents.
|
|
62
|
+
|
|
63
|
+
### Step 4: Confidence Filtering
|
|
64
|
+
|
|
65
|
+
Each agent returns issues with confidence scores (0-100).
|
|
66
|
+
Filter out issues with confidence < 80.
|
|
67
|
+
|
|
68
|
+
### Step 5: Synthesize Report
|
|
69
|
+
|
|
70
|
+
Compile findings into a prioritized report:
|
|
71
|
+
|
|
72
|
+
**PR #123: "Add partnership billing events"** (if reviewing a PR)
|
|
73
|
+
*Author: @username*
|
|
74
|
+
|
|
75
|
+
**Critical** (security, data loss, billing errors)
|
|
76
|
+
- `file.ts:42` - Issue description
|
|
77
|
+
|
|
78
|
+
**Important** (bugs, missing tests, type issues)
|
|
79
|
+
- `file.ts:67` - Issue description
|
|
80
|
+
|
|
81
|
+
**Suggestions** (style, readability)
|
|
82
|
+
- `file.ts:89` - Issue description
|
|
83
|
+
|
|
84
|
+
**Summary**: X critical, Y important, Z suggestions across N files.
|
|
85
|
+
|
|
86
|
+
### Step 6: Offer Actions (for PRs)
|
|
87
|
+
|
|
88
|
+
After presenting the report, offer:
|
|
89
|
+
- "Would you like me to post this as a PR comment?"
|
|
90
|
+
- "Should I suggest fixes for any of these issues?"
|
|
91
|
+
- "Want me to check out this branch and fix the critical issues?"
|