@orderful/droid 0.8.0 → 0.10.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 +1 -0
- package/CHANGELOG.md +45 -0
- package/dist/lib/skills.js +1 -1
- 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 +5 -7
- package/dist/skills/brain/SKILL.yaml +4 -6
- package/dist/skills/brain/commands/brain.md +3 -1
- package/dist/skills/brain/commands/scratchpad.md +52 -0
- package/dist/skills/brain-obsidian/SKILL.md +1 -4
- package/dist/skills/brain-obsidian/SKILL.yaml +1 -4
- package/dist/skills/coach/SKILL.md +212 -0
- package/dist/skills/coach/SKILL.yaml +25 -0
- package/dist/skills/coach/commands/README.md +9 -0
- package/dist/skills/coach/commands/coach.md +71 -0
- package/dist/skills/code-review/SKILL.md +1 -4
- package/dist/skills/code-review/SKILL.yaml +1 -4
- package/dist/skills/comments/SKILL.md +1 -4
- package/dist/skills/comments/SKILL.yaml +1 -4
- package/dist/skills/project/SKILL.md +7 -9
- package/dist/skills/project/SKILL.yaml +2 -7
- package/dist/skills/project/commands/project.md +3 -2
- package/dist/skills/project/references/loading.md +5 -3
- package/package.json +1 -1
- package/src/lib/skills.ts +1 -1
- package/src/lib/types.ts +3 -0
- package/src/skills/brain/SKILL.md +5 -7
- package/src/skills/brain/SKILL.yaml +4 -6
- package/src/skills/brain/commands/brain.md +3 -1
- package/src/skills/brain/commands/scratchpad.md +52 -0
- package/src/skills/brain-obsidian/SKILL.md +1 -4
- package/src/skills/brain-obsidian/SKILL.yaml +1 -4
- package/src/skills/coach/SKILL.md +212 -0
- package/src/skills/coach/SKILL.yaml +25 -0
- package/src/skills/coach/commands/README.md +9 -0
- package/src/skills/coach/commands/coach.md +71 -0
- package/src/skills/code-review/SKILL.md +1 -4
- package/src/skills/code-review/SKILL.yaml +1 -4
- package/src/skills/comments/SKILL.md +1 -4
- package/src/skills/comments/SKILL.yaml +1 -4
- package/src/skills/project/SKILL.md +7 -9
- package/src/skills/project/SKILL.yaml +2 -7
- package/src/skills/project/commands/project.md +3 -2
- package/src/skills/project/references/loading.md +5 -3
|
@@ -1,11 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: project
|
|
3
|
-
description:
|
|
4
|
-
Manage project context files for persistent AI memory across sessions.
|
|
5
|
-
Load project context before working (/project {name}), update with
|
|
6
|
-
new learnings (/project update), or create new projects (/project create).
|
|
7
|
-
Use when working on multi-session features, refactors, or any work that
|
|
8
|
-
benefits from accumulated context.
|
|
3
|
+
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."
|
|
9
4
|
globs:
|
|
10
5
|
- "**/PROJECT.md"
|
|
11
6
|
alwaysApply: false
|
|
@@ -32,14 +27,17 @@ Chat history disappears. Projects persist.
|
|
|
32
27
|
|
|
33
28
|
## Configuration
|
|
34
29
|
|
|
35
|
-
**IMPORTANT:**
|
|
30
|
+
**IMPORTANT:** Read `~/.droid/skills/project/overrides.yaml` first to determine the projects directory.
|
|
31
|
+
|
|
32
|
+
- If `projects_dir` is configured → use **ONLY** that path (do NOT also search defaults)
|
|
33
|
+
- If not configured → use the default for current AI tool
|
|
36
34
|
|
|
37
35
|
| Setting | Default | Description |
|
|
38
36
|
|---------|---------|-------------|
|
|
39
|
-
| `projects_dir` | (see below) | Where projects are stored |
|
|
37
|
+
| `projects_dir` | (see below) | Where projects are stored (use ONE location only) |
|
|
40
38
|
| `preset` | `markdown` | Output format: `markdown` or `obsidian` |
|
|
41
39
|
|
|
42
|
-
Default `projects_dir` by AI tool (only if
|
|
40
|
+
Default `projects_dir` by AI tool (only if overrides.yaml is missing or lacks `projects_dir`):
|
|
43
41
|
- **claude-code**: `~/.claude/projects`
|
|
44
42
|
- **opencode**: `~/.config/opencode/projects`
|
|
45
43
|
|
|
@@ -1,11 +1,6 @@
|
|
|
1
1
|
name: project
|
|
2
|
-
description:
|
|
3
|
-
|
|
4
|
-
Load project context before working (/project {name}), update with
|
|
5
|
-
new learnings (/project update), or create new projects (/project create).
|
|
6
|
-
Use when working on multi-session features, refactors, or any work that
|
|
7
|
-
benefits from accumulated context.
|
|
8
|
-
version: 0.1.1
|
|
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
|
|
9
4
|
status: beta
|
|
10
5
|
dependencies: []
|
|
11
6
|
provides_output: false
|
|
@@ -29,9 +29,10 @@ $ARGUMENTS
|
|
|
29
29
|
|
|
30
30
|
## Configuration
|
|
31
31
|
|
|
32
|
-
**ALWAYS read `~/.droid/skills/project/overrides.yaml` first.**
|
|
32
|
+
**ALWAYS read `~/.droid/skills/project/overrides.yaml` first.**
|
|
33
33
|
|
|
34
|
-
- `projects_dir`
|
|
34
|
+
- If `projects_dir` is set → use **ONLY** that path (do NOT also search defaults)
|
|
35
|
+
- If not configured → use the default for current AI tool
|
|
35
36
|
- `preset` - Template format: `markdown` or `obsidian`
|
|
36
37
|
|
|
37
38
|
## Behavior
|
|
@@ -6,12 +6,14 @@
|
|
|
6
6
|
|
|
7
7
|
## Procedure
|
|
8
8
|
|
|
9
|
-
1. **
|
|
9
|
+
1. **Determine projects directory (pick ONE)**
|
|
10
10
|
- Read `~/.droid/skills/project/overrides.yaml`
|
|
11
|
-
-
|
|
11
|
+
- If `projects_dir` is set → use ONLY that path, do NOT search defaults
|
|
12
|
+
- If not configured → use default for current AI tool (`~/.claude/projects` or `~/.config/opencode/projects`)
|
|
12
13
|
|
|
13
|
-
2. **List projects** in configured
|
|
14
|
+
2. **List projects** in the single configured directory
|
|
14
15
|
- Each subfolder with a `PROJECT.md` is a project
|
|
16
|
+
- Do NOT search multiple locations
|
|
15
17
|
|
|
16
18
|
3. **If no name provided:**
|
|
17
19
|
- Use AskUserQuestion to present available projects
|