@ghl-ai/aw 0.1.48 → 0.1.49
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/c4/templates/scripts/aw-c4-bootstrap.sh +4 -4
- package/commands/c4.mjs +3 -3
- package/ecc.mjs +1 -1
- package/package.json +1 -1
|
@@ -12,9 +12,9 @@
|
|
|
12
12
|
# - .codex/scripts/codex-web-bootstrap.sh (passes --harness codex-web)
|
|
13
13
|
#
|
|
14
14
|
# Override knobs (env):
|
|
15
|
-
# AW_PACKAGE npm spec to install. Defaults to @ghl-ai/aw@
|
|
16
|
-
# with @ghl-ai/aw@
|
|
17
|
-
# @ghl-ai/aw@0.1.x for reproducible CI runs.
|
|
15
|
+
# AW_PACKAGE npm spec to install. Defaults to @ghl-ai/aw@0.1.49-beta.0.
|
|
16
|
+
# Override with @ghl-ai/aw@latest for the stable channel or pin
|
|
17
|
+
# to another @ghl-ai/aw@0.1.x for reproducible CI runs.
|
|
18
18
|
set -Eeuo pipefail
|
|
19
19
|
|
|
20
20
|
# GitHub auth is resolved inside `aw c4` so GITHUB_PAT, GITHUB_TOKEN, and
|
|
@@ -106,7 +106,7 @@ if [ -f "$ENVOY_CA" ] && [ -z "${NODE_EXTRA_CA_CERTS:-}" ]; then
|
|
|
106
106
|
echo "[aw-c4-bootstrap] enabled NODE_EXTRA_CA_CERTS=$ENVOY_CA"
|
|
107
107
|
fi
|
|
108
108
|
|
|
109
|
-
AW_PACKAGE="${AW_PACKAGE:-@ghl-ai/aw@
|
|
109
|
+
AW_PACKAGE="${AW_PACKAGE:-@ghl-ai/aw@0.1.49-beta.0}"
|
|
110
110
|
|
|
111
111
|
echo "[aw-c4-bootstrap] installing ${AW_PACKAGE}"
|
|
112
112
|
npm install -g "${AW_PACKAGE}"
|
package/commands/c4.mjs
CHANGED
|
@@ -350,10 +350,10 @@ export async function c4Command(rawArgs, overrides = {}) {
|
|
|
350
350
|
return exit(0);
|
|
351
351
|
}
|
|
352
352
|
|
|
353
|
-
// Step 6 — npm install -g @ghl-ai/aw.
|
|
354
|
-
const npmRes = spawnSync('npm', ['install', '-g', '@ghl-ai/aw'], { stdio: 'pipe' });
|
|
353
|
+
// Step 6 — npm install -g @ghl-ai/aw@0.1.49-beta.0.
|
|
354
|
+
const npmRes = spawnSync('npm', ['install', '-g', '@ghl-ai/aw@0.1.49-beta.0'], { stdio: 'pipe' });
|
|
355
355
|
if (npmRes && npmRes.status !== 0) {
|
|
356
|
-
writer.stderr('[aw-c4] npm install -g @ghl-ai/aw failed (non-fatal); using existing aw if present\n');
|
|
356
|
+
writer.stderr('[aw-c4] npm install -g @ghl-ai/aw@0.1.49-beta.0 failed (non-fatal); using existing aw if present\n');
|
|
357
357
|
}
|
|
358
358
|
|
|
359
359
|
// Step 7 — aw init --silent.
|
package/ecc.mjs
CHANGED
|
@@ -12,7 +12,7 @@ import { applyStoredStartupPreferences } from "./startup.mjs";
|
|
|
12
12
|
|
|
13
13
|
const AW_ECC_REPO_SSH = "git@github.com:shreyansh-ghl/aw-ecc.git";
|
|
14
14
|
const AW_ECC_REPO_HTTPS = "https://github.com/shreyansh-ghl/aw-ecc.git";
|
|
15
|
-
export const AW_ECC_TAG = "v1.4.
|
|
15
|
+
export const AW_ECC_TAG = "v1.4.55";
|
|
16
16
|
|
|
17
17
|
const MARKETPLACE_NAME = "aw-marketplace";
|
|
18
18
|
const PLUGIN_KEY = `aw@${MARKETPLACE_NAME}`;
|