@ghl-ai/aw 0.1.36-beta.60 → 0.1.36-beta.61

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.
Files changed (2) hide show
  1. package/ecc.mjs +5 -1
  2. package/package.json +1 -1
package/ecc.mjs CHANGED
@@ -16,7 +16,11 @@ const PLUGIN_KEY = `aw@${MARKETPLACE_NAME}`;
16
16
 
17
17
  function eccDir() { return join(homedir(), ".aw-ecc"); }
18
18
 
19
- const FILE_COPY_TARGETS = ["claude", "cursor", "codex"];
19
+ // "claude" intentionally excluded — Claude Code is handled via the plugin
20
+ // marketplace (installClaudePlugin), which registers commands under the aw:
21
+ // namespace. Running install-apply.js --target claude would create a duplicate
22
+ // flat copy at ~/.claude/commands/ accessible as /tdd instead of /aw:tdd.
23
+ const FILE_COPY_TARGETS = ["cursor", "codex"];
20
24
 
21
25
  const TARGET_STATE = {
22
26
  cursor: { state: ".cursor/ecc-install-state.json" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ghl-ai/aw",
3
- "version": "0.1.36-beta.60",
3
+ "version": "0.1.36-beta.61",
4
4
  "description": "Agentic Workspace CLI — pull, push & manage agents, skills and commands from the registry",
5
5
  "type": "module",
6
6
  "bin": "bin.js",