@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.
- package/ecc.mjs +5 -1
- 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
|
-
|
|
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" },
|