@orderful/droid 0.7.0 → 0.9.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.
Files changed (78) hide show
  1. package/CHANGELOG.md +57 -0
  2. package/README.md +80 -89
  3. package/assets/droid+claude.png +0 -0
  4. package/dist/commands/setup.d.ts +1 -0
  5. package/dist/commands/setup.d.ts.map +1 -1
  6. package/dist/commands/setup.js +77 -9
  7. package/dist/commands/setup.js.map +1 -1
  8. package/dist/commands/tui.d.ts.map +1 -1
  9. package/dist/commands/tui.js +111 -70
  10. package/dist/commands/tui.js.map +1 -1
  11. package/dist/lib/agents.d.ts +19 -4
  12. package/dist/lib/agents.d.ts.map +1 -1
  13. package/dist/lib/agents.js +121 -42
  14. package/dist/lib/agents.js.map +1 -1
  15. package/dist/lib/skills.d.ts.map +1 -1
  16. package/dist/lib/skills.js +56 -1
  17. package/dist/lib/skills.js.map +1 -1
  18. package/dist/lib/types.d.ts +2 -0
  19. package/dist/lib/types.d.ts.map +1 -1
  20. package/dist/skills/brain/SKILL.md +16 -16
  21. package/dist/skills/brain/SKILL.yaml +4 -6
  22. package/dist/skills/brain/commands/brain.md +12 -5
  23. package/dist/skills/brain/commands/scratchpad.md +52 -0
  24. package/dist/skills/brain/references/workflows.md +14 -4
  25. package/dist/skills/brain-obsidian/SKILL.md +1 -4
  26. package/dist/skills/brain-obsidian/SKILL.yaml +1 -4
  27. package/dist/skills/code-review/SKILL.md +54 -0
  28. package/dist/skills/code-review/SKILL.yaml +19 -0
  29. package/dist/skills/code-review/agents/edi-standards-reviewer/AGENT.md +39 -0
  30. package/dist/skills/code-review/agents/edi-standards-reviewer/AGENT.yaml +14 -0
  31. package/dist/skills/code-review/agents/error-handling-reviewer/AGENT.md +51 -0
  32. package/dist/skills/code-review/agents/error-handling-reviewer/AGENT.yaml +14 -0
  33. package/dist/skills/code-review/agents/test-coverage-analyzer/AGENT.md +53 -0
  34. package/dist/skills/code-review/agents/test-coverage-analyzer/AGENT.yaml +14 -0
  35. package/dist/skills/code-review/agents/type-reviewer/AGENT.md +50 -0
  36. package/dist/skills/code-review/agents/type-reviewer/AGENT.yaml +13 -0
  37. package/dist/skills/code-review/commands/code-review.md +91 -0
  38. package/dist/skills/comments/SKILL.md +21 -9
  39. package/dist/skills/comments/SKILL.yaml +2 -5
  40. package/dist/skills/comments/commands/comments.md +1 -1
  41. package/dist/skills/project/SKILL.md +10 -13
  42. package/dist/skills/project/SKILL.yaml +2 -7
  43. package/dist/skills/project/commands/project.md +9 -4
  44. package/dist/skills/project/references/creating.md +9 -4
  45. package/dist/skills/project/references/loading.md +11 -5
  46. package/package.json +1 -1
  47. package/src/commands/setup.test.ts +276 -0
  48. package/src/commands/setup.ts +80 -10
  49. package/src/commands/tui.tsx +149 -82
  50. package/src/lib/agents.ts +134 -44
  51. package/src/lib/skills.ts +61 -1
  52. package/src/lib/types.ts +4 -0
  53. package/src/skills/brain/SKILL.md +16 -16
  54. package/src/skills/brain/SKILL.yaml +4 -6
  55. package/src/skills/brain/commands/brain.md +12 -5
  56. package/src/skills/brain/commands/scratchpad.md +52 -0
  57. package/src/skills/brain/references/workflows.md +14 -4
  58. package/src/skills/brain-obsidian/SKILL.md +1 -4
  59. package/src/skills/brain-obsidian/SKILL.yaml +1 -4
  60. package/src/skills/code-review/SKILL.md +54 -0
  61. package/src/skills/code-review/SKILL.yaml +19 -0
  62. package/src/skills/code-review/agents/edi-standards-reviewer/AGENT.md +39 -0
  63. package/src/skills/code-review/agents/edi-standards-reviewer/AGENT.yaml +14 -0
  64. package/src/skills/code-review/agents/error-handling-reviewer/AGENT.md +51 -0
  65. package/src/skills/code-review/agents/error-handling-reviewer/AGENT.yaml +14 -0
  66. package/src/skills/code-review/agents/test-coverage-analyzer/AGENT.md +53 -0
  67. package/src/skills/code-review/agents/test-coverage-analyzer/AGENT.yaml +14 -0
  68. package/src/skills/code-review/agents/type-reviewer/AGENT.md +50 -0
  69. package/src/skills/code-review/agents/type-reviewer/AGENT.yaml +13 -0
  70. package/src/skills/code-review/commands/code-review.md +91 -0
  71. package/src/skills/comments/SKILL.md +21 -9
  72. package/src/skills/comments/SKILL.yaml +2 -5
  73. package/src/skills/comments/commands/comments.md +1 -1
  74. package/src/skills/project/SKILL.md +10 -13
  75. package/src/skills/project/SKILL.yaml +2 -7
  76. package/src/skills/project/commands/project.md +9 -4
  77. package/src/skills/project/references/creating.md +9 -4
  78. package/src/skills/project/references/loading.md +11 -5
