@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.
@@ -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)) {