@ghl-ai/aw 0.1.35-beta.16 → 0.1.35-beta.17
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 +3 -2
- package/package.json +1 -1
package/ecc.mjs
CHANGED
|
@@ -16,11 +16,12 @@ const PLUGIN_NAME = "aw";
|
|
|
16
16
|
const PLUGIN_VERSION = "1.1.0";
|
|
17
17
|
const PLUGIN_KEY = `${PLUGIN_NAME}@${PLUGIN_NAME}`;
|
|
18
18
|
|
|
19
|
-
const FILE_COPY_TARGETS = ["cursor", "codex"];
|
|
19
|
+
const FILE_COPY_TARGETS = ["cursor", "claude", "codex"];
|
|
20
20
|
|
|
21
21
|
const TARGET_STATE = {
|
|
22
22
|
cursor: { state: ".cursor/ecc-install-state.json" },
|
|
23
|
-
|
|
23
|
+
claude: { state: ".claude/ecc/install-state.json" },
|
|
24
|
+
codex: { state: ".codex/ecc-install-state.json" },
|
|
24
25
|
};
|
|
25
26
|
|
|
26
27
|
function run(cmd, opts = {}) {
|