@@ -1,6 +1,6 @@
1
1
  ---
2
- description: Collaborative scratch pad for planning and research
3
- argument-hint: [plan|research|review|note|add|check|done] {topic/text}
2
+ description: Collaborative scratchpad for planning and research
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
 
@@ -8,16 +8,22 @@ allowed-tools: Read, Write, Edit, Glob, Grep, Bash(mkdir:*), Bash(ls:*)
8
8
 
9
9
  Entry point for brain doc management. See the **brain skill** for full behavior.
10
10
 
11
+ > **Alias:** This command also works as `/scratchpad` - use whichever feels natural.
12
+
11
13
  ## Arguments
12
14
 
13
15
  $ARGUMENTS
14
16
 
17
+ ## Default Behavior
18
+
19
+ **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}`.
20
+
15
21
  ## Usage
16
22
 
17
23
  ```
18
24
  /brain # List recent docs or create new
19
- /brain {topic} # Open existing (fuzzy match) → active
20
- /brain plan {topic} # Create planning doc → active
25
+ /brain {topic} # SEARCH: Open existing doc (fuzzy match) → active
26
+ /brain plan {topic} # CREATE: New planning doc → active
21
27
  /brain research {topic} # Create research doc → active
22
28
  /brain review {topic} # Create review doc → active
23
29
  /brain note {text} # Quick capture (fire-and-forget)
@@ -28,7 +34,8 @@ $ARGUMENTS
28
34
 
29
35
  ## Configuration
30
36
 
31
- From `~/.droid/skills/brain/overrides.yaml`:
37
+ **ALWAYS read `~/.droid/skills/brain/overrides.yaml` first.** Use configured values if present, only fall back to defaults if missing.
38
+
32
39
  - `brain_dir` - Where docs live (default varies by AI tool)
33
40
  - `inbox_folder` - Subfolder for new docs (empty = flat)
34
41
 
@@ -0,0 +1,52 @@
1
+ ---
2
+ description: Collaborative scratchpad for planning and research
3
+ argument-hint: "[{topic} | plan|research|review {topic} | note|add {text} | check|done]"
4
+ allowed-tools: Read, Write, Edit, Glob, Grep, Bash(mkdir:*), Bash(ls:*)
5
+ ---
6
+
7
+ # /scratchpad
8
+
9
+ Your scratchpad for planning, research, and design. See the **brain skill** for full behavior.
10
+
11
+ > **Alias:** This command also works as `/brain` - use whichever feels natural.
12
+
13
+ ## Arguments
14
+
15
+ $ARGUMENTS
16
+
17
+ ## Default Behavior
18
+
19
+ **IMPORTANT:** When given just a topic (e.g., `/scratchpad auth-refactor`), the default action is to **SEARCH** for existing docs, NOT create. Only create docs with explicit `/scratchpad plan {topic}` or `/scratchpad research {topic}`.
20
+
21
+ ## Usage
22
+
23
+ ```
24
+ /scratchpad # List recent docs or create new
25
+ /scratchpad {topic} # SEARCH: Open existing doc (fuzzy match) → active
26
+ /scratchpad plan {topic} # CREATE: New planning doc → active
27
+ /scratchpad research {topic} # Create research doc → active
28
+ /scratchpad review {topic} # Create review doc → active
29
+ /scratchpad note {text} # Quick capture (fire-and-forget)
30
+ /scratchpad add {text} # Append to active doc
31
+ /scratchpad check # Address @droid comments in active doc
32
+ /scratchpad done # Finalize active doc
33
+ ```
34
+
35
+ ## Configuration
36
+
37
+ **ALWAYS read `~/.droid/skills/brain/overrides.yaml` first.** Use configured values if present, only fall back to defaults if missing.
38
+
39
+ - `brain_dir` - Where docs live (default varies by AI tool)
40
+ - `inbox_folder` - Subfolder for new docs (empty = flat)
41
+
42
+ ## Behavior
43
+
44
+ Refer to the brain skill for:
45
+ - **Opening**: How to fuzzy-match, handle multiple matches, set active
46
+ - **Creating**: Template structure by preset, naming conventions
47
+ - **Notes**: Quick capture workflow
48
+ - **Adding**: Append to active doc with timestamp
49
+ - **Checking**: Find and address @droid comments
50
+ - **Finalizing**: Update status, suggest next steps
51
+
52
+ The skill's `references/` folder contains detailed specs for workflows, templates, naming, and metadata.
@@ -8,7 +8,9 @@ Detailed procedures for each brain operation.
8
8
 
