codeforge-dev 1.12.0 → 1.14.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 (226) hide show
  1. package/.devcontainer/CHANGELOG.md +175 -2
  2. package/.devcontainer/CLAUDE.md +61 -268
  3. package/.devcontainer/README.md +17 -9
  4. package/.devcontainer/config/defaults/ccstatusline-settings.json +147 -0
  5. package/.devcontainer/config/defaults/main-system-prompt.md +6 -1
  6. package/.devcontainer/config/defaults/rules/spec-workflow.md +1 -55
  7. package/.devcontainer/config/defaults/rules/workspace-scope.md +13 -4
  8. package/.devcontainer/config/defaults/settings.json +5 -3
  9. package/.devcontainer/config/file-manifest.json +14 -0
  10. package/.devcontainer/devcontainer.json +32 -7
  11. package/.devcontainer/docs/optional-features.md +0 -65
  12. package/.devcontainer/docs/plugins.md +38 -23
  13. package/.devcontainer/features/ast-grep/devcontainer-feature.json +0 -1
  14. package/.devcontainer/features/biome/install.sh +13 -0
  15. package/.devcontainer/features/ccburn/devcontainer-feature.json +0 -1
  16. package/.devcontainer/features/ccms/devcontainer-feature.json +0 -1
  17. package/.devcontainer/features/ccms/install.sh +1 -1
  18. package/.devcontainer/features/ccstatusline/devcontainer-feature.json +0 -1
  19. package/.devcontainer/features/ccstatusline/install.sh +17 -115
  20. package/.devcontainer/features/ccusage/devcontainer-feature.json +0 -1
  21. package/.devcontainer/features/chromaterm/README.md +42 -0
  22. package/.devcontainer/features/chromaterm/chromaterm.yml +35 -0
  23. package/.devcontainer/features/chromaterm/devcontainer-feature.json +22 -0
  24. package/.devcontainer/features/chromaterm/install.sh +113 -0
  25. package/.devcontainer/features/claude-monitor/devcontainer-feature.json +0 -1
  26. package/.devcontainer/features/claude-session-dashboard/README.md +40 -0
  27. package/.devcontainer/features/claude-session-dashboard/devcontainer-feature.json +34 -0
  28. package/.devcontainer/features/claude-session-dashboard/install.sh +172 -0
  29. package/.devcontainer/features/kitty-terminfo/README.md +32 -0
  30. package/.devcontainer/features/kitty-terminfo/devcontainer-feature.json +13 -0
  31. package/.devcontainer/features/kitty-terminfo/install.sh +72 -0
  32. package/.devcontainer/features/lsp-servers/devcontainer-feature.json +0 -1
  33. package/.devcontainer/features/mcp-qdrant/devcontainer-feature.json +0 -1
  34. package/.devcontainer/features/shellcheck/install.sh +6 -2
  35. package/.devcontainer/features/tree-sitter/devcontainer-feature.json +0 -1
  36. package/.devcontainer/plugins/devs-marketplace/.claude-plugin/marketplace.json +48 -59
  37. package/.devcontainer/plugins/devs-marketplace/plugins/agent-system/.claude-plugin/plugin.json +7 -0
  38. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → agent-system}/AGENT-REDIRECTION.md +7 -12
  39. package/.devcontainer/plugins/devs-marketplace/plugins/agent-system/README.md +197 -0
  40. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → agent-system}/REVIEW-RUBRIC.md +1 -1
  41. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → agent-system}/agents/architect.md +3 -1
  42. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → agent-system}/agents/bash-exec.md +3 -0
  43. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → agent-system}/agents/claude-guide.md +5 -2
  44. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → agent-system}/agents/debug-logs.md +7 -2
  45. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → agent-system}/agents/dependency-analyst.md +6 -2
  46. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → agent-system}/agents/doc-writer.md +4 -1
  47. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → agent-system}/agents/explorer.md +4 -2
  48. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → agent-system}/agents/generalist.md +10 -2
  49. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → agent-system}/agents/git-archaeologist.md +5 -2
  50. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → agent-system}/agents/migrator.md +4 -1
  51. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → agent-system}/agents/perf-profiler.md +4 -1
  52. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → agent-system}/agents/refactorer.md +5 -1
  53. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → agent-system}/agents/researcher.md +6 -2
  54. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → agent-system}/agents/security-auditor.md +5 -2
  55. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → agent-system}/agents/spec-writer.md +3 -1
  56. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → agent-system}/agents/statusline-config.md +4 -1
  57. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → agent-system}/agents/test-writer.md +4 -1
  58. package/.devcontainer/plugins/devs-marketplace/plugins/agent-system/hooks/hooks.json +51 -0
  59. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → agent-system}/scripts/guard-readonly-bash.py +2 -2
  60. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → agent-system}/scripts/inject-cwd.py +7 -4
  61. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → agent-system}/scripts/redirect-builtin-agents.py +17 -6
  62. package/.devcontainer/plugins/devs-marketplace/plugins/agent-system/scripts/task-completed-check.py +166 -0
  63. package/.devcontainer/plugins/devs-marketplace/plugins/agent-system/scripts/teammate-idle-check.py +81 -0
  64. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → agent-system}/scripts/verify-no-regression.py +14 -10
  65. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → agent-system}/scripts/verify-tests-pass.py +2 -14
  66. package/.devcontainer/plugins/devs-marketplace/plugins/auto-code-quality/README.md +17 -31
  67. package/.devcontainer/plugins/devs-marketplace/plugins/auto-code-quality/hooks/hooks.json +5 -1
  68. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → auto-code-quality}/scripts/advisory-test-runner.py +9 -8
  69. package/.devcontainer/plugins/devs-marketplace/plugins/codeforge-lsp/README.md +28 -0
  70. package/.devcontainer/plugins/devs-marketplace/plugins/dangerous-command-blocker/README.md +28 -0
  71. package/.devcontainer/plugins/devs-marketplace/plugins/dangerous-command-blocker/scripts/block-dangerous.py +2 -2
  72. package/.devcontainer/plugins/devs-marketplace/plugins/notify-hook/README.md +28 -0
  73. package/.devcontainer/plugins/devs-marketplace/plugins/notify-hook/hooks/hooks.json +0 -1
  74. package/.devcontainer/plugins/devs-marketplace/plugins/protected-files-guard/README.md +28 -0
  75. package/.devcontainer/plugins/devs-marketplace/plugins/protected-files-guard/scripts/guard-protected-bash.py +1 -1
  76. package/.devcontainer/plugins/devs-marketplace/plugins/protected-files-guard/scripts/guard-protected.py +2 -2
  77. package/.devcontainer/plugins/devs-marketplace/plugins/session-context/.claude-plugin/plugin.json +7 -0
  78. package/.devcontainer/plugins/devs-marketplace/plugins/session-context/README.md +140 -0
  79. package/.devcontainer/plugins/devs-marketplace/plugins/session-context/hooks/hooks.json +33 -0
  80. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → session-context}/scripts/commit-reminder.py +3 -2
  81. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → session-context}/scripts/git-state-injector.py +18 -2
  82. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → session-context}/scripts/todo-harvester.py +9 -1
  83. package/.devcontainer/plugins/devs-marketplace/plugins/skill-engine/.claude-plugin/plugin.json +7 -0
  84. package/.devcontainer/plugins/devs-marketplace/plugins/skill-engine/README.md +158 -0
  85. package/.devcontainer/plugins/devs-marketplace/plugins/skill-engine/hooks/hooks.json +16 -0
  86. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/scripts/skill-suggester.py +189 -100
  87. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/api-design/SKILL.md +9 -6
  88. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/ast-grep-patterns/SKILL.md +7 -6
  89. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/claude-agent-sdk/SKILL.md +8 -8
  90. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/claude-code-headless/SKILL.md +8 -9
  91. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/debugging/SKILL.md +11 -7
  92. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/dependency-management/SKILL.md +10 -6
  93. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/docker/SKILL.md +8 -8
  94. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/docker-py/SKILL.md +9 -7
  95. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/documentation-patterns/SKILL.md +7 -6
  96. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/fastapi/SKILL.md +9 -8
  97. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/git-forensics/SKILL.md +11 -9
  98. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/migration-patterns/SKILL.md +7 -6
  99. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/performance-profiling/SKILL.md +10 -8
  100. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/pydantic-ai/SKILL.md +8 -7
  101. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/refactoring-patterns/SKILL.md +9 -8
  102. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/security-checklist/SKILL.md +9 -8
  103. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/skill-building/SKILL.md +7 -7
  104. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/sqlite/SKILL.md +9 -7
  105. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/svelte5/SKILL.md +7 -8
  106. package/.devcontainer/plugins/devs-marketplace/plugins/skill-engine/skills/team/SKILL.md +271 -0
  107. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/testing/SKILL.md +10 -7
  108. package/.devcontainer/plugins/devs-marketplace/plugins/spec-workflow/.claude-plugin/plugin.json +7 -0
  109. package/.devcontainer/plugins/devs-marketplace/plugins/spec-workflow/README.md +192 -0
  110. package/.devcontainer/plugins/devs-marketplace/plugins/spec-workflow/hooks/hooks.json +16 -0
  111. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → spec-workflow}/scripts/spec-reminder.py +3 -2
  112. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → spec-workflow}/skills/spec-build/SKILL.md +9 -6
  113. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → spec-workflow}/skills/spec-check/SKILL.md +10 -5
  114. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → spec-workflow}/skills/spec-init/SKILL.md +8 -4
  115. package/.devcontainer/plugins/devs-marketplace/plugins/spec-workflow/skills/spec-init/references/roadmap-template.md +33 -0
  116. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → spec-workflow}/skills/spec-new/SKILL.md +8 -4
  117. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → spec-workflow}/skills/spec-refine/SKILL.md +10 -7
  118. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → spec-workflow}/skills/spec-review/SKILL.md +10 -6
  119. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → spec-workflow}/skills/spec-update/SKILL.md +10 -5
  120. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → spec-workflow}/skills/specification-writing/SKILL.md +9 -9
  121. package/.devcontainer/plugins/devs-marketplace/plugins/ticket-workflow/.claude-plugin/plugin.json +1 -2
  122. package/.devcontainer/plugins/devs-marketplace/plugins/ticket-workflow/README.md +28 -0
  123. package/.devcontainer/plugins/devs-marketplace/plugins/ticket-workflow/hooks/hooks.json +16 -0
  124. package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → ticket-workflow}/scripts/ticket-linker.py +9 -1
  125. package/.devcontainer/plugins/devs-marketplace/plugins/workspace-scope-guard/README.md +104 -32
  126. package/.devcontainer/plugins/devs-marketplace/plugins/workspace-scope-guard/hooks/hooks.json +49 -3
  127. package/.devcontainer/plugins/devs-marketplace/plugins/workspace-scope-guard/scripts/guard-workspace-scope.py +269 -58
  128. package/.devcontainer/plugins/devs-marketplace/plugins/workspace-scope-guard/scripts/inject-workspace-cwd.py +44 -0
  129. package/.devcontainer/scripts/setup-aliases.sh +13 -5
  130. package/.devcontainer/scripts/setup-config.sh +1 -0
  131. package/.devcontainer/scripts/setup-projects.sh +1 -1
  132. package/README.md +5 -5
  133. package/package.json +6 -2
  134. package/setup.js +3 -2
  135. package/.devcontainer/.env +0 -33
  136. package/.devcontainer/features/README.md +0 -126
  137. package/.devcontainer/plugins/devs-marketplace/plugins/auto-formatter/.claude-plugin/plugin.json +0 -7
  138. package/.devcontainer/plugins/devs-marketplace/plugins/auto-formatter/README.md +0 -81
  139. package/.devcontainer/plugins/devs-marketplace/plugins/auto-formatter/hooks/hooks.json +0 -17
  140. package/.devcontainer/plugins/devs-marketplace/plugins/auto-formatter/scripts/__pycache__/format-on-stop.cpython-314.pyc +0 -0
  141. package/.devcontainer/plugins/devs-marketplace/plugins/auto-formatter/scripts/format-on-stop.py +0 -297
  142. package/.devcontainer/plugins/devs-marketplace/plugins/auto-linter/.claude-plugin/plugin.json +0 -7
  143. package/.devcontainer/plugins/devs-marketplace/plugins/auto-linter/README.md +0 -92
  144. package/.devcontainer/plugins/devs-marketplace/plugins/auto-linter/hooks/hooks.json +0 -17
  145. package/.devcontainer/plugins/devs-marketplace/plugins/auto-linter/scripts/__pycache__/lint-file.cpython-314.pyc +0 -0
  146. package/.devcontainer/plugins/devs-marketplace/plugins/auto-linter/scripts/lint-file.py +0 -536
  147. package/.devcontainer/plugins/devs-marketplace/plugins/code-directive/.claude-plugin/plugin.json +0 -8
  148. package/.devcontainer/plugins/devs-marketplace/plugins/code-directive/README.md +0 -250
  149. package/.devcontainer/plugins/devs-marketplace/plugins/code-directive/hooks/hooks.json +0 -112
  150. package/.devcontainer/plugins/devs-marketplace/plugins/code-directive/scripts/__pycache__/advisory-test-runner.cpython-314.pyc +0 -0
  151. package/.devcontainer/plugins/devs-marketplace/plugins/code-directive/scripts/__pycache__/collect-edited-files.cpython-314.pyc +0 -0
  152. package/.devcontainer/plugins/devs-marketplace/plugins/code-directive/scripts/__pycache__/commit-reminder.cpython-314.pyc +0 -0
  153. package/.devcontainer/plugins/devs-marketplace/plugins/code-directive/scripts/__pycache__/git-state-injector.cpython-314.pyc +0 -0
  154. package/.devcontainer/plugins/devs-marketplace/plugins/code-directive/scripts/__pycache__/guard-readonly-bash.cpython-314.pyc +0 -0
  155. package/.devcontainer/plugins/devs-marketplace/plugins/code-directive/scripts/__pycache__/redirect-builtin-agents.cpython-314.pyc +0 -0
  156. package/.devcontainer/plugins/devs-marketplace/plugins/code-directive/scripts/__pycache__/skill-suggester.cpython-314.pyc +0 -0
  157. package/.devcontainer/plugins/devs-marketplace/plugins/code-directive/scripts/__pycache__/syntax-validator.cpython-314.pyc +0 -0
  158. package/.devcontainer/plugins/devs-marketplace/plugins/code-directive/scripts/__pycache__/ticket-linker.cpython-314.pyc +0 -0
  159. package/.devcontainer/plugins/devs-marketplace/plugins/code-directive/scripts/__pycache__/todo-harvester.cpython-314.pyc +0 -0
  160. package/.devcontainer/plugins/devs-marketplace/plugins/code-directive/scripts/__pycache__/verify-no-regression.cpython-314.pyc +0 -0
  161. package/.devcontainer/plugins/devs-marketplace/plugins/code-directive/scripts/__pycache__/verify-tests-pass.cpython-314.pyc +0 -0
  162. package/.devcontainer/plugins/devs-marketplace/plugins/code-directive/scripts/collect-edited-files.py +0 -46
  163. package/.devcontainer/plugins/devs-marketplace/plugins/code-directive/scripts/syntax-validator.py +0 -146
  164. package/.devcontainer/plugins/devs-marketplace/plugins/dangerous-command-blocker/scripts/__pycache__/block-dangerous.cpython-314.pyc +0 -0
  165. package/.devcontainer/plugins/devs-marketplace/plugins/protected-files-guard/scripts/__pycache__/guard-protected.cpython-314.pyc +0 -0
  166. package/.devcontainer/plugins/devs-marketplace/plugins/ticket-workflow/.claude-plugin/system-prompt.md +0 -184
  167. package/.devcontainer/plugins/devs-marketplace/plugins/workspace-scope-guard/scripts/__pycache__/guard-workspace-scope.cpython-314.pyc +0 -0
  168. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive/.claude-plugin/commands/debug.md → agent-system/skills/debug/SKILL.md} +0 -0
  169. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/api-design/references/error-handling.md +0 -0
  170. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/api-design/references/rest-conventions.md +0 -0
  171. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/ast-grep-patterns/references/language-patterns.md +0 -0
  172. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/claude-agent-sdk/references/sdk-typescript-reference.md +0 -0
  173. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/claude-code-headless/references/cli-flags-and-output.md +0 -0
  174. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/claude-code-headless/references/sdk-and-mcp.md +0 -0
  175. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/debugging/references/error-patterns.md +0 -0
  176. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/debugging/references/log-locations.md +0 -0
  177. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/dependency-management/references/ecosystem-commands.md +0 -0
  178. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/dependency-management/references/license-compliance.md +0 -0
  179. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/docker/references/compose-services.md +0 -0
  180. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/docker/references/dockerfile-patterns.md +0 -0
  181. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/docker-py/references/container-lifecycle.md +0 -0
  182. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/docker-py/references/resources-and-security.md +0 -0
  183. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/documentation-patterns/references/api-doc-templates.md +0 -0
  184. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/documentation-patterns/references/docstring-formats.md +0 -0
  185. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/fastapi/references/middleware-and-lifespan.md +0 -0
  186. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/fastapi/references/pydantic-models.md +0 -0
  187. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/fastapi/references/routing-and-dependencies.md +0 -0
  188. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/fastapi/references/sse-and-streaming.md +0 -0
  189. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/git-forensics/references/advanced-commands.md +0 -0
  190. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/git-forensics/references/investigation-playbooks.md +0 -0
  191. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/migration-patterns/references/javascript-migrations.md +0 -0
  192. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/migration-patterns/references/python-migrations.md +0 -0
  193. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/performance-profiling/references/interpreting-results.md +0 -0
  194. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/performance-profiling/references/tool-commands.md +0 -0
  195. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/pydantic-ai/references/agents-and-tools.md +0 -0
  196. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/pydantic-ai/references/models-and-streaming.md +0 -0
  197. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/refactoring-patterns/references/safe-transformations.md +0 -0
  198. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/refactoring-patterns/references/smell-catalog.md +0 -0
  199. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/security-checklist/references/owasp-patterns.md +0 -0
  200. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/security-checklist/references/secrets-patterns.md +0 -0
  201. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/skill-building/references/cross-vendor-principles.md +0 -0
  202. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/skill-building/references/patterns-and-antipatterns.md +0 -0
  203. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/skill-building/references/skill-authoring-patterns.md +0 -0
  204. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/sqlite/references/advanced-queries.md +0 -0
  205. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/sqlite/references/javascript-patterns.md +0 -0
  206. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/sqlite/references/python-patterns.md +0 -0
  207. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/sqlite/references/schema-and-pragmas.md +0 -0
  208. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/svelte5/references/ai-sdk-svelte.md +0 -0
  209. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/svelte5/references/component-patterns.md +0 -0
  210. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/svelte5/references/layercake.md +0 -0
  211. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/svelte5/references/migration-guide.md +0 -0
  212. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/svelte5/references/runes-and-reactivity.md +0 -0
  213. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/svelte5/references/spa-and-routing.md +0 -0
  214. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/svelte5/references/svelte-dnd-action.md +0 -0
  215. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/testing/references/fastapi-testing.md +0 -0
  216. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → skill-engine}/skills/testing/references/svelte-testing.md +0 -0
  217. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → spec-workflow}/skills/spec-build/references/review-checklist.md +0 -0
  218. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → spec-workflow}/skills/spec-init/references/backlog-template.md +0 -0
  219. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → spec-workflow}/skills/spec-init/references/milestones-template.md +0 -0
  220. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → spec-workflow}/skills/spec-new/references/template.md +0 -0
  221. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → spec-workflow}/skills/specification-writing/references/criteria-patterns.md +0 -0
  222. /package/.devcontainer/plugins/devs-marketplace/plugins/{code-directive → spec-workflow}/skills/specification-writing/references/ears-templates.md +0 -0
  223. /package/.devcontainer/plugins/devs-marketplace/plugins/ticket-workflow/{.claude-plugin/commands/ticket/357/200/272create-pr.md" → skills/ticketcreate-pr/SKILL.md} +0 -0
  224. /package/.devcontainer/plugins/devs-marketplace/plugins/ticket-workflow/{.claude-plugin/commands/ticket/357/200/272new.md" → skills/ticketnew/SKILL.md} +0 -0
  225. /package/.devcontainer/plugins/devs-marketplace/plugins/ticket-workflow/{.claude-plugin/commands/ticket/357/200/272review-commit.md" → skills/ticketreview-commit/SKILL.md} +0 -0
  226. /package/.devcontainer/plugins/devs-marketplace/plugins/ticket-workflow/{.claude-plugin/commands/ticket/357/200/272work.md" → skills/ticketwork/SKILL.md} +0 -0
@@ -0,0 +1,147 @@
1
+ {
2
+ "version": 3,
3
+ "lines": [
4
+ [
5
+ {
6
+ "id": "d904cca6-ade8-41c1-a4f5-ddea30607a5e",
7
+ "type": "model",
8
+ "backgroundColor": "bgMagenta"
9
+ },
10
+ {
11
+ "id": "1",
12
+ "type": "context-length",
13
+ "color": "cyan",
14
+ "rawValue": true
15
+ },
16
+ {
17
+ "id": "db519d5a-80a7-4b44-8a9c-2c7d8c0a7176",
18
+ "type": "context-percentage-usable",
19
+ "backgroundColor": "bgRed",
20
+ "rawValue": true
21
+ },
22
+ {
23
+ "id": "5",
24
+ "type": "tokens-input",
25
+ "color": "magenta",
26
+ "rawValue": true,
27
+ "merge": "no-padding"
28
+ },
29
+ {
30
+ "id": "ac094d46-3673-4d41-84e3-dc8c5bcf639f",
31
+ "type": "tokens-output",
32
+ "backgroundColor": "bgMagenta",
33
+ "rawValue": true,
34
+ "merge": "no-padding"
35
+ },
36
+ {
37
+ "id": "2ad12147-05fd-45fb-8336-53ba2e7df56c",
38
+ "type": "tokens-cached",
39
+ "backgroundColor": "bgBrightRed",
40
+ "rawValue": true,
41
+ "merge": "no-padding"
42
+ },
43
+ {
44
+ "id": "9bacbdb4-2e01-45de-a0c0-ee6ec30fa3c2",
45
+ "type": "tokens-total",
46
+ "backgroundColor": "bgGreen",
47
+ "rawValue": true
48
+ }
49
+ ],
50
+ [
51
+ {
52
+ "id": "3",
53
+ "type": "git-branch",
54
+ "color": "brightBlack"
55
+ },
56
+ {
57
+ "id": "a529e50e-b9f3-4150-a812-937ab81545e8",
58
+ "type": "git-changes",
59
+ "backgroundColor": "bgBrightBlue"
60
+ },
61
+ {
62
+ "id": "a9eaae3f-7f91-459c-833a-fbc9f01a09ae",
63
+ "type": "git-worktree",
64
+ "backgroundColor": "bgBrightBlue"
65
+ },
66
+ {
67
+ "id": "7",
68
+ "type": "session-clock",
69
+ "color": "yellow",
70
+ "rawValue": true
71
+ },
72
+ {
73
+ "id": "a4fe7f75-2f6c-49c7-88f6-ac7381142c2c",
74
+ "type": "session-cost",
75
+ "backgroundColor": "bgBrightWhite",
76
+ "rawValue": true
77
+ },
78
+ {
79
+ "id": "90aae111-3d3f-4bb0-8336-230f322cc2e8",
80
+ "type": "block-timer",
81
+ "backgroundColor": "bgYellow",
82
+ "rawValue": true
83
+ },
84
+ {
85
+ "id": "2cdff909-8297-44a1-83f9-ad4bf024391e",
86
+ "type": "version",
87
+ "backgroundColor": "bgRed",
88
+ "rawValue": true
89
+ }
90
+ ],
91
+ [
92
+ {
93
+ "id": "cc-resume-session",
94
+ "type": "custom-command",
95
+ "commandPath": "/usr/local/bin/ccstatusline-session-resume",
96
+ "timeout": 500,
97
+ "preserveColors": false,
98
+ "maxWidth": 50,
99
+ "color": "cyan",
100
+ "backgroundColor": "bgBrightBlack"
101
+ },
102
+ {
103
+ "id": "cc-cwd",
104
+ "type": "custom-command",
105
+ "commandPath": "/usr/local/bin/ccstatusline-cwd",
106
+ "timeout": 500,
107
+ "preserveColors": false,
108
+ "maxWidth": 40,
109
+ "color": "brightWhite",
110
+ "backgroundColor": "bgBrightBlack"
111
+ },
112
+ {
113
+ "id": "ccburn-compact",
114
+ "type": "custom-command",
115
+ "commandPath": "/usr/local/bin/ccburn-statusline",
116
+ "timeout": 8000,
117
+ "preserveColors": true,
118
+ "maxWidth": 80,
119
+ "color": "green",
120
+ "backgroundColor": "bgBlack"
121
+ }
122
+ ]
123
+ ],
124
+ "flexMode": "full",
125
+ "compactThreshold": 60,
126
+ "colorLevel": 2,
127
+ "inheritSeparatorColors": false,
128
+ "globalBold": false,
129
+ "powerline": {
130
+ "enabled": true,
131
+ "separators": [
132
+ ""
133
+ ],
134
+ "separatorInvertBackground": [
135
+ false
136
+ ],
137
+ "startCaps": [
138
+ ""
139
+ ],
140
+ "endCaps": [
141
+ ""
142
+ ],
143
+ "autoAlign": false,
144
+ "theme": "monokai"
145
+ },
146
+ "defaultPadding": " "
147
+ }
@@ -92,7 +92,12 @@ Agent Teams:
92
92
  - REQUIRE custom agent types for team members. Assign the specialist whose domain matches the work: researcher for investigation, test-writer for tests, refactorer for transformations, etc.
93
93
  - general-purpose/generalist is a LAST RESORT for team members — only when no specialist's domain applies.
94
94
  - Limit to 3-5 active teammates based on complexity.
95
- - Always clean up teams when work completes.
95
+ - Always clean up teams when work completes. One team per session — `TeamDelete` before starting a new one.
96
+ - File ownership: one agent per file to avoid merge conflicts. Agents with `isolation: worktree` (test-writer, refactorer, doc-writer, migrator) get automatic file isolation.
97
+ - Task sizing: aim for 5-6 self-contained tasks per teammate, each producing a clear deliverable.
98
+ - Wait for teammates: do not implement work assigned to teammates. Monitor via `TaskList`, steer via `SendMessage`.
99
+ - Quality gate hooks: TeammateIdle (checks incomplete tasks) and TaskCompleted (runs test suite) are wired in the agent-system plugin.
100
+ - Plan approval: with `CLAUDE_CODE_PLAN_MODE_REQUIRED: "true"`, teammates run in plan mode until you approve their plan via `plan_approval_response`.
96
101
 
97
102
  Team composition examples:
98
103
  - Feature build: researcher + test-writer + doc-writer
@@ -45,58 +45,4 @@ Acceptance criteria use three states during implementation:
45
45
  Phase 4 upgrades `[~]` to `[x]` after verification. `/spec-update`
46
46
  treats any remaining `[~]` as `[ ]` if they were never verified.
47
47
 
48
- ## Directory Convention
49
-
50
- `.specs/` at the project root. Domain-organized:
51
-
52
- ```
53
- .specs/
54
- ├── MILESTONES.md # Milestone tracker linking to feature specs
55
- ├── BACKLOG.md # Deferred items not yet scheduled
56
- ├── auth/ # Domain folder
57
- │ ├── login-flow.md # Feature spec
58
- │ └── oauth-providers.md # Feature spec
59
- ├── search/ # Domain folder
60
- │ └── full-text-search.md
61
- └── onboarding/
62
- └── user-signup.md
63
- ```
64
-
65
- All specs live in domain subfolders. Only `MILESTONES.md` and `BACKLOG.md`
66
- reside at the `.specs/` root.
67
-
68
- ## Standard Template
69
-
70
- Every spec follows this structure:
71
-
72
- ```
73
- # Feature: [Name]
74
- **Domain:** [domain-name]
75
- **Status:** implemented | partial | planned
76
- **Last Updated:** YYYY-MM-DD
77
- **Approval:** draft
78
-
79
- ## Intent
80
- ## Acceptance Criteria
81
- ## Key Files
82
- ## Schema / Data Model (reference file paths only)
83
- ## API Endpoints (Method | Path | Description)
84
- ## Requirements (EARS format: FR-1, NFR-1)
85
- ## Dependencies
86
- ## Out of Scope
87
- ## Resolved Questions
88
- ## Implementation Notes (post-implementation only)
89
- ## Discrepancies (spec vs reality gaps)
90
- ```
91
-
92
- ## As-Built Workflow
93
-
94
- After implementing a feature:
95
- 1. Find the spec: Glob `.specs/**/*.md`
96
- 2. Set status to "implemented" or "partial"
97
- 3. Check off acceptance criteria with passing tests
98
- 4. Add Implementation Notes for any deviations
99
- 5. Update file paths if they changed
100
- 6. Update Last Updated date
101
-
102
- If no spec exists and the change is substantial, create one.
48
+ See the system prompt's `<specification_management>` section for the full template, directory structure, and as-built workflow.
@@ -1,7 +1,16 @@
1
1
  # Workspace Scoping Rule
2
2
 
3
- When working in a project subdirectory, restrict all file operations
4
- (reads, writes, searches, globs) to the current project directory
5
- unless the user explicitly requests cross-project work.
3
+ ALL file operations (reads, writes, edits, searches, globs, bash commands)
4
+ MUST target paths within the current project directory. No exceptions.
6
5
 
7
- Do not suggest changes to files in sibling project directories.
6
+ Violations:
7
+ - Writing, editing, or creating files outside the project directory is FORBIDDEN.
8
+ - Reading or searching outside the project directory is FORBIDDEN.
9
+ - Using paths like `/workspaces/.devcontainer/` when the project is at
10
+ `/workspaces/projects/ProjectName/` is a scope violation — always use
11
+ the project-relative path (e.g., `/workspaces/projects/ProjectName/.devcontainer/`).
12
+ - This rule applies even if a file exists at both locations. The project copy
13
+ is the ONLY valid target.
14
+
15
+ Do not suggest, reference, or modify files in sibling project directories
16
+ or workspace-root directories that duplicate project content.
@@ -59,9 +59,11 @@
59
59
  "notify-hook@devs-marketplace": true,
60
60
  "dangerous-command-blocker@devs-marketplace": true,
61
61
  "protected-files-guard@devs-marketplace": true,
62
- "auto-formatter@devs-marketplace": true,
63
- "auto-linter@devs-marketplace": true,
64
- "code-directive@devs-marketplace": true,
62
+ "agent-system@devs-marketplace": true,
63
+ "skill-engine@devs-marketplace": true,
64
+ "spec-workflow@devs-marketplace": true,
65
+ "session-context@devs-marketplace": true,
66
+ "auto-code-quality@devs-marketplace": true,
65
67
  "workspace-scope-guard@devs-marketplace": true
66
68
  },
67
69
  "autoUpdatesChannel": "latest"
@@ -40,5 +40,19 @@
40
40
  "dest": "${CLAUDE_CONFIG_DIR}",
41
41
  "enabled": true,
42
42
  "overwrite": "if-changed"
43
+ },
44
+ {
45
+ "src": "defaults/ccstatusline-settings.json",
46
+ "dest": "${HOME}/.config/ccstatusline",
47
+ "destFilename": "settings.json",
48
+ "enabled": true,
49
+ "overwrite": "if-changed"
50
+ },
51
+ {
52
+ "src": "defaults/ccstatusline-settings.json",
53
+ "dest": "/usr/local/share/ccstatusline",
54
+ "destFilename": "settings.template.json",
55
+ "enabled": true,
56
+ "overwrite": "always"
43
57
  }
44
58
  ]
@@ -32,8 +32,8 @@
32
32
 
33
33
  // Feature install order: external runtimes first (Node, uv, Rust, Bun),
34
34
  // then Claude Code (needs Node), then custom features.
35
- // npm-dependent features (agent-browser, ccusage, ccburn, biome, lsp-servers)
36
- // must come after Node. uv-dependent features (ruff, claude-monitor) must
35
+ // npm-dependent features (agent-browser, ccusage, ccburn, claude-session-dashboard,
36
+ // biome, lsp-servers) must come after Node. uv-dependent features (ruff, claude-monitor) must
37
37
  // come after uv. cargo-dependent features (ccms) must come after Rust.
38
38
  // notify-hook is last (lightweight, no dependencies).
39
39
  "overrideFeatureInstallOrder": [
@@ -51,9 +51,12 @@
51
51
  "./features/ccburn",
52
52
  "./features/ccstatusline",
53
53
  "./features/ccms",
54
+ "./features/claude-session-dashboard",
54
55
  "./features/ast-grep",
55
56
  "./features/tree-sitter",
56
57
  "./features/lsp-servers",
58
+ "./features/kitty-terminfo",
59
+ "./features/chromaterm",
57
60
  "./features/ruff",
58
61
  "./features/shfmt",
59
62
  "./features/dprint",
@@ -64,22 +67,22 @@
64
67
  ],
65
68
 
66
69
  "features": {
67
- "ghcr.io/devcontainers/features/node:1.6": {
70
+ "ghcr.io/devcontainers/features/node:1.7.1": {
68
71
  "version": "lts",
69
72
  "nodeGypDependencies": true
70
73
  },
71
- "ghcr.io/devcontainers/features/github-cli:1.0": {},
72
- "ghcr.io/devcontainers/features/docker-outside-of-docker:1.7": {
74
+ "ghcr.io/devcontainers/features/github-cli:1.1.0": {},
75
+ "ghcr.io/devcontainers/features/docker-outside-of-docker:1.6": {
73
76
  "moby": false
74
77
  },
75
78
  "ghcr.io/devcontainers-extra/features/uv:1.0": {},
76
79
  "ghcr.io/rails/devcontainer/features/bun:1.0.2": {},
77
- "ghcr.io/devcontainers/features/rust:1.4": {
80
+ "ghcr.io/devcontainers/features/rust:1.5.0": {
78
81
  "version": "latest"
79
82
  },
80
83
  // Uncomment to add Go runtime (not installed by default):
81
84
  // "ghcr.io/devcontainers/features/go:1": {},
82
- "ghcr.io/anthropics/devcontainer-features/claude-code:1.1": {},
85
+ "ghcr.io/anthropics/devcontainer-features/claude-code:1.0.5": {},
83
86
  "./features/tmux": {},
84
87
  "./features/ccusage": {
85
88
  "version": "latest",
@@ -100,10 +103,21 @@
100
103
  "username": "automatic"
101
104
  },
102
105
  "./features/ccms": {},
106
+ "./features/claude-session-dashboard": {
107
+ "version": "latest",
108
+ "port": "7847",
109
+ "shells": "both",
110
+ "username": "automatic"
111
+ },
103
112
  "./features/ast-grep": {},
104
113
  "./features/tree-sitter": {},
105
114
  "./features/lsp-servers": {},
106
115
  "./features/agent-browser": {},
116
+ "./features/kitty-terminfo": {},
117
+ "./features/chromaterm": {
118
+ "version": "latest",
119
+ "username": "automatic"
120
+ },
107
121
  "./features/ruff": {
108
122
  "version": "latest",
109
123
  "username": "automatic"
@@ -122,6 +136,17 @@
122
136
  }
123
137
  },
124
138
 
139
+ "forwardPorts": [7847],
140
+ "portsAttributes": {
141
+ "7847": {
142
+ "label": "Claude Dashboard",
143
+ "onAutoForward": "notify"
144
+ },
145
+ "*": {
146
+ "onAutoForward": "silent"
147
+ }
148
+ },
149
+
125
150
  "postStartCommand": "bash ${containerWorkspaceFolder}/.devcontainer/scripts/setup.sh",
126
151
 
127
152
  "remoteUser": "vscode",
@@ -52,71 +52,6 @@ uvx mcp-server-qdrant --help
52
52
 
53
53
  ---
54
54
 
55
- ## mcp-reasoner (Enhanced Reasoning)
56
-
57
- Adds a reasoning MCP server that gives Claude Code access to structured thinking tools (beam search, Monte Carlo tree search, etc.).
58
-
59
- ### Enabling
60
-
61
- Add to `devcontainer.json` under `"features"`:
62
-
63
- ```json
64
- "./features/mcp-reasoner": {}
65
- ```
66
-
67
- ### Options
68
-
69
- | Option | Default | Description |
70
- |--------|---------|-------------|
71
- | `version` | `latest` | Version to install. `"none"` to skip. |
72
- | `username` | `automatic` | Container user to install for |
73
-
74
- ### Prerequisites
75
-
76
- Already met by default container: Node.js LTS is pre-installed.
77
-
78
- ### How It Works
79
-
80
- 1. During build, clones and builds the mcp-reasoner Node.js project.
81
- 2. On container start, a post-start hook registers it as an MCP server in `settings.json`.
82
- 3. Claude Code gains access to reasoning tools: `beam_search`, `mcts`, `hypothesis_test`, etc.
83
-
84
- ### Verification
85
-
86
- ```bash
87
- node ~/mcp-reasoner/dist/index.js --help
88
- ```
89
-
90
- ---
91
-
92
- ## splitrail (Terminal Splitting)
93
-
94
- A terminal multiplexer utility for splitting panes. Useful for Agent Teams workflows.
95
-
96
- ### Enabling
97
-
98
- Add to `devcontainer.json` under `"features"`:
99
-
100
- ```json
101
- "./features/splitrail": {}
102
- ```
103
-
104
- ### Prerequisites
105
-
106
- Requires Rust toolchain. Add the Rust devcontainer feature first:
107
-
108
- ```json
109
- "ghcr.io/devcontainers/features/rust:1": {}
110
- ```
111
-
112
- Then add splitrail to `overrideFeatureInstallOrder` after the Rust feature.
113
-
114
- ### How It Works
115
-
116
- splitrail is a Rust-based tool that provides tmux pane management for Claude Code Agent Teams. It works alongside the tmux feature to provide split-pane terminal sessions.
117
-
118
- ---
119
-
120
55
  ## Disabling Default Features
121
56
 
122
57
  Any feature can be disabled without removing it from `devcontainer.json` by setting `"version": "none"`:
@@ -14,9 +14,11 @@ plugins/devs-marketplace/
14
14
  ├── notify-hook/ # Desktop notifications
15
15
  ├── dangerous-command-blocker/ # Safety: block destructive commands
16
16
  ├── protected-files-guard/ # Safety: protect sensitive files
17
- ├── auto-formatter/ # Batch formatter (Stop hook)
18
- ├── auto-linter/ # Batch linter (Stop hook)
19
- ├── code-directive/ # Agents, skills, hooks
17
+ ├── auto-code-quality/ # Batch formatter + linter + advisory test runner
18
+ ├── agent-system/ # 17 custom agents + redirection hooks
19
+ ├── skill-engine/ # 21 coding skills + auto-suggestion
20
+ ├── spec-workflow/ # 8 spec lifecycle skills + spec-reminder
21
+ ├── session-context/ # Git state, TODO harvesting, commit reminders
20
22
  └── workspace-scope-guard/ # Workspace scope enforcement
21
23
  ```
22
24
 
@@ -28,9 +30,11 @@ Plugins are enabled in `config/defaults/settings.json` under `enabledPlugins`:
28
30
 
29
31
  ```json
30
32
  "enabledPlugins": [
31
- "auto-formatter@devs-marketplace",
32
- "auto-linter@devs-marketplace",
33
- "code-directive@devs-marketplace"
33
+ "auto-code-quality@devs-marketplace",
34
+ "agent-system@devs-marketplace",
35
+ "skill-engine@devs-marketplace",
36
+ "spec-workflow@devs-marketplace",
37
+ "session-context@devs-marketplace"
34
38
  ]
35
39
  ```
36
40
 
@@ -109,11 +113,11 @@ The blocker runs as a PreToolUse hook on Bash commands. It checks the command ag
109
113
 
110
114
  Runs as a PreToolUse hook on Write and Edit operations.
111
115
 
112
- ### auto-formatter
116
+ ### auto-code-quality
113
117
 
114
- **Purpose**: Batch-formats all files edited during a Claude Code session.
118
+ **Purpose**: Batch-formats, lints, and runs advisory tests on files edited during a Claude Code session.
115
119
 
116
- **Supported languages**:
120
+ **Supported formatters**:
117
121
  | Language | Formatter |
118
122
  |----------|-----------|
119
123
  | Python | Ruff |
@@ -123,12 +127,6 @@ Runs as a PreToolUse hook on Write and Edit operations.
123
127
  | Markdown/YAML/TOML/Dockerfile | dprint |
124
128
  | Rust | rustfmt |
125
129
 
126
- **How it works**: Runs as a Stop hook. When Claude Code stops (end of a conversation turn), it checks which files were edited, detects their language, and runs the appropriate formatter. Has a 30-second timeout.
127
-
128
- ### auto-linter
129
-
130
- **Purpose**: Batch-lints all files edited during a Claude Code session.
131
-
132
130
  **Supported linters**:
133
131
  | Language | Linter |
134
132
  |----------|--------|
@@ -139,20 +137,37 @@ Runs as a PreToolUse hook on Write and Edit operations.
139
137
  | Dockerfile | hadolint |
140
138
  | Rust | clippy |
141
139
 
142
- **How it works**: Runs as a Stop hook alongside auto-formatter. Checks edited files and runs the appropriate linter. Results are reported but don't block — they're informational.
140
+ **How it works**: Runs as a Stop hook. When Claude Code stops, it checks which files were edited, detects their language, and runs the appropriate formatter and linter. Also includes an advisory test runner that runs affected tests. Results are informational they don't block.
143
141
 
144
- ### code-directive
142
+ ### agent-system
145
143
 
146
- **Purpose**: The main intelligence layer custom agents, coding skills, and behavior hooks.
144
+ **Purpose**: 17 specialized agent definitions with built-in agent redirection.
147
145
 
148
146
  **Components**:
149
- - **17 custom agents** — Specialized agent definitions for different task types (architect, test-writer, refactorer, etc.)
150
- - **28 coding skills** — Domain-specific reference materials (FastAPI, Docker, testing patterns, spec workflow, etc.)
147
+ - **17 custom agents** — Specialized agent definitions for different task types (architect, explorer, test-writer, refactorer, security-auditor, researcher, doc-writer, etc.)
151
148
  - **Agent redirection hook** — Transparently swaps built-in agent types to custom agents (e.g., `Explore` → `explorer`, `Plan` → `architect`)
152
- - **Syntax validation hook** — Validates code syntax before commits
153
- - **Skill auto-suggestion hook** — Suggests relevant skills based on conversation context
149
+ - **CWD injection hook** — Injects current working directory into agent prompts
150
+ - **Read-only bash enforcement** — Prevents read-only agents from executing write operations
151
+
152
+ For detailed agent documentation, see `plugins/devs-marketplace/plugins/agent-system/agents/`.
153
+
154
+ ### skill-engine
155
+
156
+ **Purpose**: 21 domain-specific coding reference skills with auto-suggestion.
157
+
158
+ **Skills**: fastapi, svelte5, docker, docker-py, pydantic-ai, sqlite, testing, debugging, security-checklist, refactoring-patterns, git-forensics, performance-profiling, documentation-patterns, migration-patterns, dependency-management, claude-code-headless, claude-agent-sdk, ast-grep-patterns, api-design, skill-building, team
159
+
160
+ **How it works**: Skills are loaded on demand via the Skill tool. A PreToolUse hook auto-suggests relevant skills based on conversation context.
161
+
162
+ For skill details, see `plugins/devs-marketplace/plugins/skill-engine/skills/`.
163
+
164
+ ### spec-workflow
165
+
166
+ **Purpose**: 8 spec lifecycle skills with spec-reminder hook.
167
+
168
+ **Skills**: spec-new, spec-refine, spec-build, spec-review, spec-update, spec-check, spec-init, specification-writing
154
169
 
155
- For detailed agent and skill documentation, see the agent markdown files in `plugins/devs-marketplace/plugins/code-directive/agents/` and skill files in `plugins/devs-marketplace/plugins/code-directive/skills/`.
170
+ **How it works**: Provides a structured specification workflow. A Stop hook reminds users to update specs when code was modified but specs weren't.
156
171
 
157
172
  ### workspace-scope-guard
158
173
 
@@ -3,7 +3,6 @@
3
3
  "version": "1.0.0",
4
4
  "name": "ast-grep",
5
5
  "description": "Installs ast-grep CLI for structural code search, lint, and rewriting using AST matching",
6
- "maintainer": "AnExiledDev",
7
6
  "documentationURL": "https://ast-grep.github.io/",
8
7
  "options": {
9
8
  "version": {
@@ -12,6 +12,19 @@ fi
12
12
  echo "[biome] Starting installation..."
13
13
  echo "[biome] Version: ${VERSION}"
14
14
 
15
+ # Source NVM if available
16
+ if [ -f /usr/local/share/nvm/nvm.sh ]; then
17
+ set +u
18
+ source /usr/local/share/nvm/nvm.sh
19
+ set -u
20
+ fi
21
+
22
+ # Validate npm is available
23
+ if ! command -v npm &>/dev/null; then
24
+ echo "[biome] ERROR: npm not found. Ensure Node.js is installed." >&2
25
+ exit 1
26
+ fi
27
+
15
28
  # Install Biome globally via npm
16
29
  if [ "${VERSION}" = "latest" ]; then
17
30
  npm install -g @biomejs/biome
@@ -3,7 +3,6 @@
3
3
  "version": "1.0.0",
4
4
  "name": "ccburn - Visual Token Burn Rate Tracker",
5
5
  "description": "Installs ccburn CLI for real-time burn-up charts and pace tracking of Claude Code usage limits",
6
- "maintainer": "AnExiledDev",
7
6
  "documentationURL": "https://github.com/JuanjoFuchs/ccburn",
8
7
  "options": {
9
8
  "version": {
@@ -3,7 +3,6 @@
3
3
  "version": "1.0.0",
4
4
  "name": "ccms - Claude Code Message Searcher",
5
5
  "description": "Installs ccms CLI for searching Claude Code session JSONL files with boolean queries, role filtering, and JSON output",
6
- "maintainer": "AnExiledDev",
7
6
  "documentationURL": "https://github.com/mkusaka/ccms",
8
7
  "options": {
9
8
  "version": {
@@ -53,7 +53,7 @@ fi
53
53
  echo "[ccms] Installing for user: ${USERNAME}"
54
54
 
55
55
  # === BUILD CACHE ===
56
- CACHE_DIR="/workspaces/.devcontainer/.build-cache/bin"
56
+ CACHE_DIR="${TMPDIR:-/tmp}/ccms-build-cache"
57
57
 
58
58
  # === INSTALL ===
59
59
  REPO_URL="https://github.com/mkusaka/ccms"
@@ -3,7 +3,6 @@
3
3
  "version": "1.1.0",
4
4
  "name": "ccstatusline",
5
5
  "description": "Compact powerline status line for Claude Code with essential metrics",
6
- "maintainer": "AnExiledDev",
7
6
  "documentationURL": "https://github.com/sirmalloc/ccstatusline",
8
7
  "options": {
9
8
  "version": {