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.
- package/README.md +10 -4
- package/cli/dist/index.cjs +1562 -1392
- package/cli/dist/index.cjs.map +1 -1
- package/config/hooks.json +4 -4
- package/hooks/README.md +3 -3
- package/hooks/main-guard.mjs +10 -1
- package/package.json +8 -3
- package/project-skills/py-quality-gate/.claude/hooks/quality-check.py +15 -2
- package/project-skills/py-quality-gate/.claude/settings.json +1 -1
- package/project-skills/service-skills-set/.claude/settings.json +2 -2
- package/project-skills/service-skills-set/install-service-skills.py +43 -13
- package/project-skills/tdd-guard/.claude/hooks/tdd-guard-pretool-bridge.cjs +87 -0
- package/project-skills/tdd-guard/.claude/settings.json +2 -2
- package/project-skills/tdd-guard/README.md +6 -4
- package/project-skills/tdd-guard/docs/linting.md +2 -2
- package/project-skills/tdd-guard/reporters/jest/src/JestReporter.test-data.ts +199 -0
- package/project-skills/tdd-guard/reporters/jest/src/JestReporter.test.ts +302 -0
- package/project-skills/tdd-guard/reporters/jest/src/JestReporter.ts +201 -0
- package/project-skills/tdd-guard/reporters/jest/src/index.ts +4 -0
- package/project-skills/tdd-guard/reporters/jest/src/types.ts +42 -0
- package/project-skills/tdd-guard/reporters/jest/tsconfig.json +11 -0
- package/project-skills/tdd-guard/reporters/vitest/src/VitestReporter.test-data.ts +85 -0
- package/project-skills/tdd-guard/reporters/vitest/src/VitestReporter.test.ts +446 -0
- package/project-skills/tdd-guard/reporters/vitest/src/VitestReporter.ts +110 -0
- package/project-skills/tdd-guard/reporters/vitest/src/index.ts +4 -0
- package/project-skills/tdd-guard/reporters/vitest/src/types.ts +39 -0
- package/project-skills/tdd-guard/reporters/vitest/tsconfig.json +11 -0
- package/project-skills/ts-quality-gate/.claude/hooks/quality-check.cjs +36 -1
- 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
|
|
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
|