9
9
  **Steps:**
10
10
 
11
- 1. **Resolve brain_dir** from config (default: `~/.claude/brain` for claude-code)
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. **Resolve brain_dir** and **inbox_folder** from config
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. **Resolve brain_dir** and **inbox_folder** from config
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. **Resolve brain_dir** from config
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
  ```
@@ -1,9 +1,6 @@
1
1
  ---
2
2
  name: brain-obsidian
3
- description: >-
4
- Obsidian extension for brain skill. Adds YAML frontmatter, wikilinks, and folder
5
- organization. Requires brain skill. Install this to use brain docs with your
6
- Obsidian vault.
3
+ description: "Obsidian extension for brain skill. Adds YAML frontmatter, wikilinks, and folder organization. Requires brain skill. Install this to use brain docs with your Obsidian vault."
7
4
  globs:
8
5
  - "**/brain/**/*.md"
9
6
  alwaysApply: false
@@ -1,8 +1,5 @@
1
1
  name: brain-obsidian
2
- description: >-
3
- Obsidian extension for brain skill. Adds YAML frontmatter, wikilinks, and folder
4
- organization. Requires brain skill. Install this to use brain docs with your
5
- Obsidian vault.
2
+ description: "Obsidian extension for brain skill. Adds YAML frontmatter, wikilinks, and folder organization. Requires brain skill. Install this to use brain docs with your Obsidian vault."
6
3
  version: 0.1.0
7
4
  status: beta
8
5
  dependencies:
@@ -0,0 +1,54 @@
1
+ ---
2
+ name: code-review
3
+ description: "Comprehensive code review using specialized agents. Reviews PRs, staged changes, branches, or specific files. Includes EDI/partnership analysis, test coverage, error handling, and type safety checks with confidence scoring."
4
+ globs:
5
+ - "**/*"
6
+ alwaysApply: false
7
+ ---
8
+
9
+ # Code Review Skill
10
+
11
+ Run comprehensive code reviews using specialized agents, each focused on a specific concern.
12
+
13
+ ## How It Works
14
+
15
+ The `/code-review` command orchestrates multiple specialized agents in parallel:
16
+
17
+ 1. **edi-standards-reviewer** - EDI patterns, partnership handling, billing concerns
18
+ 2. **test-coverage-analyzer** - Test completeness and edge cases
19
+ 3. **error-handling-reviewer** - Silent failures, missing error handling
20
+ 4. **type-reviewer** - TypeScript type design, interface contracts
21
+
22
+ Each agent returns issues with confidence scores (0-100). Issues below 80% confidence are filtered out to reduce noise.
23
+
24
+ ## Usage
25
+
26
+ ```bash
27
+ /code-review #123 # Review PR #123
28
+ /code-review staged # Review staged changes
29
+ /code-review branch # Review current branch vs main
30
+ /code-review path/to/file # Review specific file
31
+ ```
32
+
33
+ ## Output Format
34
+
35
+ Reviews are presented in prioritized categories:
36
+
37
+ 🔴 **Critical** - Security, data loss, billing errors
38
+ 🟠 **Important** - Bugs, missing tests, type issues
39
+ 🟡 **Suggestions** - Style, readability improvements
40
+
41
+ ## Post-Review Actions
42
+
43
+ After presenting findings, you can:
44
+ - Post the review as a PR comment
45
+ - Get suggested fixes for specific issues
46
+ - Check out the branch and fix critical issues
47
+
48
+ ## Domain-Aware Reviews
49
+
50
+ The EDI Standards Reviewer discovers project conventions by reading:
51
+ - `.claude/CLAUDE.md` or `CLAUDE.md` for team conventions
52
+ - `AGENTS.md` or `docs/` for architecture guidance
53
+
54
+ This lets it apply your project's specific patterns rather than generic rules.
@@ -0,0 +1,19 @@
1
+ name: code-review
2
+ description: "Comprehensive code review using specialized agents. Reviews PRs, staged changes, branches, or specific files. Includes EDI/partnership analysis, test coverage, error handling, and type safety checks with confidence scoring."
3
+ version: 0.1.0
4
+ status: alpha
5
+ dependencies: []
6
+ provides_output: false
7
+ examples:
8
+ - title: "Review a PR"
9
+ code: |
10
+ /code-review #123
11
+ - title: "Review staged changes"
12
+ code: |
13
+ /code-review staged
14
+ - title: "Review current branch vs main"
15
+ code: |
16
+ /code-review branch
17
+ - title: "Review a specific file"
18
+ code: |
19
+ /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?"
@@ -1,9 +1,6 @@
1
1
  ---
2
2
  name: comments
3
- description: >-
4
- Enable inline conversations using @droid/@user markers. Tag @droid to ask the AI,
5
- AI responds with @{your-name}. Use /comments check to address markers, /comments cleanup
6
- to remove resolved threads. Ideal for code review notes and async collaboration.
3
+ description: "Enable inline conversations using @droid/@user markers. Tag @droid to ask the AI, AI responds with @{your-name}. Use /comments check to address markers, /comments cleanup to remove resolved threads. Ideal for code review notes and async collaboration."
7
4
  globs:
8
5
  - "**/*"
9
6
  alwaysApply: false
@@ -31,12 +28,27 @@ The AI will respond with `> @{user_mention}` (configured in droid setup, e.g., `
31
28
 
