tlc-claude-code 2.4.5 → 2.4.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/bin/install.js +4 -2
- package/package.json +2 -1
package/bin/install.js
CHANGED
|
@@ -173,13 +173,15 @@ function install(targetDir, installType) {
|
|
|
173
173
|
// Install hooks (plugin system)
|
|
174
174
|
const hooksInstalled = installHooks(targetDir, packageRoot);
|
|
175
175
|
if (hooksInstalled > 0) {
|
|
176
|
-
|
|
176
|
+
const hooksDir = path.join(path.dirname(targetDir), 'hooks');
|
|
177
|
+
success(`Installed ${hooksInstalled} hooks to ${c.cyan}${hooksDir}${c.reset}`);
|
|
177
178
|
}
|
|
178
179
|
|
|
179
180
|
// Install agent definitions (Claude Code sub-agents)
|
|
180
181
|
const agentsInstalled = installAgents(targetDir, packageRoot);
|
|
181
182
|
if (agentsInstalled > 0) {
|
|
182
|
-
|
|
183
|
+
const agentsDir = path.join(path.dirname(targetDir), 'agents');
|
|
184
|
+
success(`Installed ${agentsInstalled} agents to ${c.cyan}${agentsDir}${c.reset}`);
|
|
183
185
|
}
|
|
184
186
|
|
|
185
187
|
// Install settings template (with hooks wiring)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tlc-claude-code",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.6",
|
|
4
4
|
"description": "TLC - Test Led Coding for Claude Code",
|
|
5
5
|
"bin": {
|
|
6
6
|
"tlc-claude-code": "./bin/install.js",
|
|
@@ -36,6 +36,7 @@
|
|
|
36
36
|
"build:web": "cd dashboard-web && npm install && npm run build",
|
|
37
37
|
"preversion": "node scripts/version-sync.js && git diff --quiet || (echo 'Working tree not clean' && exit 1)",
|
|
38
38
|
"version": "node scripts/version-sync.js && git add .tlc.json",
|
|
39
|
+
"postversion": "git push && git push origin v$npm_package_version",
|
|
39
40
|
"prepublishOnly": "npm run build && npm run build:web",
|
|
40
41
|
"docs": "node scripts/docs-update.js",
|
|
41
42
|
"docs:check": "node scripts/docs-update.js --check",
|