@yeison.restrepo.r/code-conductor 1.23.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 (43) hide show
  1. package/LICENSE +185 -0
  2. package/README.md +314 -0
  3. package/bin/code-conductor.mjs +133 -0
  4. package/global/CLAUDE.md +93 -0
  5. package/global/commands/cc-checkpoint.md +50 -0
  6. package/global/commands/cc-compact.md +49 -0
  7. package/global/commands/cc-lang.md +32 -0
  8. package/global/commands/cc-stack.md +69 -0
  9. package/global/hooks/graphify-ast-refresh.py +81 -0
  10. package/global/hooks/verbosity-remind.sh +372 -0
  11. package/global/memory/personal.md +24 -0
  12. package/global/memory/verbosity.md +7 -0
  13. package/global/settings.json +24 -0
  14. package/lib/installer/config.mjs +51 -0
  15. package/lib/installer/deploy.mjs +76 -0
  16. package/lib/installer/env.mjs +35 -0
  17. package/lib/installer/settings.mjs +77 -0
  18. package/package.json +34 -0
  19. package/project-template/.claude/commands/cc-debug.md +42 -0
  20. package/project-template/.claude/commands/cc-docs.md +49 -0
  21. package/project-template/.claude/commands/cc-implement.md +164 -0
  22. package/project-template/.claude/commands/cc-init.md +84 -0
  23. package/project-template/.claude/commands/cc-plan.md +114 -0
  24. package/project-template/.claude/commands/cc-refactor.md +42 -0
  25. package/project-template/.claude/commands/cc-resume.md +142 -0
  26. package/project-template/.claude/commands/cc-review.md +77 -0
  27. package/project-template/.claude/commands/cc-spec.md +138 -0
  28. package/project-template/.claude/commands/cc-test.md +56 -0
  29. package/project-template/.claude/hooks/context-guard.ps1 +55 -0
  30. package/project-template/.claude/hooks/context-guard.sh +43 -0
  31. package/project-template/.claude/hooks/post-compact.ps1 +41 -0
  32. package/project-template/.claude/hooks/post-compact.sh +36 -0
  33. package/project-template/.claude/hooks/pre-tool-use.sh +81 -0
  34. package/project-template/.claude/hooks/verbosity-remind.sh +168 -0
  35. package/project-template/.claude/memory/context-threshold.txt +1 -0
  36. package/project-template/.claude/memory/project.md +48 -0
  37. package/project-template/.claude/settings.json +52 -0
  38. package/project-template/CLAUDE.md +104 -0
  39. package/skills/agent-delegation.md +44 -0
  40. package/skills/code-simplifier.md +124 -0
  41. package/skills/critical-review.md +75 -0
  42. package/skills/memory-first.md +50 -0
  43. package/skills/verbosity.md +30 -0
@@ -0,0 +1,30 @@
1
+ # Verbosity
2
+
3
+ Read `~/.claude/memory/verbosity.md` once at the start of every session. Extract the value after `VERBOSITY:`. Default to MIN if the file is absent or the value is unrecognized.
4
+
5
+ ## Levels
6
+
7
+ ### MIN (default)
8
+ - One declarative sentence per response.
9
+ - `[CHANGES]` tag: list of files modified only. No prose explanation unless the user asks.
10
+ - On failure or ambiguity: one clarifying question. Nothing else.
11
+
12
+ ### INFO
13
+ - Bullet list: what changed and why. Max 5 bullets.
14
+ - Tags: `[CHANGES]` + `[REASON]`.
15
+ - No prose paragraphs.
16
+
17
+ ### VERBOSE
18
+ - Full explanation. Prose allowed.
19
+ - All applicable tags: `[CHANGES]`, `[REASON]`, `[PLAN]`, `[BUG]`.
20
+ - No length limit.
21
+
22
+ ## Application
23
+
24
+ The active level is enforced by a `UserPromptSubmit` hook (`verbosity-remind.sh`) that fires before every response and injects a compact, level-aware reminder into the conversation context. The reminder is injected at each prompt boundary so the constraint survives context fills and session drift — not only at session start.
25
+
26
+ Read `~/.claude/memory/verbosity.md` for the configured level. Default: MIN if the file is absent, unreadable, or contains no valid `VERBOSITY:` token. To change the level, re-run the installer with `--verbosity MIN|INFO|VERBOSE` or edit the file directly.
27
+
28
+ Changes to `verbosity.md` take effect on the **next user prompt** — no session restart required. If you edit the file during an active Claude session, the hook picks up the new level on the immediately following prompt; there is no stale session state to clear. If the hook emits at an unexpected level after a change, verify the file was saved (not merely modified in an unsaved buffer), confirm that `$HOME` resolves to the expected path in the terminal that launched Claude, and check that no parent environment is setting `CC_VERBOSITY_SKIP=1`.
29
+
30
+ VERBOSITY_HOOK_VERSION: 1.11.0