@orderful/droid 0.26.0 → 0.27.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/.claude-plugin/marketplace.json +7 -7
- package/AGENTS.md +36 -32
- package/CHANGELOG.md +29 -0
- package/dist/bin/droid.js +102 -24
- package/dist/index.js +59 -25
- package/dist/lib/migrations.d.ts +8 -0
- package/dist/lib/migrations.d.ts.map +1 -1
- package/dist/lib/skills.d.ts.map +1 -1
- package/dist/lib/tools.d.ts.map +1 -1
- package/dist/lib/types.d.ts +10 -2
- package/dist/lib/types.d.ts.map +1 -1
- package/dist/tools/brain/.claude-plugin/plugin.json +1 -1
- package/dist/tools/brain/TOOL.yaml +7 -5
- package/dist/tools/brain/commands/brain.md +17 -49
- package/dist/tools/brain/commands/scratchpad.md +13 -50
- package/{src/tools/brain/skills/droid-brain → dist/tools/brain/skills/brain}/SKILL.md +5 -5
- package/dist/tools/brain/skills/{droid-brain-obsidian → brain-obsidian}/SKILL.md +8 -8
- package/dist/tools/coach/.claude-plugin/plugin.json +1 -1
- package/dist/tools/coach/TOOL.yaml +4 -3
- package/dist/tools/coach/commands/coach.md +14 -54
- package/{src/tools/coach/skills/droid-coach → dist/tools/coach/skills/coach}/SKILL.md +4 -3
- package/dist/tools/code-review/.claude-plugin/plugin.json +1 -1
- package/dist/tools/code-review/TOOL.yaml +4 -3
- package/dist/tools/code-review/commands/code-review.md +18 -102
- package/dist/tools/code-review/skills/code-review/SKILL.md +154 -0
- package/dist/tools/codex/.claude-plugin/plugin.json +1 -1
- package/dist/tools/codex/TOOL.yaml +4 -3
- package/dist/tools/codex/commands/codex.md +18 -65
- package/dist/tools/codex/skills/{droid-codex → codex}/SKILL.md +64 -45
- package/{src/tools/codex/skills/droid-codex → dist/tools/codex/skills/codex}/references/loading.md +94 -55
- package/dist/tools/codex/skills/codex/scripts/git-finish-write.d.ts.map +1 -0
- package/dist/tools/codex/skills/codex/scripts/git-preamble.d.ts.map +1 -0
- package/dist/tools/codex/skills/codex/scripts/git-start-write.d.ts.map +1 -0
- package/dist/tools/comments/.claude-plugin/plugin.json +1 -1
- package/dist/tools/comments/TOOL.yaml +4 -3
- package/dist/tools/comments/commands/comments.md +12 -14
- package/{src/tools/comments/skills/droid-comments → dist/tools/comments/skills/comments}/SKILL.md +3 -1
- package/dist/tools/project/.claude-plugin/plugin.json +1 -1
- package/dist/tools/project/TOOL.yaml +4 -3
- package/dist/tools/project/commands/project.md +12 -27
- package/dist/tools/project/skills/{droid-project → project}/SKILL.md +12 -11
- package/dist/tools/tech-design/.claude-plugin/plugin.json +1 -1
- package/dist/tools/tech-design/TOOL.yaml +4 -3
- package/dist/tools/tech-design/commands/tech-design.md +18 -80
- package/{src/tools/tech-design/skills/droid-tech-design → dist/tools/tech-design/skills/tech-design}/SKILL.md +1 -1
- package/package.json +1 -1
- package/src/commands/tui/components/Badge.test.tsx +10 -4
- package/src/commands/tui.tsx +4 -4
- package/src/lib/migrations.ts +95 -4
- package/src/lib/skills.test.ts +199 -74
- package/src/lib/skills.ts +55 -54
- package/src/lib/tools.ts +19 -12
- package/src/lib/types.ts +20 -5
- package/src/tools/brain/.claude-plugin/plugin.json +1 -1
- package/src/tools/brain/TOOL.yaml +7 -5
- package/src/tools/brain/commands/brain.md +17 -49
- package/src/tools/brain/commands/scratchpad.md +13 -50
- package/{dist/tools/brain/skills/droid-brain → src/tools/brain/skills/brain}/SKILL.md +5 -5
- package/src/tools/brain/skills/{droid-brain-obsidian → brain-obsidian}/SKILL.md +8 -8
- package/src/tools/coach/.claude-plugin/plugin.json +1 -1
- package/src/tools/coach/TOOL.yaml +4 -3
- package/src/tools/coach/commands/coach.md +14 -54
- package/{dist/tools/coach/skills/droid-coach → src/tools/coach/skills/coach}/SKILL.md +4 -3
- package/src/tools/code-review/.claude-plugin/plugin.json +1 -1
- package/src/tools/code-review/TOOL.yaml +4 -3
- package/src/tools/code-review/commands/code-review.md +18 -102
- package/src/tools/code-review/skills/code-review/SKILL.md +154 -0
- package/src/tools/codex/.claude-plugin/plugin.json +1 -1
- package/src/tools/codex/TOOL.yaml +4 -3
- package/src/tools/codex/commands/codex.md +18 -65
- package/src/tools/codex/skills/{droid-codex → codex}/SKILL.md +64 -45
- package/{dist/tools/codex/skills/droid-codex → src/tools/codex/skills/codex}/references/loading.md +94 -55
- package/src/tools/comments/.claude-plugin/plugin.json +1 -1
- package/src/tools/comments/TOOL.yaml +4 -3
- package/src/tools/comments/commands/comments.md +12 -14
- package/{dist/tools/comments/skills/droid-comments → src/tools/comments/skills/comments}/SKILL.md +3 -1
- package/src/tools/project/.claude-plugin/plugin.json +1 -1
- package/src/tools/project/TOOL.yaml +4 -3
- package/src/tools/project/commands/project.md +12 -27
- package/src/tools/project/skills/{droid-project → project}/SKILL.md +12 -11
- package/src/tools/tech-design/.claude-plugin/plugin.json +1 -1
- package/src/tools/tech-design/TOOL.yaml +4 -3
- package/src/tools/tech-design/commands/tech-design.md +18 -80
- package/{dist/tools/tech-design/skills/droid-tech-design → src/tools/tech-design/skills/tech-design}/SKILL.md +1 -1
- package/dist/tools/code-review/skills/droid-code-review/SKILL.md +0 -55
- package/dist/tools/codex/skills/droid-codex/scripts/git-finish-write.d.ts.map +0 -1
- package/dist/tools/codex/skills/droid-codex/scripts/git-preamble.d.ts.map +0 -1
- package/dist/tools/codex/skills/droid-codex/scripts/git-start-write.d.ts.map +0 -1
- package/src/tools/code-review/skills/droid-code-review/SKILL.md +0 -55
- /package/dist/tools/brain/skills/{droid-brain → brain}/references/metadata.md +0 -0
- /package/dist/tools/brain/skills/{droid-brain → brain}/references/naming.md +0 -0
- /package/dist/tools/brain/skills/{droid-brain → brain}/references/templates.md +0 -0
- /package/dist/tools/brain/skills/{droid-brain → brain}/references/workflows.md +0 -0
- /package/dist/tools/brain/skills/{droid-brain-obsidian → brain-obsidian}/references/templates.md +0 -0
- /package/dist/tools/brain/skills/{droid-brain-obsidian → brain-obsidian}/references/workflows.md +0 -0
- /package/dist/tools/codex/skills/{droid-codex → codex}/references/creating.md +0 -0
- /package/dist/tools/codex/skills/{droid-codex → codex}/references/decisions.md +0 -0
- /package/dist/tools/codex/skills/{droid-codex → codex}/references/topics.md +0 -0
- /package/dist/tools/codex/skills/{droid-codex → codex}/scripts/git-finish-write.d.ts +0 -0
- /package/dist/tools/codex/skills/{droid-codex → codex}/scripts/git-finish-write.ts +0 -0
- /package/dist/tools/codex/skills/{droid-codex → codex}/scripts/git-preamble.d.ts +0 -0
- /package/dist/tools/codex/skills/{droid-codex → codex}/scripts/git-preamble.ts +0 -0
- /package/dist/tools/codex/skills/{droid-codex → codex}/scripts/git-scripts.test.ts +0 -0
- /package/dist/tools/codex/skills/{droid-codex → codex}/scripts/git-start-write.d.ts +0 -0
- /package/dist/tools/codex/skills/{droid-codex → codex}/scripts/git-start-write.ts +0 -0
- /package/dist/tools/project/skills/{droid-project → project}/references/changelog.md +0 -0
- /package/dist/tools/project/skills/{droid-project → project}/references/creating.md +0 -0
- /package/dist/tools/project/skills/{droid-project → project}/references/loading.md +0 -0
- /package/dist/tools/project/skills/{droid-project → project}/references/templates.md +0 -0
- /package/dist/tools/project/skills/{droid-project → project}/references/updating.md +0 -0
- /package/dist/tools/project/skills/{droid-project → project}/references/versioning.md +0 -0
- /package/dist/tools/tech-design/skills/{droid-tech-design → tech-design}/references/draft.md +0 -0
- /package/dist/tools/tech-design/skills/{droid-tech-design → tech-design}/references/gaps.md +0 -0
- /package/dist/tools/tech-design/skills/{droid-tech-design → tech-design}/references/publish.md +0 -0
- /package/dist/tools/tech-design/skills/{droid-tech-design → tech-design}/references/research-doc-template.md +0 -0
- /package/dist/tools/tech-design/skills/{droid-tech-design → tech-design}/references/rollup-template.md +0 -0
- /package/dist/tools/tech-design/skills/{droid-tech-design → tech-design}/references/start.md +0 -0
- /package/dist/tools/tech-design/skills/{droid-tech-design → tech-design}/references/think.md +0 -0
- /package/dist/tools/tech-design/skills/{droid-tech-design → tech-design}/references/thought-doc-template.md +0 -0
- /package/src/tools/brain/skills/{droid-brain → brain}/references/metadata.md +0 -0
- /package/src/tools/brain/skills/{droid-brain → brain}/references/naming.md +0 -0
- /package/src/tools/brain/skills/{droid-brain → brain}/references/templates.md +0 -0
- /package/src/tools/brain/skills/{droid-brain → brain}/references/workflows.md +0 -0
- /package/src/tools/brain/skills/{droid-brain-obsidian → brain-obsidian}/references/templates.md +0 -0
- /package/src/tools/brain/skills/{droid-brain-obsidian → brain-obsidian}/references/workflows.md +0 -0
- /package/src/tools/codex/skills/{droid-codex → codex}/references/creating.md +0 -0
- /package/src/tools/codex/skills/{droid-codex → codex}/references/decisions.md +0 -0
- /package/src/tools/codex/skills/{droid-codex → codex}/references/topics.md +0 -0
- /package/src/tools/codex/skills/{droid-codex → codex}/scripts/git-finish-write.ts +0 -0
- /package/src/tools/codex/skills/{droid-codex → codex}/scripts/git-preamble.ts +0 -0
- /package/src/tools/codex/skills/{droid-codex → codex}/scripts/git-scripts.test.ts +0 -0
- /package/src/tools/codex/skills/{droid-codex → codex}/scripts/git-start-write.ts +0 -0
- /package/src/tools/project/skills/{droid-project → project}/references/changelog.md +0 -0
- /package/src/tools/project/skills/{droid-project → project}/references/creating.md +0 -0
- /package/src/tools/project/skills/{droid-project → project}/references/loading.md +0 -0
- /package/src/tools/project/skills/{droid-project → project}/references/templates.md +0 -0
- /package/src/tools/project/skills/{droid-project → project}/references/updating.md +0 -0
- /package/src/tools/project/skills/{droid-project → project}/references/versioning.md +0 -0
- /package/src/tools/tech-design/skills/{droid-tech-design → tech-design}/references/draft.md +0 -0
- /package/src/tools/tech-design/skills/{droid-tech-design → tech-design}/references/gaps.md +0 -0
- /package/src/tools/tech-design/skills/{droid-tech-design → tech-design}/references/publish.md +0 -0
- /package/src/tools/tech-design/skills/{droid-tech-design → tech-design}/references/research-doc-template.md +0 -0
- /package/src/tools/tech-design/skills/{droid-tech-design → tech-design}/references/rollup-template.md +0 -0
- /package/src/tools/tech-design/skills/{droid-tech-design → tech-design}/references/start.md +0 -0
- /package/src/tools/tech-design/skills/{droid-tech-design → tech-design}/references/think.md +0 -0
- /package/src/tools/tech-design/skills/{droid-tech-design → tech-design}/references/thought-doc-template.md +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
-
name:
|
|
2
|
+
name: project
|
|
3
3
|
description: "Persistent project context for AI memory across sessions. Use when working on multi-session features, refactors, or any work that benefits from accumulated context. User prompts like 'load the project', 'update project context', 'what's the current project?'."
|
|
4
4
|
globs:
|
|
5
5
|
- "**/PROJECT.md"
|
|
@@ -33,24 +33,25 @@ Chat history disappears. Projects persist.
|
|
|
33
33
|
- If `projects_dir` is configured → use **ONLY** that path (do NOT also search defaults)
|
|
34
34
|
- If not configured → use the default for current AI tool
|
|
35
35
|
|
|
36
|
-
| Setting
|
|
37
|
-
|
|
36
|
+
| Setting | Default | Description |
|
|
37
|
+
| -------------- | ----------- | ------------------------------------------------- |
|
|
38
38
|
| `projects_dir` | (see below) | Where projects are stored (use ONE location only) |
|
|
39
|
-
| `preset`
|
|
39
|
+
| `preset` | `markdown` | Output format: `markdown` or `obsidian` |
|
|
40
40
|
|
|
41
41
|
Default `projects_dir` by AI tool (only if overrides.yaml is missing or lacks `projects_dir`):
|
|
42
|
+
|
|
42
43
|
- **claude-code**: `~/.claude/projects`
|
|
43
44
|
- **opencode**: `~/.config/opencode/projects`
|
|
44
45
|
|
|
45
46
|
## Commands
|
|
46
47
|
|
|
47
|
-
| Command
|
|
48
|
-
|
|
49
|
-
| `/project`
|
|
50
|
-
| `/project {keywords}`
|
|
51
|
-
| `/project create {name}`
|
|
52
|
-
| `/project create --from codex:{name}` | Create project seeded with codex context
|
|
53
|
-
| `/project update`
|
|
48
|
+
| Command | Action |
|
|
49
|
+
| ------------------------------------- | ------------------------------------------------------ |
|
|
50
|
+
| `/project` | List and select a project |
|
|
51
|
+
| `/project {keywords}` | **Search** for existing project (fuzzy-match and load) |
|
|
52
|
+
| `/project create {name}` | Create new project (requires `create` keyword) |
|
|
53
|
+
| `/project create --from codex:{name}` | Create project seeded with codex context |
|
|
54
|
+
| `/project update` | Update from conversation context |
|
|
54
55
|
|
|
55
56
|
**IMPORTANT:** The default action for `/project {keywords}` is to **SEARCH** for existing projects, NOT create. Only use `/project create {name}` when the user explicitly wants to create a new project.
|
|
56
57
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "droid-tech-design",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Technical design authoring tool for engineers. Create structured tech design docs with /tech-design start, iterate in brain, publish to codex. Three-document approach: research doc (codebase discoveries) + thought doc (design workspace) + roll-up (clean summary for review).",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Orderful",
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
name: tech-design
|
|
2
2
|
description: "Technical design authoring tool for engineers. Create structured tech design docs with /tech-design start, iterate in brain, publish to codex. Three-document approach: research doc (codebase discoveries) + thought doc (design workspace) + roll-up (clean summary for review)."
|
|
3
|
-
version: 0.
|
|
3
|
+
version: 0.2.0
|
|
4
4
|
status: beta
|
|
5
5
|
|
|
6
6
|
includes:
|
|
7
7
|
skills:
|
|
8
|
-
- name:
|
|
8
|
+
- name: tech-design
|
|
9
9
|
required: true
|
|
10
10
|
commands:
|
|
11
|
-
- tech-design
|
|
11
|
+
- name: tech-design
|
|
12
|
+
is_alias: false
|
|
12
13
|
agents: []
|
|
13
14
|
|
|
14
15
|
dependencies:
|
|
@@ -1,93 +1,31 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
2
|
+
name: tech-design
|
|
3
|
+
description: "Write, iterate, and publish technical design documents using a three-document approach - research doc, thought doc, and roll-up"
|
|
3
4
|
argument-hint: "[start --from codex:{project} | draft [section] | think [topic] | gaps | publish]"
|
|
4
|
-
allowed-tools: [Read, Write, Edit, Glob, Grep, Bash(gh:*), Bash(git:*), Bash(mkdir:*), Task]
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# /tech-design
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
**User invoked:** `/tech-design $ARGUMENTS`
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
## Arguments
|
|
14
|
-
|
|
15
|
-
$ARGUMENTS
|
|
16
|
-
|
|
17
|
-
## Why `/tech-design` not `/design`?
|
|
18
|
-
|
|
19
|
-
Leaves `/design` open for actual design tooling (Figma workflows, design system docs, UI/UX review).
|
|
20
|
-
|
|
21
|
-
## Prerequisites
|
|
22
|
-
|
|
23
|
-
Before first use, verify:
|
|
24
|
-
|
|
25
|
-
1. **Brain configured** - For thought doc drafting
|
|
26
|
-
2. **Codex configured** - For PRD context and publishing
|
|
27
|
-
3. **gh CLI** - For creating PRs
|
|
28
|
-
|
|
29
|
-
## Usage
|
|
30
|
-
|
|
31
|
-
```bash
|
|
32
|
-
# Core Authoring (v1)
|
|
33
|
-
/tech-design start --from codex:{project} # Create thought doc, pull PRD/DESIGN context
|
|
34
|
-
/tech-design draft [section] # Auto-generate from PRD + codebase research
|
|
35
|
-
/tech-design think [topic] # Guided exploration, stress-test ideas
|
|
36
|
-
/tech-design gaps # Checklist of missing/empty sections
|
|
37
|
-
/tech-design publish # Generate roll-up + thought doc, open PR to codex
|
|
38
|
-
|
|
39
|
-
# Self-Review & Interaction (v2 - not yet implemented)
|
|
40
|
-
# /tech-design critic [persona] # Multi-persona review with severity scoring
|
|
41
|
-
# /tech-design respond {question} # Author tool: search thought doc to draft reply
|
|
42
|
-
# /tech-design ask {question} # Reviewer tool: search both docs to answer questions
|
|
43
|
-
```
|
|
44
|
-
|
|
45
|
-
## Configuration
|
|
46
|
-
|
|
47
|
-
Tech-design has no configuration of its own. It delegates to:
|
|
48
|
-
|
|
49
|
-
- **Brain skill** - Thought doc location (`brain_dir`, `inbox_folder`)
|
|
50
|
-
- **Codex skill** - Repository location (`codex_repo`)
|
|
51
|
-
|
|
52
|
-
## Behavior
|
|
53
|
-
|
|
54
|
-
Refer to the tech-design skill for:
|
|
55
|
-
|
|
56
|
-
- **Starting**: How to create thought doc from codex context
|
|
57
|
-
- **Drafting**: Research-first, structure-second content generation
|
|
58
|
-
- **Thinking**: Guided exploration to stress-test ideas
|
|
59
|
-
- **Gap Analysis**: What sections are missing or empty
|
|
60
|
-
- **Publishing**: Generate clean roll-up and create PR
|
|
61
|
-
|
|
62
|
-
The skill's `references/` folder contains detailed procedures for each workflow.
|
|
63
|
-
|
|
64
|
-
## Two-Document Approach
|
|
65
|
-
|
|
66
|
-
| Document | Purpose | Location |
|
|
67
|
-
| --------------- | --------------------------------------- | ------------- |
|
|
68
|
-
| **Thought doc** | Messy iteration, @mentions, exploration | Brain |
|
|
69
|
-
| **Roll-up** | Clean, reviewable, decision-focused | Codex project |
|
|
70
|
-
|
|
71
|
-
Both documents published to codex on `/tech-design publish` for full transparency.
|
|
11
|
+
**Your task:** Invoke the **tech-design skill** with these arguments.
|
|
72
12
|
|
|
73
13
|
## Examples
|
|
74
14
|
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
/tech-design draft
|
|
81
|
-
|
|
82
|
-
# Explore a specific idea before committing to it
|
|
83
|
-
/tech-design think "Should we use events or polling for status updates?"
|
|
15
|
+
- `/tech-design start --from codex:billing-v2` → Create research + thought docs from codex project
|
|
16
|
+
- `/tech-design draft rollout` → Auto-generate the rollout section
|
|
17
|
+
- `/tech-design think API design` → Guided exploration of API design, update research doc
|
|
18
|
+
- `/tech-design gaps` → Show checklist of missing/empty sections
|
|
19
|
+
- `/tech-design publish` → Generate roll-up and publish to codex
|
|
84
20
|
|
|
85
|
-
|
|
86
|
-
/tech-design draft rollout
|
|
21
|
+
## Quick Reference
|
|
87
22
|
|
|
88
|
-
# See what's missing
|
|
89
|
-
/tech-design gaps
|
|
90
|
-
|
|
91
|
-
# Publish to codex when ready for review
|
|
92
|
-
/tech-design publish
|
|
93
23
|
```
|
|
24
|
+
/tech-design start --from codex:{project} # Create research + thought docs
|
|
25
|
+
/tech-design draft [section] # Auto-generate section
|
|
26
|
+
/tech-design think [topic] # Guided exploration
|
|
27
|
+
/tech-design gaps # Missing sections checklist
|
|
28
|
+
/tech-design publish # Publish to codex
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
See the **tech-design skill** for complete documentation and procedures.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
-
name:
|
|
2
|
+
name: tech-design
|
|
3
3
|
description: "Technical design authoring with three-document approach - research doc (codebase discoveries), thought doc (design iteration), and roll-up (clean summary). Use when writing tech designs, drafting sections, exploring architectural ideas, or publishing to codex. User prompts like 'start tech design for X', 'draft the rollout section', 'let's think through the API design', 'publish this to codex'."
|
|
4
4
|
globs: []
|
|
5
5
|
alwaysApply: false
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: droid-code-review
|
|
3
|
-
description: "Comprehensive code review using specialized agents. Use when reviewing PRs, checking staged changes, or analysing code quality. User prompts like 'review this PR', 'check my changes', 'review before I commit'."
|
|
4
|
-
globs:
|
|
5
|
-
- "**/*"
|
|
6
|
-
alwaysApply: false
|
|
7
|
-
allowed-tools: [Read, Grep, Glob, Bash, Task]
|
|
8
|
-
---
|
|
9
|
-
|
|
10
|
-
# Code Review Skill
|
|
11
|
-
|
|
12
|
-
Run comprehensive code reviews using specialized agents, each focused on a specific concern.
|
|
13
|
-
|
|
14
|
-
## How It Works
|
|
15
|
-
|
|
16
|
-
The `/code-review` command orchestrates multiple specialized agents in parallel:
|
|
17
|
-
|
|
18
|
-
1. **edi-standards-reviewer** - EDI patterns, partnership handling, billing concerns
|
|
19
|
-
2. **test-coverage-analyzer** - Test completeness and edge cases
|
|
20
|
-
3. **error-handling-reviewer** - Silent failures, missing error handling
|
|
21
|
-
4. **type-reviewer** - TypeScript type design, interface contracts
|
|
22
|
-
|
|
23
|
-
Each agent returns issues with confidence scores (0-100). Issues below 80% confidence are filtered out to reduce noise.
|
|
24
|
-
|
|
25
|
-
## Usage
|
|
26
|
-
|
|
27
|
-
```bash
|
|
28
|
-
/code-review #123 # Review PR #123
|
|
29
|
-
/code-review staged # Review staged changes
|
|
30
|
-
/code-review branch # Review current branch vs main
|
|
31
|
-
/code-review path/to/file # Review specific file
|
|
32
|
-
```
|
|
33
|
-
|
|
34
|
-
## Output Format
|
|
35
|
-
|
|
36
|
-
Reviews are presented in prioritized categories:
|
|
37
|
-
|
|
38
|
-
🔴 **Critical** - Security, data loss, billing errors
|
|
39
|
-
🟠 **Important** - Bugs, missing tests, type issues
|
|
40
|
-
🟡 **Suggestions** - Style, readability improvements
|
|
41
|
-
|
|
42
|
-
## Post-Review Actions
|
|
43
|
-
|
|
44
|
-
After presenting findings, you can:
|
|
45
|
-
- Post the review as a PR comment
|
|
46
|
-
- Get suggested fixes for specific issues
|
|
47
|
-
- Check out the branch and fix critical issues
|
|
48
|
-
|
|
49
|
-
## Domain-Aware Reviews
|
|
50
|
-
|
|
51
|
-
The EDI Standards Reviewer discovers project conventions by reading:
|
|
52
|
-
- `.claude/CLAUDE.md` or `CLAUDE.md` for team conventions
|
|
53
|
-
- `AGENTS.md` or `docs/` for architecture guidance
|
|
54
|
-
|
|
55
|
-
This lets it apply your project's specific patterns rather than generic rules.
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"git-finish-write.d.ts","sourceRoot":"","sources":["../../../../../../src/tools/codex/skills/droid-codex/scripts/git-finish-write.ts"],"names":[],"mappings":";AACA;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"git-preamble.d.ts","sourceRoot":"","sources":["../../../../../../src/tools/codex/skills/droid-codex/scripts/git-preamble.ts"],"names":[],"mappings":";AACA;;;;;;;;;;;;;;;;GAgBG"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"git-start-write.d.ts","sourceRoot":"","sources":["../../../../../../src/tools/codex/skills/droid-codex/scripts/git-start-write.ts"],"names":[],"mappings":";AACA;;;;;;;;;;;;;;;;;;;GAmBG"}
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: droid-code-review
|
|
3
|
-
description: "Comprehensive code review using specialized agents. Use when reviewing PRs, checking staged changes, or analysing code quality. User prompts like 'review this PR', 'check my changes', 'review before I commit'."
|
|
4
|
-
globs:
|
|
5
|
-
- "**/*"
|
|
6
|
-
alwaysApply: false
|
|
7
|
-
allowed-tools: [Read, Grep, Glob, Bash, Task]
|
|
8
|
-
---
|
|
9
|
-
|
|
10
|
-
# Code Review Skill
|
|
11
|
-
|
|
12
|
-
Run comprehensive code reviews using specialized agents, each focused on a specific concern.
|
|
13
|
-
|
|
14
|
-
## How It Works
|
|
15
|
-
|
|
16
|
-
The `/code-review` command orchestrates multiple specialized agents in parallel:
|
|
17
|
-
|
|
18
|
-
1. **edi-standards-reviewer** - EDI patterns, partnership handling, billing concerns
|
|
19
|
-
2. **test-coverage-analyzer** - Test completeness and edge cases
|
|
20
|
-
3. **error-handling-reviewer** - Silent failures, missing error handling
|
|
21
|
-
4. **type-reviewer** - TypeScript type design, interface contracts
|
|
22
|
-
|
|
23
|
-
Each agent returns issues with confidence scores (0-100). Issues below 80% confidence are filtered out to reduce noise.
|
|
24
|
-
|
|
25
|
-
## Usage
|
|
26
|
-
|
|
27
|
-
```bash
|
|
28
|
-
/code-review #123 # Review PR #123
|
|
29
|
-
/code-review staged # Review staged changes
|
|
30
|
-
/code-review branch # Review current branch vs main
|
|
31
|
-
/code-review path/to/file # Review specific file
|
|
32
|
-
```
|
|
33
|
-
|
|
34
|
-
## Output Format
|
|
35
|
-
|
|
36
|
-
Reviews are presented in prioritized categories:
|
|
37
|
-
|
|
38
|
-
🔴 **Critical** - Security, data loss, billing errors
|
|
39
|
-
🟠 **Important** - Bugs, missing tests, type issues
|
|
40
|
-
🟡 **Suggestions** - Style, readability improvements
|
|
41
|
-
|
|
42
|
-
## Post-Review Actions
|
|
43
|
-
|
|
44
|
-
After presenting findings, you can:
|
|
45
|
-
- Post the review as a PR comment
|
|
46
|
-
- Get suggested fixes for specific issues
|
|
47
|
-
- Check out the branch and fix critical issues
|
|
48
|
-
|
|
49
|
-
## Domain-Aware Reviews
|
|
50
|
-
|
|
51
|
-
The EDI Standards Reviewer discovers project conventions by reading:
|
|
52
|
-
- `.claude/CLAUDE.md` or `CLAUDE.md` for team conventions
|
|
53
|
-
- `AGENTS.md` or `docs/` for architecture guidance
|
|
54
|
-
|
|
55
|
-
This lets it apply your project's specific patterns rather than generic rules.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/tools/brain/skills/{droid-brain-obsidian → brain-obsidian}/references/templates.md
RENAMED
|
File without changes
|
/package/dist/tools/brain/skills/{droid-brain-obsidian → brain-obsidian}/references/workflows.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/tools/tech-design/skills/{droid-tech-design → tech-design}/references/draft.md
RENAMED
|
File without changes
|
|
File without changes
|
/package/dist/tools/tech-design/skills/{droid-tech-design → tech-design}/references/publish.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/tools/tech-design/skills/{droid-tech-design → tech-design}/references/start.md
RENAMED
|
File without changes
|
/package/dist/tools/tech-design/skills/{droid-tech-design → tech-design}/references/think.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/src/tools/brain/skills/{droid-brain-obsidian → brain-obsidian}/references/templates.md
RENAMED
|
File without changes
|
/package/src/tools/brain/skills/{droid-brain-obsidian → brain-obsidian}/references/workflows.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/src/tools/tech-design/skills/{droid-tech-design → tech-design}/references/publish.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|