@ghl-ai/aw 0.1.38-beta.4 → 0.1.38-beta.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/ecc.mjs +1 -1
- package/package.json +1 -1
- package/startup.mjs +1 -1
package/ecc.mjs
CHANGED
|
@@ -10,7 +10,7 @@ import { applyStoredStartupPreferences } from "./startup.mjs";
|
|
|
10
10
|
|
|
11
11
|
const AW_ECC_REPO_SSH = "git@github.com:shreyansh-ghl/aw-ecc.git";
|
|
12
12
|
const AW_ECC_REPO_HTTPS = "https://github.com/shreyansh-ghl/aw-ecc.git";
|
|
13
|
-
export const AW_ECC_TAG = "v1.
|
|
13
|
+
export const AW_ECC_TAG = "v1.0.1";
|
|
14
14
|
|
|
15
15
|
const MARKETPLACE_NAME = "aw-marketplace";
|
|
16
16
|
const PLUGIN_KEY = `aw@${MARKETPLACE_NAME}`;
|
package/package.json
CHANGED
package/startup.mjs
CHANGED
|
@@ -154,7 +154,7 @@ function isLegacyCodexSessionStartEntry(entry) {
|
|
|
154
154
|
const command = String(hook?.command || '');
|
|
155
155
|
return (
|
|
156
156
|
command.includes('.aw_registry/platform/core/skills/using-aw-skills/hooks/session-start.sh')
|
|
157
|
-
|| (command.includes('.codex/hooks/aw-session-start.sh') && entry?.matcher !==
|
|
157
|
+
|| (command.includes('.codex/hooks/aw-session-start.sh') && entry?.matcher !== CODEX_HOME_HOOK_MATCHER)
|
|
158
158
|
);
|
|
159
159
|
});
|
|
160
160
|
}
|