@kaitranntt/ccs 4.3.5 → 4.3.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/VERSION CHANGED
@@ -1 +1 @@
1
- 4.3.5
1
+ 4.3.6
package/bin/ccs.js CHANGED
@@ -207,7 +207,8 @@ function handleHelpCommand() {
207
207
  console.log(' Commands: ~/.ccs/shared/commands/');
208
208
  console.log(' Skills: ~/.ccs/shared/skills/');
209
209
  console.log(' Agents: ~/.ccs/shared/agents/');
210
- console.log(' Note: Commands, skills, and agents are symlinked across all profiles');
210
+ console.log(' Plugins: ~/.ccs/shared/plugins/');
211
+ console.log(' Note: Commands, skills, agents, and plugins are symlinked across all profiles');
211
212
  console.log('');
212
213
 
213
214
  // Examples
@@ -17,7 +17,7 @@ class SharedManager {
17
17
  this.sharedDir = path.join(this.homeDir, '.ccs', 'shared');
18
18
  this.claudeDir = path.join(this.homeDir, '.claude');
19
19
  this.instancesDir = path.join(this.homeDir, '.ccs', 'instances');
20
- this.sharedDirs = ['commands', 'skills', 'agents'];
20
+ this.sharedDirs = ['commands', 'skills', 'agents', 'plugins'];
21
21
  }
22
22
 
23
23
  /**
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.3.5"
5
+ CCS_VERSION="4.3.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"
@@ -222,7 +222,8 @@ show_help() {
222
222
  echo -e " Commands: ~/.ccs/shared/commands/"
223
223
  echo -e " Skills: ~/.ccs/shared/skills/"
224
224
  echo -e " Agents: ~/.ccs/shared/agents/"
225
- echo -e " Note: Commands, skills, and agents are symlinked across all profiles"
225
+ echo -e " Plugins: ~/.ccs/shared/plugins/"
226
+ echo -e " Note: Commands, skills, agents, and plugins are symlinked across all profiles"
226
227
  echo ""
227
228
 
228
229
  echo -e "${CYAN}Examples:${RESET}"
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.3.5"
15
+ $CcsVersion = "4.3.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"
@@ -269,7 +269,8 @@ function Show-Help {
269
269
  Write-Host " Commands: ~/.ccs/shared/commands/"
270
270
  Write-Host " Skills: ~/.ccs/shared/skills/"
271
271
  Write-Host " Agents: ~/.ccs/shared/agents/"
272
- Write-Host " Note: Commands, skills, and agents are symlinked across all profiles"
272
+ Write-Host " Plugins: ~/.ccs/shared/plugins/"
273
+ Write-Host " Note: Commands, skills, agents, and plugins are symlinked across all profiles"
273
274
  Write-Host ""
274
275
 
275
276
  Write-ColorLine "Examples:" "Cyan"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kaitranntt/ccs",
3
- "version": "4.3.5",
3
+ "version": "4.3.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",
@@ -81,7 +81,7 @@ function createConfigFiles() {
81
81
  }
82
82
 
83
83
  // Create shared subdirectories
84
- const sharedSubdirs = ['commands', 'skills', 'agents'];
84
+ const sharedSubdirs = ['commands', 'skills', 'agents', 'plugins'];
85
85
  for (const subdir of sharedSubdirs) {
86
86
  const subdirPath = path.join(sharedDir, subdir);
87
87
  if (!fs.existsSync(subdirPath)) {