@orderful/droid 0.33.1 → 0.34.1

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 (79) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/dist/bin/droid.js +689 -102
  3. package/dist/commands/config.d.ts.map +1 -1
  4. package/dist/commands/repos.d.ts +21 -0
  5. package/dist/commands/repos.d.ts.map +1 -0
  6. package/dist/commands/tui/components/SettingsDetails.d.ts +2 -1
  7. package/dist/commands/tui/components/SettingsDetails.d.ts.map +1 -1
  8. package/dist/commands/tui/types.d.ts +1 -1
  9. package/dist/commands/tui/types.d.ts.map +1 -1
  10. package/dist/commands/tui/views/ReposManagementScreen.d.ts +6 -0
  11. package/dist/commands/tui/views/ReposManagementScreen.d.ts.map +1 -0
  12. package/dist/commands/tui/views/ReposViewerScreen.d.ts +5 -0
  13. package/dist/commands/tui/views/ReposViewerScreen.d.ts.map +1 -0
  14. package/dist/commands/tui.d.ts.map +1 -1
  15. package/dist/index.js +156 -26
  16. package/dist/lib/config.d.ts +34 -1
  17. package/dist/lib/config.d.ts.map +1 -1
  18. package/dist/lib/types.d.ts +10 -1
  19. package/dist/lib/types.d.ts.map +1 -1
  20. package/dist/tools/brain/skills/brain/SKILL.md +2 -2
  21. package/dist/tools/brain/skills/brain/references/workflows.md +10 -10
  22. package/dist/tools/coach/skills/coach/SKILL.md +6 -6
  23. package/dist/tools/codex/skills/codex/SKILL.md +5 -5
  24. package/dist/tools/codex/skills/codex/references/creating.md +2 -2
  25. package/dist/tools/codex/skills/codex/references/decisions.md +2 -2
  26. package/dist/tools/codex/skills/codex/references/loading.md +1 -1
  27. package/dist/tools/codex/skills/codex/references/topics.md +2 -2
  28. package/dist/tools/codex/skills/codex/scripts/git-finish-write.d.ts +1 -1
  29. package/dist/tools/codex/skills/codex/scripts/git-finish-write.ts +2 -2
  30. package/dist/tools/codex/skills/codex/scripts/git-preamble.d.ts +1 -1
  31. package/dist/tools/codex/skills/codex/scripts/git-preamble.ts +3 -3
  32. package/dist/tools/codex/skills/codex/scripts/git-start-write.d.ts +1 -1
  33. package/dist/tools/codex/skills/codex/scripts/git-start-write.ts +2 -2
  34. package/dist/tools/comments/skills/comments/SKILL.md +9 -9
  35. package/dist/tools/plan/skills/plan/SKILL.md +2 -2
  36. package/dist/tools/plan/skills/plan/references/workflows.md +2 -2
  37. package/dist/tools/project/skills/project/SKILL.md +1 -1
  38. package/dist/tools/project/skills/project/references/creating.md +2 -2
  39. package/dist/tools/project/skills/project/references/loading.md +1 -1
  40. package/dist/tools/tech-design/skills/tech-design/SKILL.md +2 -2
  41. package/dist/tools/tech-design/skills/tech-design/references/publish.md +3 -3
  42. package/dist/tools/tech-design/skills/tech-design/references/start.md +29 -3
  43. package/dist/tools/tech-design/skills/tech-design/references/think.md +1 -1
  44. package/dist/tools/wrapup/skills/wrapup/references/subagent-prompts.md +3 -3
  45. package/package.json +1 -1
  46. package/src/bin/droid.ts +39 -0
  47. package/src/commands/config.ts +14 -1
  48. package/src/commands/repos.ts +185 -0
  49. package/src/commands/tui/components/SettingsDetails.tsx +42 -13
  50. package/src/commands/tui/types.ts +1 -1
  51. package/src/commands/tui/views/ReposManagementScreen.tsx +291 -0
  52. package/src/commands/tui/views/ReposViewerScreen.tsx +49 -0
  53. package/src/commands/tui/views/SkillConfigScreen.tsx +2 -2
  54. package/src/commands/tui.tsx +51 -4
  55. package/src/lib/config.test.ts +228 -1
  56. package/src/lib/config.ts +205 -4
  57. package/src/lib/types.ts +13 -1
  58. package/src/tools/brain/skills/brain/SKILL.md +2 -2
  59. package/src/tools/brain/skills/brain/references/workflows.md +10 -10
  60. package/src/tools/coach/skills/coach/SKILL.md +6 -6
  61. package/src/tools/codex/skills/codex/SKILL.md +5 -5
  62. package/src/tools/codex/skills/codex/references/creating.md +2 -2
  63. package/src/tools/codex/skills/codex/references/decisions.md +2 -2
  64. package/src/tools/codex/skills/codex/references/loading.md +1 -1
  65. package/src/tools/codex/skills/codex/references/topics.md +2 -2
  66. package/src/tools/codex/skills/codex/scripts/git-finish-write.ts +2 -2
  67. package/src/tools/codex/skills/codex/scripts/git-preamble.ts +3 -3
  68. package/src/tools/codex/skills/codex/scripts/git-start-write.ts +2 -2
  69. package/src/tools/comments/skills/comments/SKILL.md +9 -9
  70. package/src/tools/plan/skills/plan/SKILL.md +2 -2
  71. package/src/tools/plan/skills/plan/references/workflows.md +2 -2
  72. package/src/tools/project/skills/project/SKILL.md +1 -1
  73. package/src/tools/project/skills/project/references/creating.md +2 -2
  74. package/src/tools/project/skills/project/references/loading.md +1 -1
  75. package/src/tools/tech-design/skills/tech-design/SKILL.md +2 -2
  76. package/src/tools/tech-design/skills/tech-design/references/publish.md +3 -3
  77. package/src/tools/tech-design/skills/tech-design/references/start.md +29 -3
  78. package/src/tools/tech-design/skills/tech-design/references/think.md +1 -1
  79. package/src/tools/wrapup/skills/wrapup/references/subagent-prompts.md +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # @orderful/droid
2
2
 
3
+ ## 0.34.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#207](https://github.com/Orderful/droid/pull/207) [`1bb9dab`](https://github.com/Orderful/droid/commit/1bb9dab3079c32ecfa6069c074cbc6b076273f68) Thanks [@frytyler](https://github.com/frytyler)! - Fix config migration and TUI config persistence. Migration now properly re-runs if incomplete, and TUI tool config updates now persist to the consolidated config location instead of old override files.
8
+
9
+ ## 0.34.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [#204](https://github.com/Orderful/droid/pull/204) [`c57574e`](https://github.com/Orderful/droid/commit/c57574ea525c7916dd7a461289d0d11ee55c5793) Thanks [@frytyler](https://github.com/frytyler)! - feat: repos registry and config consolidation
14
+
15
+ **Repos registry:**
16
+ - New `repos` section in config for registering known repositories by name
17
+ - New `droid repos` command for managing repo registry (list/add/remove)
18
+ - Tools can reference repos via `droid config --get repos` without hardcoding paths
19
+
20
+ **Config consolidation:**
21
+ - Tool configs migrated to `config.tools.{name}` (old files kept as backup)
22
+ - `droid config --get tools.<tool>.<key>` for unified access
23
+ - Old override files will be removed in follow-up PR once stable
24
+
3
25
  ## 0.33.1
4
26
 
5
27
  ### Patch Changes