xtrm-tools 2.1.4 → 2.1.6

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 (29) hide show
  1. package/README.md +10 -4
  2. package/cli/dist/index.cjs +1562 -1392
  3. package/cli/dist/index.cjs.map +1 -1
  4. package/config/hooks.json +4 -4
  5. package/hooks/README.md +3 -3
  6. package/hooks/main-guard.mjs +10 -1
  7. package/package.json +8 -3
  8. package/project-skills/py-quality-gate/.claude/hooks/quality-check.py +15 -2
  9. package/project-skills/py-quality-gate/.claude/settings.json +1 -1
  10. package/project-skills/service-skills-set/.claude/settings.json +2 -2
  11. package/project-skills/service-skills-set/install-service-skills.py +43 -13
  12. package/project-skills/tdd-guard/.claude/hooks/tdd-guard-pretool-bridge.cjs +87 -0
  13. package/project-skills/tdd-guard/.claude/settings.json +2 -2
  14. package/project-skills/tdd-guard/README.md +6 -4
  15. package/project-skills/tdd-guard/docs/linting.md +2 -2
  16. package/project-skills/tdd-guard/reporters/jest/src/JestReporter.test-data.ts +199 -0
  17. package/project-skills/tdd-guard/reporters/jest/src/JestReporter.test.ts +302 -0
  18. package/project-skills/tdd-guard/reporters/jest/src/JestReporter.ts +201 -0
  19. package/project-skills/tdd-guard/reporters/jest/src/index.ts +4 -0
  20. package/project-skills/tdd-guard/reporters/jest/src/types.ts +42 -0
  21. package/project-skills/tdd-guard/reporters/jest/tsconfig.json +11 -0
  22. package/project-skills/tdd-guard/reporters/vitest/src/VitestReporter.test-data.ts +85 -0
  23. package/project-skills/tdd-guard/reporters/vitest/src/VitestReporter.test.ts +446 -0
  24. package/project-skills/tdd-guard/reporters/vitest/src/VitestReporter.ts +110 -0
  25. package/project-skills/tdd-guard/reporters/vitest/src/index.ts +4 -0
  26. package/project-skills/tdd-guard/reporters/vitest/src/types.ts +39 -0
  27. package/project-skills/tdd-guard/reporters/vitest/tsconfig.json +11 -0
  28. package/project-skills/ts-quality-gate/.claude/hooks/quality-check.cjs +36 -1
  29. package/project-skills/ts-quality-gate/.claude/settings.json +1 -1
package/README.md CHANGED
@@ -199,7 +199,7 @@ Task intake and service routing for Docker service projects.
199
199
  ### Standalone Hooks
200
200
 
201
201
  **main-guard.mjs**
202
- - Trigger: PreToolUse (Write|Edit|MultiEdit)
202
+ - Trigger: PreToolUse (Write|Edit|MultiEdit|mcp__serena__rename_symbol|mcp__serena__replace_symbol_body|mcp__serena__insert_after_symbol|mcp__serena__insert_before_symbol)
203
203
  - Purpose: Blocks direct edits on protected branches with structured deny output
204
204
 
205
205
  **type-safety-enforcement.py**
@@ -289,12 +289,18 @@ npm install -g github:Jaggerxtrm/xtrm-tools@latest
289
289
 
290
290
  ```bash
291
291
  git clone https://github.com/Jaggerxtrm/xtrm-tools.git
292
- cd xtrm-tools/cli
293
- npm install # installs dependencies
294
- npm run build # compiles TypeScript to dist/
292
+ cd xtrm-tools
293
+ npm install # installs root + cli workspace dependencies
294
+ npm run build # compiles CLI TypeScript to cli/dist/
295
295
  npm link # registers `xtrm` globally
296
296
  ```
297
297
 
298
+ Root package is the single entrypoint for dev/publish:
299
+ - `npm install` (root) installs everything, including `cli/`
300
+ - `npm run build` (root) builds the CLI bundle
301
+ - `npm test` (root) runs CLI tests
302
+ - `npm publish` (root) runs `prepublishOnly` build, then publishes
303
+
298
304
  ---
299
305
 
300
306
  ## CLI User Guide