@ghl-ai/aw 0.1.43-beta.1 → 0.1.43
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/render-rules.mjs +21 -9
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.43";
|
|
16
16
|
|
|
17
17
|
const MARKETPLACE_NAME = "aw-marketplace";
|
|
18
18
|
const PLUGIN_KEY = `aw@${MARKETPLACE_NAME}`;
|
package/package.json
CHANGED
package/render-rules.mjs
CHANGED
|
@@ -344,6 +344,8 @@ For every non-trivial request, execute these steps in order before any substanti
|
|
|
344
344
|
2. **Select route** — using the decision tree below, pick the smallest correct AW route.
|
|
345
345
|
|
|
346
346
|
3. **Read the stage skill** — you MUST Read the matching skill file before responding:
|
|
347
|
+
- /aw-adk → Read aw-adk/SKILL.md
|
|
348
|
+
- /aw-publish → Read aw-publish/SKILL.md
|
|
347
349
|
- /aw-plan → Read aw-plan/SKILL.md
|
|
348
350
|
- /aw-build → Read aw-build/SKILL.md
|
|
349
351
|
- /aw-investigate → Read aw-investigate/SKILL.md
|
|
@@ -362,21 +364,31 @@ Stating a route without Reading the skill file is NOT compliance.
|
|
|
362
364
|
## Route Decision Tree
|
|
363
365
|
|
|
364
366
|
\`\`\`text
|
|
365
|
-
|
|
366
|
-
├──
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
└──
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
└──
|
|
367
|
+
Is the user authoring/editing a CASRE artifact (command, agent, skill, rule, eval) in .aw_registry/?
|
|
368
|
+
├── YES → /aw-adk
|
|
369
|
+
└── NO → Is the user pushing registry content (.aw_registry/ or .aw_rules/) to remote platform-docs?
|
|
370
|
+
├── YES → /aw-publish
|
|
371
|
+
└── NO → Does an approved plan/spec already exist for this exact work?
|
|
372
|
+
├── NO → Is the request about a bug, alert, or unclear failure?
|
|
373
|
+
│ ├── YES → /aw-investigate
|
|
374
|
+
│ └── NO → /aw-plan ← DEFAULT for anything new
|
|
375
|
+
└── YES → Is the work implemented and needs testing/review?
|
|
376
|
+
├── YES → /aw-test or /aw-review
|
|
377
|
+
└── NO → Is this a deploy or release action?
|
|
378
|
+
├── YES → /aw-deploy or /aw-ship
|
|
379
|
+
└── NO → /aw-build
|
|
374
380
|
\`\`\`
|
|
375
381
|
|
|
382
|
+
**ADK triggers**: "create an agent/skill/command/rule/eval", "score my skill", "audit all agents", "ADK", "developer kit", "fix lint errors" on registry artifacts.
|
|
383
|
+
|
|
384
|
+
**Publish triggers**: "push this agent/skill/rule to the registry", "publish registry changes", "sync to platform-docs", "aw push", "aw push-rules". NOT regular git push, app PRs, or deploys.
|
|
385
|
+
|
|
376
386
|
**Plan-first rule**: New endpoints, services, schemas, features, architecture changes, and integrations ALL go through /aw-plan first. /aw-build requires an approved plan or a mechanical change.
|
|
377
387
|
|
|
378
388
|
## Default Assumptions
|
|
379
389
|
|
|
390
|
+
- /aw-adk → create, improve, fix, score, audit, or health-check CASRE artifacts in .aw_registry/.
|
|
391
|
+
- /aw-publish → dry-run first, show diff, confirm, then real push. Never auto-publish.
|
|
380
392
|
- /aw-plan → write file artifacts under .aw_docs/features/<slug>/ unless user says "chat only".
|
|
381
393
|
- /aw-build → code changes with tests.
|
|
382
394
|
- /aw-investigate → reproduction + root cause evidence.
|