@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.
Files changed (45) hide show
  1. package/.claude/CLAUDE.md +1 -0
  2. package/CHANGELOG.md +45 -0
  3. package/dist/lib/skills.js +1 -1
  4. package/dist/lib/skills.js.map +1 -1
  5. package/dist/lib/types.d.ts +1 -0
  6. package/dist/lib/types.d.ts.map +1 -1
  7. package/dist/skills/brain/SKILL.md +5 -7
  8. package/dist/skills/brain/SKILL.yaml +4 -6
  9. package/dist/skills/brain/commands/brain.md +3 -1
  10. package/dist/skills/brain/commands/scratchpad.md +52 -0
  11. package/dist/skills/brain-obsidian/SKILL.md +1 -4
  12. package/dist/skills/brain-obsidian/SKILL.yaml +1 -4
  13. package/dist/skills/coach/SKILL.md +212 -0
  14. package/dist/skills/coach/SKILL.yaml +25 -0
  15. package/dist/skills/coach/commands/README.md +9 -0
  16. package/dist/skills/coach/commands/coach.md +71 -0
  17. package/dist/skills/code-review/SKILL.md +1 -4
  18. package/dist/skills/code-review/SKILL.yaml +1 -4
  19. package/dist/skills/comments/SKILL.md +1 -4
  20. package/dist/skills/comments/SKILL.yaml +1 -4
  21. package/dist/skills/project/SKILL.md +7 -9
  22. package/dist/skills/project/SKILL.yaml +2 -7
  23. package/dist/skills/project/commands/project.md +3 -2
  24. package/dist/skills/project/references/loading.md +5 -3
  25. package/package.json +1 -1
  26. package/src/lib/skills.ts +1 -1
  27. package/src/lib/types.ts +3 -0
  28. package/src/skills/brain/SKILL.md +5 -7
  29. package/src/skills/brain/SKILL.yaml +4 -6
  30. package/src/skills/brain/commands/brain.md +3 -1
  31. package/src/skills/brain/commands/scratchpad.md +52 -0
  32. package/src/skills/brain-obsidian/SKILL.md +1 -4
  33. package/src/skills/brain-obsidian/SKILL.yaml +1 -4
  34. package/src/skills/coach/SKILL.md +212 -0
  35. package/src/skills/coach/SKILL.yaml +25 -0
  36. package/src/skills/coach/commands/README.md +9 -0
  37. package/src/skills/coach/commands/coach.md +71 -0
  38. package/src/skills/code-review/SKILL.md +1 -4
  39. package/src/skills/code-review/SKILL.yaml +1 -4
  40. package/src/skills/comments/SKILL.md +1 -4
  41. package/src/skills/comments/SKILL.yaml +1 -4
  42. package/src/skills/project/SKILL.md +7 -9
  43. package/src/skills/project/SKILL.yaml +2 -7
  44. package/src/skills/project/commands/project.md +3 -2
  45. 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:** Before using any default paths, ALWAYS read `~/.droid/skills/project/overrides.yaml` first. If `projects_dir` is configured there, use that path. Only fall back to defaults if the file doesn't exist or lacks a `projects_dir` setting.
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 not configured):
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
- Manage project context files for persistent AI memory across sessions.
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.** Use configured values if present, only fall back to defaults if missing.
32
+ **ALWAYS read `~/.droid/skills/project/overrides.yaml` first.**
33
33
 
34
- - `projects_dir` - Where projects live (default varies by AI tool)
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. **Read config first**
9
+ 1. **Determine projects directory (pick ONE)**
10
10
  - Read `~/.droid/skills/project/overrides.yaml`
11
- - Use `projects_dir` if configured, otherwise use default for current AI tool
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 `projects_dir`
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