@kaitranntt/ccs 4.1.5 → 4.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 CHANGED
@@ -753,7 +753,7 @@ Status: Installation healthy
753
753
  If you modify CCS items or need to re-install symlinks:
754
754
 
755
755
  ```bash
756
- ccs update
756
+ ccs sync
757
757
  ```
758
758
 
759
759
  **What it does**:
package/VERSION CHANGED
@@ -1 +1 @@
1
- 4.1.5
1
+ 4.1.6
@@ -366,7 +366,7 @@ class Doctor {
366
366
  'CCS Symlinks',
367
367
  'warning',
368
368
  health.issues.join(', '),
369
- 'Run: ccs update'
369
+ 'Run: ccs sync'
370
370
  );
371
371
  }
372
372
  } catch (e) {
@@ -375,7 +375,7 @@ class Doctor {
375
375
  'CCS Symlinks',
376
376
  'warning',
377
377
  'Could not check CCS symlinks: ' + e.message,
378
- 'Run: ccs update'
378
+ 'Run: ccs sync'
379
379
  );
380
380
  }
381
381
  }
@@ -214,10 +214,10 @@ class ClaudeSymlinkManager {
214
214
 
215
215
  // Check target
216
216
  if (!fs.existsSync(targetPath)) {
217
- issues.push(`Not installed: ${item.target} (run 'ccs update' to install)`);
217
+ issues.push(`Not installed: ${item.target} (run 'ccs sync' to install)`);
218
218
  healthy = false;
219
219
  } else if (!this._isOurSymlink(targetPath, sourcePath)) {
220
- issues.push(`Not a CCS symlink: ${item.target} (run 'ccs update' to fix)`);
220
+ issues.push(`Not a CCS symlink: ${item.target} (run 'ccs sync' to fix)`);
221
221
  healthy = false;
222
222
  }
223
223
  }
package/lib/ccs CHANGED
@@ -2,7 +2,7 @@
2
2
  set -euo pipefail
3
3
 
4
4
  # Version (updated by scripts/bump-version.sh)
5
- CCS_VERSION="4.1.5"
5
+ CCS_VERSION="4.1.6"
6
6
  SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
7
7
  readonly CONFIG_FILE="${CCS_CONFIG:-$HOME/.ccs/config.json}"
8
8
  readonly PROFILES_JSON="$HOME/.ccs/profiles.json"
package/lib/ccs.ps1 CHANGED
@@ -12,7 +12,7 @@ param(
12
12
  $ErrorActionPreference = "Stop"
13
13
 
14
14
  # Version (updated by scripts/bump-version.sh)
15
- $CcsVersion = "4.1.5"
15
+ $CcsVersion = "4.1.6"
16
16
  $ScriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path
17
17
  $ConfigFile = if ($env:CCS_CONFIG) { $env:CCS_CONFIG } else { "$env:USERPROFILE\.ccs\config.json" }
18
18
  $ProfilesJson = "$env:USERPROFILE\.ccs\profiles.json"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kaitranntt/ccs",
3
- "version": "4.1.5",
3
+ "version": "4.1.6",
4
4
  "description": "Claude Code Switch - Instant profile switching between Claude Sonnet 4.5 and GLM 4.6",
5
5
  "keywords": [
6
6
  "cli",
@@ -121,7 +121,7 @@ function createConfigFiles() {
121
121
  claudeSymlinkManager.install();
122
122
  } catch (err) {
123
123
  console.warn('[!] CCS item installation warning:', err.message);
124
- console.warn(' Run "ccs update" to retry');
124
+ console.warn(' Run "ccs sync" to retry');
125
125
  }
126
126
  console.log('');
127
127