32
29
  ## Tag Convention
33
30
 
34
- | Tag | Who's Speaking | Purpose |
35
- |-----|----------------|---------|
36
- | `@droid` | User | User leaving notes/questions for AI |
37
- | `@{user}` (e.g., `@fry`) | AI | AI leaving responses/questions for user |
31
+ **CRITICAL: The `@mention` is who you're talking TO, not who is speaking.**
38
32
 
39
- **The pattern:** The tag indicates who you're addressing, not who's writing. When you write `> @droid`, you're talking TO the AI. When the AI writes `> @fry`, it's talking TO you.
33
+ Think of it like addressing someone in conversation:
34
+ - "Hey @droid, what do you think?" → User talking TO the AI
35
+ - "Good point @fry, here's my take..." → AI talking TO the user
36
+
37
+ | When you see... | Who wrote it | Who it's addressed to |
38
+ |-----------------|--------------|----------------------|
39
+ | `> @droid ...` | User | AI (droid) |
40
+ | `> @fry ...` | AI | User (fry) |
41
+
42
+ **Examples:**
43
+ ```markdown
44
+ > @droid Can you explain this function? ← User asking AI
45
+ > @fry This function calculates the hash... ← AI responding to user
46
+
47
+ > @droid Should we refactor this? ← User asking AI
48
+ > @fry Yes, I'd suggest extracting... ← AI responding to user
49
+ ```
50
+
51
+ **Never flip this.** When responding to a `@droid` comment, always use `@{user}` (e.g., `@fry`) because you're addressing the user, not yourself.
40
52
 
41
53
  ## When NOT to Use
42
54
 
@@ -1,9 +1,6 @@
1
1
  name: comments
2
- description: >-
3
- Enable inline conversations using @droid/@user markers. Tag @droid to ask the AI,
4
- AI responds with @{your-name}. Use /comments check to address markers, /comments cleanup
5
- to remove resolved threads. Ideal for code review notes and async collaboration.
6
- version: 0.2.1
2
+ description: "Enable inline conversations using @droid/@user markers. Tag @droid to ask the AI, AI responds with @{your-name}. Use /comments check to address markers, /comments cleanup to remove resolved threads. Ideal for code review notes and async collaboration."
3
+ version: 0.2.2
7
4
  status: beta
8
5
  dependencies: []
9
6
  provides_output: false
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  description: Check and respond to inline @droid comments in code and docs
3
- argument-hint: [check|cleanup] [path]
3
+ argument-hint: "[check [{path}] | cleanup]"
4
4
  allowed-tools: Read, Edit, Grep, Glob, Bash(git diff:*), Bash(git status:*)
5
5
  ---
6
6