@orderful/droid 0.14.0 → 0.15.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/CLAUDE.md +12 -8
- package/CHANGELOG.md +22 -0
- package/dist/commands/tui.d.ts.map +1 -1
- package/dist/commands/tui.js +1 -2
- package/dist/commands/tui.js.map +1 -1
- package/dist/lib/agents.d.ts +6 -6
- package/dist/lib/agents.d.ts.map +1 -1
- package/dist/lib/agents.js +60 -38
- package/dist/lib/agents.js.map +1 -1
- package/dist/lib/skills.d.ts +1 -0
- package/dist/lib/skills.d.ts.map +1 -1
- package/dist/lib/skills.js +41 -8
- package/dist/lib/skills.js.map +1 -1
- package/dist/lib/types.d.ts +4 -0
- package/dist/lib/types.d.ts.map +1 -1
- package/dist/tools/README.md +79 -50
- package/dist/tools/brain/TOOL.yaml +1 -1
- package/dist/tools/brain/skills/brain/SKILL.md +1 -0
- package/dist/tools/brain/skills/brain-obsidian/SKILL.md +1 -0
- package/dist/tools/coach/TOOL.yaml +1 -1
- package/dist/tools/coach/skills/coach/SKILL.md +1 -0
- package/{src/tools/code-review/agents/edi-standards-reviewer/AGENT.md → dist/tools/code-review/agents/edi-standards-reviewer.md} +10 -0
- package/dist/tools/code-review/agents/{error-handling-reviewer/AGENT.md → error-handling-reviewer.md} +10 -0
- package/{src/tools/code-review/agents/test-coverage-analyzer/AGENT.md → dist/tools/code-review/agents/test-coverage-analyzer.md} +11 -0
- package/dist/tools/code-review/agents/{type-reviewer/AGENT.md → type-reviewer.md} +10 -0
- package/dist/tools/code-review/skills/code-review/SKILL.md +1 -0
- package/dist/tools/comments/TOOL.yaml +2 -2
- package/dist/tools/comments/skills/comments/SKILL.md +1 -0
- package/dist/tools/droid/skills/droid/SKILL.md +1 -0
- package/dist/tools/project/skills/project/SKILL.md +1 -0
- package/package.json +1 -1
- package/src/commands/tui.tsx +1 -2
- package/src/lib/agents.ts +65 -42
- package/src/lib/skills.test.ts +26 -31
- package/src/lib/skills.ts +45 -8
- package/src/lib/types.ts +5 -0
- package/src/tools/README.md +79 -50
- package/src/tools/brain/TOOL.yaml +1 -1
- package/src/tools/brain/skills/brain/SKILL.md +1 -0
- package/src/tools/brain/skills/brain-obsidian/SKILL.md +1 -0
- package/src/tools/coach/TOOL.yaml +1 -1
- package/src/tools/coach/skills/coach/SKILL.md +1 -0
- package/{dist/tools/code-review/agents/edi-standards-reviewer/AGENT.md → src/tools/code-review/agents/edi-standards-reviewer.md} +10 -0
- package/src/tools/code-review/agents/{error-handling-reviewer/AGENT.md → error-handling-reviewer.md} +10 -0
- package/{dist/tools/code-review/agents/test-coverage-analyzer/AGENT.md → src/tools/code-review/agents/test-coverage-analyzer.md} +11 -0
- package/src/tools/code-review/agents/{type-reviewer/AGENT.md → type-reviewer.md} +10 -0
- package/src/tools/code-review/skills/code-review/SKILL.md +1 -0
- package/src/tools/comments/TOOL.yaml +2 -2
- package/src/tools/comments/skills/comments/SKILL.md +1 -0
- package/src/tools/droid/skills/droid/SKILL.md +1 -0
- package/src/tools/project/skills/project/SKILL.md +1 -0
- package/dist/tools/brain/skills/brain/SKILL.yaml +0 -29
- package/dist/tools/brain/skills/brain-obsidian/SKILL.yaml +0 -42
- package/dist/tools/coach/skills/coach/SKILL.yaml +0 -25
- package/dist/tools/code-review/agents/edi-standards-reviewer/AGENT.yaml +0 -14
- package/dist/tools/code-review/agents/error-handling-reviewer/AGENT.yaml +0 -14
- package/dist/tools/code-review/agents/test-coverage-analyzer/AGENT.yaml +0 -14
- package/dist/tools/code-review/agents/type-reviewer/AGENT.yaml +0 -13
- package/dist/tools/code-review/skills/code-review/SKILL.yaml +0 -19
- package/dist/tools/comments/skills/comments/SKILL.yaml +0 -50
- package/dist/tools/droid/skills/droid/SKILL.yaml +0 -7
- package/dist/tools/project/skills/project/SKILL.yaml +0 -30
- package/src/tools/brain/skills/brain/SKILL.yaml +0 -29
- package/src/tools/brain/skills/brain-obsidian/SKILL.yaml +0 -42
- package/src/tools/coach/skills/coach/SKILL.yaml +0 -25
- package/src/tools/code-review/agents/edi-standards-reviewer/AGENT.yaml +0 -14
- package/src/tools/code-review/agents/error-handling-reviewer/AGENT.yaml +0 -14
- package/src/tools/code-review/agents/test-coverage-analyzer/AGENT.yaml +0 -14
- package/src/tools/code-review/agents/type-reviewer/AGENT.yaml +0 -13
- package/src/tools/code-review/skills/code-review/SKILL.yaml +0 -19
- package/src/tools/comments/skills/comments/SKILL.yaml +0 -50
- package/src/tools/droid/skills/droid/SKILL.yaml +0 -7
- package/src/tools/project/skills/project/SKILL.yaml +0 -30
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
name: comments
|
|
2
|
-
description: "Enable inline conversations using @droid/@user markers. Tag @droid to ask the AI, AI responds with @{your-name}. Ideal for code review notes and async collaboration."
|
|
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
3
|
version: 0.2.3
|
|
4
4
|
status: beta
|
|
5
5
|
|
|
@@ -19,7 +19,7 @@ config_schema:
|
|
|
19
19
|
description: Override the global user mention for this skill
|
|
20
20
|
ai_mentions:
|
|
21
21
|
type: string
|
|
22
|
-
description: Additional AI mentions to recognize (comma-separated)
|
|
22
|
+
description: Additional AI mentions to recognize (comma-separated, e.g., "@claude,@ai")
|
|
23
23
|
default: ""
|
|
24
24
|
preserve_comments:
|
|
25
25
|
type: boolean
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
name: brain
|
|
2
|
-
description: "Your scratchpad (or brain) - a collaborative space for planning and research. Triggers on phrases like 'let's use our brain', 'open a scratchpad', or 'plan this out' to capture AI output into a persistent doc. Create docs with /brain plan (or /scratchpad plan), /brain research, or /brain review. Use @mentions for async discussion. Docs persist across sessions."
|
|
3
|
-
version: 0.2.0
|
|
4
|
-
status: beta
|
|
5
|
-
dependencies: []
|
|
6
|
-
provides_output: false
|
|
7
|
-
command_aliases:
|
|
8
|
-
scratchpad: brain
|
|
9
|
-
config_schema:
|
|
10
|
-
brain_dir:
|
|
11
|
-
type: string
|
|
12
|
-
description: Directory for brain docs (default varies by AI tool)
|
|
13
|
-
inbox_folder:
|
|
14
|
-
type: string
|
|
15
|
-
description: Subfolder for new docs (empty = flat structure)
|
|
16
|
-
default: ""
|
|
17
|
-
examples:
|
|
18
|
-
- title: "Start a planning doc"
|
|
19
|
-
code: |
|
|
20
|
-
/brain plan auth refactor
|
|
21
|
-
# Creates planning doc, becomes active for session
|
|
22
|
-
- title: "Quick note capture"
|
|
23
|
-
code: |
|
|
24
|
-
/brain note Remember to check rate limits on the API
|
|
25
|
-
# Fire-and-forget to inbox
|
|
26
|
-
- title: "Check for comments"
|
|
27
|
-
code: |
|
|
28
|
-
/brain check
|
|
29
|
-
# Find and address @mentions in active doc
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
name: brain-obsidian
|
|
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."
|
|
3
|
-
version: 0.1.0
|
|
4
|
-
status: beta
|
|
5
|
-
dependencies:
|
|
6
|
-
- brain
|
|
7
|
-
# Optional: project skill enables linking features
|
|
8
|
-
provides_output: false
|
|
9
|
-
config_schema:
|
|
10
|
-
inbox_folder:
|
|
11
|
-
type: string
|
|
12
|
-
description: Folder for new brain docs
|
|
13
|
-
default: "0-Inbox"
|
|
14
|
-
archive_folder:
|
|
15
|
-
type: string
|
|
16
|
-
description: Folder for archived/stale docs
|
|
17
|
-
default: "4-Archives"
|
|
18
|
-
para_structure:
|
|
19
|
-
type: boolean
|
|
20
|
-
description: Enable full PARA folder organization
|
|
21
|
-
default: false
|
|
22
|
-
projects_folder:
|
|
23
|
-
type: string
|
|
24
|
-
description: Folder for active project docs (when para_structure is true)
|
|
25
|
-
default: "1-Projects"
|
|
26
|
-
areas_folder:
|
|
27
|
-
type: string
|
|
28
|
-
description: Folder for area docs (when para_structure is true)
|
|
29
|
-
default: "1-Areas"
|
|
30
|
-
resources_folder:
|
|
31
|
-
type: string
|
|
32
|
-
description: Folder for reference material (when para_structure is true)
|
|
33
|
-
default: "3-Resources"
|
|
34
|
-
examples:
|
|
35
|
-
- title: "Create planning doc in vault"
|
|
36
|
-
code: |
|
|
37
|
-
/brain plan auth refactor
|
|
38
|
-
# Creates in vault's 0-Inbox/ with YAML frontmatter
|
|
39
|
-
- title: "Link to project"
|
|
40
|
-
code: |
|
|
41
|
-
/brain plan feature-x
|
|
42
|
-
# Frontmatter includes project: "[[feature-x]]"
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
name: coach
|
|
2
|
-
description: "Learning-mode AI assistance - AI as coach, not crutch. Triggers on phrases like 'help me think through', 'coach me on', 'I want to learn how to', or 'don't just give me the answer'. Use /coach plan for co-authored planning, /coach scaffold for structure with hints, /coach review for Socratic questions on your code."
|
|
3
|
-
version: 0.1.0
|
|
4
|
-
status: beta
|
|
5
|
-
dependencies:
|
|
6
|
-
- comments
|
|
7
|
-
provides_output: false
|
|
8
|
-
config_schema:
|
|
9
|
-
scaffold_verbosity:
|
|
10
|
-
type: string
|
|
11
|
-
description: "How detailed scaffold hints should be: minimal (signatures only), medium (hints), detailed (pseudocode)"
|
|
12
|
-
default: "medium"
|
|
13
|
-
examples:
|
|
14
|
-
- title: "Start co-authored planning"
|
|
15
|
-
code: |
|
|
16
|
-
/coach plan add user authentication
|
|
17
|
-
# AI asks questions, proposes structure, offers to create brain doc
|
|
18
|
-
- title: "Get scaffold for implementation"
|
|
19
|
-
code: |
|
|
20
|
-
/coach scaffold
|
|
21
|
-
# AI generates types/signatures with hint comments, you fill in logic
|
|
22
|
-
- title: "Review your implementation"
|
|
23
|
-
code: |
|
|
24
|
-
/coach review src/auth/login.ts
|
|
25
|
-
# AI adds inline // @you questions via comments skill
|
|
@@ -1,14 +0,0 @@
|
|
|
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
|
|
@@ -1,14 +0,0 @@
|
|
|
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
|
|
@@ -1,14 +0,0 @@
|
|
|
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
|
|
@@ -1,13 +0,0 @@
|
|
|
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
|
|
@@ -1,19 +0,0 @@
|
|
|
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
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
name: comments
|
|
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.3
|
|
4
|
-
status: beta
|
|
5
|
-
dependencies: []
|
|
6
|
-
provides_output: false
|
|
7
|
-
config_schema:
|
|
8
|
-
user_mention:
|
|
9
|
-
type: string
|
|
10
|
-
description: Override the global user mention for this skill
|
|
11
|
-
ai_mentions:
|
|
12
|
-
type: string
|
|
13
|
-
description: Additional AI mentions to recognize (comma-separated, e.g., "@claude,@ai")
|
|
14
|
-
default: ""
|
|
15
|
-
preserve_comments:
|
|
16
|
-
type: boolean
|
|
17
|
-
description: Keep original comments after addressing (vs removing them)
|
|
18
|
-
default: true
|
|
19
|
-
examples:
|
|
20
|
-
- title: "Action request"
|
|
21
|
-
code: |
|
|
22
|
-
// @droid use PascalCase for enum keys
|
|
23
|
-
enum Status {
|
|
24
|
-
PENDING = 'pending'
|
|
25
|
-
}
|
|
26
|
-
- title: "Ask a question"
|
|
27
|
-
code: |
|
|
28
|
-
> @droid Should we cache this?
|
|
29
|
-
|
|
30
|
-
> @fry Yes, add Redis caching here...
|
|
31
|
-
- title: "TODO with context"
|
|
32
|
-
code: |
|
|
33
|
-
// @droid TODO: refactor to async/await
|
|
34
|
-
// The callback pattern is unwieldy
|
|
35
|
-
function fetchData(callback) {
|
|
36
|
-
api.get('/data', callback);
|
|
37
|
-
}
|
|
38
|
-
- title: "Code review note"
|
|
39
|
-
code: |
|
|
40
|
-
// @droid potential memory leak here
|
|
41
|
-
// Clear interval on unmount?
|
|
42
|
-
useEffect(() => {
|
|
43
|
-
setInterval(poll, 1000);
|
|
44
|
-
}, []);
|
|
45
|
-
- title: "Multi-line discussion"
|
|
46
|
-
code: |
|
|
47
|
-
> @droid Best approach for pagination?
|
|
48
|
-
> We have ~10k records.
|
|
49
|
-
|
|
50
|
-
> @fry Use cursor-based, limit 50.
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
name: project
|
|
2
|
-
description: "Manage project context files for persistent AI memory across sessions. Load project context before working (/project {name}), update with new learnings (/project update), or create new projects (/project create). Use when working on multi-session features, refactors, or any work that benefits from accumulated context."
|
|
3
|
-
version: 0.1.2
|
|
4
|
-
status: beta
|
|
5
|
-
dependencies: []
|
|
6
|
-
provides_output: false
|
|
7
|
-
config_schema:
|
|
8
|
-
projects_dir:
|
|
9
|
-
type: string
|
|
10
|
-
description: Path to projects directory (default varies by AI tool)
|
|
11
|
-
preset:
|
|
12
|
-
type: select
|
|
13
|
-
description: Output format for templates
|
|
14
|
-
default: "markdown"
|
|
15
|
-
options:
|
|
16
|
-
- markdown
|
|
17
|
-
- obsidian
|
|
18
|
-
examples:
|
|
19
|
-
- title: "Load project by name"
|
|
20
|
-
code: |
|
|
21
|
-
/project transaction templates
|
|
22
|
-
# Fuzzy matches "transaction-templates" folder
|
|
23
|
-
- title: "Update after work session"
|
|
24
|
-
code: |
|
|
25
|
-
/project update
|
|
26
|
-
# Analyzes conversation, proposes PROJECT.md updates
|
|
27
|
-
- title: "Create new project"
|
|
28
|
-
code: |
|
|
29
|
-
/project create billing-refactor
|
|
30
|
-
# Creates folder with PROJECT.md and CHANGELOG.md
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
name: brain
|
|
2
|
-
description: "Your scratchpad (or brain) - a collaborative space for planning and research. Triggers on phrases like 'let's use our brain', 'open a scratchpad', or 'plan this out' to capture AI output into a persistent doc. Create docs with /brain plan (or /scratchpad plan), /brain research, or /brain review. Use @mentions for async discussion. Docs persist across sessions."
|
|
3
|
-
version: 0.2.0
|
|
4
|
-
status: beta
|
|
5
|
-
dependencies: []
|
|
6
|
-
provides_output: false
|
|
7
|
-
command_aliases:
|
|
8
|
-
scratchpad: brain
|
|
9
|
-
config_schema:
|
|
10
|
-
brain_dir:
|
|
11
|
-
type: string
|
|
12
|
-
description: Directory for brain docs (default varies by AI tool)
|
|
13
|
-
inbox_folder:
|
|
14
|
-
type: string
|
|
15
|
-
description: Subfolder for new docs (empty = flat structure)
|
|
16
|
-
default: ""
|
|
17
|
-
examples:
|
|
18
|
-
- title: "Start a planning doc"
|
|
19
|
-
code: |
|
|
20
|
-
/brain plan auth refactor
|
|
21
|
-
# Creates planning doc, becomes active for session
|
|
22
|
-
- title: "Quick note capture"
|
|
23
|
-
code: |
|
|
24
|
-
/brain note Remember to check rate limits on the API
|
|
25
|
-
# Fire-and-forget to inbox
|
|
26
|
-
- title: "Check for comments"
|
|
27
|
-
code: |
|
|
28
|
-
/brain check
|
|
29
|
-
# Find and address @mentions in active doc
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
name: brain-obsidian
|
|
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."
|
|
3
|
-
version: 0.1.0
|
|
4
|
-
status: beta
|
|
5
|
-
dependencies:
|
|
6
|
-
- brain
|
|
7
|
-
# Optional: project skill enables linking features
|
|
8
|
-
provides_output: false
|
|
9
|
-
config_schema:
|
|
10
|
-
inbox_folder:
|
|
11
|
-
type: string
|
|
12
|
-
description: Folder for new brain docs
|
|
13
|
-
default: "0-Inbox"
|
|
14
|
-
archive_folder:
|
|
15
|
-
type: string
|
|
16
|
-
description: Folder for archived/stale docs
|
|
17
|
-
default: "4-Archives"
|
|
18
|
-
para_structure:
|
|
19
|
-
type: boolean
|
|
20
|
-
description: Enable full PARA folder organization
|
|
21
|
-
default: false
|
|
22
|
-
projects_folder:
|
|
23
|
-
type: string
|
|
24
|
-
description: Folder for active project docs (when para_structure is true)
|
|
25
|
-
default: "1-Projects"
|
|
26
|
-
areas_folder:
|
|
27
|
-
type: string
|
|
28
|
-
description: Folder for area docs (when para_structure is true)
|
|
29
|
-
default: "1-Areas"
|
|
30
|
-
resources_folder:
|
|
31
|
-
type: string
|
|
32
|
-
description: Folder for reference material (when para_structure is true)
|
|
33
|
-
default: "3-Resources"
|
|
34
|
-
examples:
|
|
35
|
-
- title: "Create planning doc in vault"
|
|
36
|
-
code: |
|
|
37
|
-
/brain plan auth refactor
|
|
38
|
-
# Creates in vault's 0-Inbox/ with YAML frontmatter
|
|
39
|
-
- title: "Link to project"
|
|
40
|
-
code: |
|
|
41
|
-
/brain plan feature-x
|
|
42
|
-
# Frontmatter includes project: "[[feature-x]]"
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
name: coach
|
|
2
|
-
description: "Learning-mode AI assistance - AI as coach, not crutch. Triggers on phrases like 'help me think through', 'coach me on', 'I want to learn how to', or 'don't just give me the answer'. Use /coach plan for co-authored planning, /coach scaffold for structure with hints, /coach review for Socratic questions on your code."
|
|
3
|
-
version: 0.1.0
|
|
4
|
-
status: beta
|
|
5
|
-
dependencies:
|
|
6
|
-
- comments
|
|
7
|
-
provides_output: false
|
|
8
|
-
config_schema:
|
|
9
|
-
scaffold_verbosity:
|
|
10
|
-
type: string
|
|
11
|
-
description: "How detailed scaffold hints should be: minimal (signatures only), medium (hints), detailed (pseudocode)"
|
|
12
|
-
default: "medium"
|
|
13
|
-
examples:
|
|
14
|
-
- title: "Start co-authored planning"
|
|
15
|
-
code: |
|
|
16
|
-
/coach plan add user authentication
|
|
17
|
-
# AI asks questions, proposes structure, offers to create brain doc
|
|
18
|
-
- title: "Get scaffold for implementation"
|
|
19
|
-
code: |
|
|
20
|
-
/coach scaffold
|
|
21
|
-
# AI generates types/signatures with hint comments, you fill in logic
|
|
22
|
-
- title: "Review your implementation"
|
|
23
|
-
code: |
|
|
24
|
-
/coach review src/auth/login.ts
|
|
25
|
-
# AI adds inline // @you questions via comments skill
|
|
@@ -1,14 +0,0 @@
|
|
|
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
|
|
@@ -1,14 +0,0 @@
|
|
|
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
|
|
@@ -1,14 +0,0 @@
|
|
|
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
|
|
@@ -1,13 +0,0 @@
|
|
|
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
|
|
@@ -1,19 +0,0 @@
|
|
|
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
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
name: comments
|
|
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.3
|
|
4
|
-
status: beta
|
|
5
|
-
dependencies: []
|
|
6
|
-
provides_output: false
|
|
7
|
-
config_schema:
|
|
8
|
-
user_mention:
|
|
9
|
-
type: string
|
|
10
|
-
description: Override the global user mention for this skill
|
|
11
|
-
ai_mentions:
|
|
12
|
-
type: string
|
|
13
|
-
description: Additional AI mentions to recognize (comma-separated, e.g., "@claude,@ai")
|
|
14
|
-
default: ""
|
|
15
|
-
preserve_comments:
|
|
16
|
-
type: boolean
|
|
17
|
-
description: Keep original comments after addressing (vs removing them)
|
|
18
|
-
default: true
|
|
19
|
-
examples:
|
|
20
|
-
- title: "Action request"
|
|
21
|
-
code: |
|
|
22
|
-
// @droid use PascalCase for enum keys
|
|
23
|
-
enum Status {
|
|
24
|
-
PENDING = 'pending'
|
|
25
|
-
}
|
|
26
|
-
- title: "Ask a question"
|
|
27
|
-
code: |
|
|
28
|
-
> @droid Should we cache this?
|
|
29
|
-
|
|
30
|
-
> @fry Yes, add Redis caching here...
|
|
31
|
-
- title: "TODO with context"
|
|
32
|
-
code: |
|
|
33
|
-
// @droid TODO: refactor to async/await
|
|
34
|
-
// The callback pattern is unwieldy
|
|
35
|
-
function fetchData(callback) {
|
|
36
|
-
api.get('/data', callback);
|
|
37
|
-
}
|
|
38
|
-
- title: "Code review note"
|
|
39
|
-
code: |
|
|
40
|
-
// @droid potential memory leak here
|
|
41
|
-
// Clear interval on unmount?
|
|
42
|
-
useEffect(() => {
|
|
43
|
-
setInterval(poll, 1000);
|
|
44
|
-
}, []);
|
|
45
|
-
- title: "Multi-line discussion"
|
|
46
|
-
code: |
|
|
47
|
-
> @droid Best approach for pagination?
|
|
48
|
-
> We have ~10k records.
|
|
49
|
-
|
|
50
|
-
> @fry Use cursor-based, limit 50.
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
name: project
|
|
2
|
-
description: "Manage project context files for persistent AI memory across sessions. Load project context before working (/project {name}), update with new learnings (/project update), or create new projects (/project create). Use when working on multi-session features, refactors, or any work that benefits from accumulated context."
|
|
3
|
-
version: 0.1.2
|
|
4
|
-
status: beta
|
|
5
|
-
dependencies: []
|
|
6
|
-
provides_output: false
|
|
7
|
-
config_schema:
|
|
8
|
-
projects_dir:
|
|
9
|
-
type: string
|
|
10
|
-
description: Path to projects directory (default varies by AI tool)
|
|
11
|
-
preset:
|
|
12
|
-
type: select
|
|
13
|
-
description: Output format for templates
|
|
14
|
-
default: "markdown"
|
|
15
|
-
options:
|
|
16
|
-
- markdown
|
|
17
|
-
- obsidian
|
|
18
|
-
examples:
|
|
19
|
-
- title: "Load project by name"
|
|
20
|
-
code: |
|
|
21
|
-
/project transaction templates
|
|
22
|
-
# Fuzzy matches "transaction-templates" folder
|
|
23
|
-
- title: "Update after work session"
|
|
24
|
-
code: |
|
|
25
|
-
/project update
|
|
26
|
-
# Analyzes conversation, proposes PROJECT.md updates
|
|
27
|
-
- title: "Create new project"
|
|
28
|
-
code: |
|
|
29
|
-
/project create billing-refactor
|
|
30
|
-
# Creates folder with PROJECT.md and CHANGELOG.md
|