@kaitranntt/ccs 3.5.0 → 4.1.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/.claude/agents/ccs-delegator.md +117 -0
- package/.claude/commands/ccs/glm/continue.md +22 -0
- package/.claude/commands/ccs/glm.md +22 -0
- package/.claude/commands/ccs/kimi/continue.md +22 -0
- package/.claude/commands/ccs/kimi.md +22 -0
- package/.claude/skills/ccs-delegation/SKILL.md +54 -0
- package/.claude/skills/ccs-delegation/references/README.md +24 -0
- package/.claude/skills/ccs-delegation/references/delegation-guidelines.md +99 -0
- package/.claude/skills/ccs-delegation/references/headless-workflow.md +174 -0
- package/.claude/skills/ccs-delegation/references/troubleshooting.md +268 -0
- package/README.md +223 -23
- package/VERSION +1 -1
- package/bin/ccs.js +61 -0
- package/bin/delegation/README.md +189 -0
- package/bin/delegation/delegation-handler.js +212 -0
- package/bin/delegation/headless-executor.js +617 -0
- package/bin/delegation/result-formatter.js +483 -0
- package/bin/delegation/session-manager.js +156 -0
- package/bin/delegation/settings-parser.js +109 -0
- package/bin/management/doctor.js +94 -1
- package/bin/utils/claude-symlink-manager.js +238 -0
- package/bin/utils/delegation-validator.js +154 -0
- package/lib/ccs +35 -1
- package/lib/ccs.ps1 +1 -1
- package/package.json +2 -1
- package/scripts/postinstall.js +11 -0
package/scripts/postinstall.js
CHANGED
|
@@ -103,6 +103,17 @@ function createConfigFiles() {
|
|
|
103
103
|
}
|
|
104
104
|
console.log('');
|
|
105
105
|
|
|
106
|
+
// Install CCS items to ~/.claude/ (v4.1.0)
|
|
107
|
+
try {
|
|
108
|
+
const ClaudeSymlinkManager = require('../bin/utils/claude-symlink-manager');
|
|
109
|
+
const claudeSymlinkManager = new ClaudeSymlinkManager();
|
|
110
|
+
claudeSymlinkManager.install();
|
|
111
|
+
} catch (err) {
|
|
112
|
+
console.warn('[!] CCS item installation warning:', err.message);
|
|
113
|
+
console.warn(' Run "ccs update" to retry');
|
|
114
|
+
}
|
|
115
|
+
console.log('');
|
|
116
|
+
|
|
106
117
|
// Create config.json if missing
|
|
107
118
|
const configPath = path.join(ccsDir, 'config.json');
|
|
108
119
|
if (!fs.existsSync(configPath)) {
|