trueline-mcp 2.10.4 → 2.12.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.
- package/README.md +3 -0
- package/dist/cli.js +57 -59
- package/dist/server.js +61 -63
- package/hooks/core/formatters.js +17 -0
- package/hooks/core/instructions.js +4 -4
- package/hooks/core/routing.js +86 -3
- package/hooks/hooks.json +12 -1
- package/hooks/posttooluse.js +69 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -117,6 +117,9 @@ workflow:
|
|
|
117
117
|
- **PreToolUse** intercepts calls to the built-in read and edit tools,
|
|
118
118
|
redirecting reads of files over 3 KB to trueline and blocking
|
|
119
119
|
unverified edits entirely.
|
|
120
|
+
- **Shipped skill** (`skills/trueline-workflow/SKILL.md`) auto-discovers
|
|
121
|
+
on any file-editing prompt, carrying richer examples and workflow
|
|
122
|
+
guidance for clients that honor Claude Code skills.
|
|
120
123
|
|
|
121
124
|
With hooks, agent compliance is ~98%. Without hooks (instruction-only
|
|
122
125
|
platforms like OpenCode and Codex CLI), compliance is ~60%. The
|