aw-ecc 1.4.48 → 1.4.50

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.
@@ -274,6 +274,8 @@
274
274
  "skills/e2e-testing",
275
275
  "skills/eval-harness",
276
276
  "skills/finish-only-when-green",
277
+ "skills/grill-me",
278
+ "skills/grill-with-docs",
277
279
  "skills/iterative-retrieval",
278
280
  "skills/plankton-code-quality",
279
281
  "skills/project-guidelines-example",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aw-ecc",
3
- "version": "1.4.48",
3
+ "version": "1.4.50",
4
4
  "description": "GoHighLevel Agentic Workspace Engine — forked from Everything Claude Code (ecc-universal)",
5
5
  "keywords": [
6
6
  "claude-code",
@@ -1,11 +1,11 @@
1
1
  ---
2
2
  name: grill-with-docs
3
- description: Grilling session that challenges your plan against the existing domain model, sharpens terminology, and updates documentation (CONTEXT.md, ADRs) inline as decisions crystallise. Use when user wants to stress-test a plan against their project's language and documented decisions.
3
+ description: Grilling session that challenges your plan against the existing domain model, AW planning context, sharpens terminology, and updates documentation (CONTEXT.md, ADRs) inline as decisions crystallise. Use when user wants to stress-test a plan against their project's language and documented decisions.
4
4
  ---
5
5
 
6
6
  ## When To Use
7
7
 
8
- Use this inside planning when the problem is fuzzy, domain language is overloaded, acceptance criteria are under-specified, or existing docs/code may contradict the user's mental model.
8
+ Use this inside planning when the problem is fuzzy, domain language is overloaded, acceptance criteria are under-specified, or existing AW docs, repo docs, or code may contradict the user's mental model.
9
9
 
10
10
  <what-to-do>
11
11
 
@@ -21,7 +21,19 @@ If a question can be answered by exploring the codebase, explore the codebase in
21
21
 
22
22
  ## Domain awareness
23
23
 
24
- During codebase exploration, also look for existing documentation:
24
+ During codebase exploration, also look for AW planning context and existing documentation.
25
+
26
+ ### AW feature context
27
+
28
+ If `.aw_docs/` exists, resolve the active AW context before assuming the repo has no glossary or ADRs.
29
+
30
+ 1. Look for an explicit feature slug in the prompt, current branch, PR title, current files, or conversation. If present, inspect `.aw_docs/features/<slug>/`.
31
+ 2. If no explicit slug is present, search `.aw_docs/features/` for likely matches using the user's terms. Prefer folders with fresh `state.json`, `prd.md`, `design.md`, `spec.md`, `tasks.md`, `execution.md`, or `verification.md`.
32
+ 3. If multiple feature folders plausibly match, name the candidates and ask one short selection question before continuing.
33
+ 4. Read relevant AW feature files as planning memory. Markdown files remain the canonical agent-readable source; HTML sidecars are human-facing companions.
34
+ 5. Use `state.json`, plan files, PR links, git remotes, and changed paths to identify the target implementation repo or repos. In a workspace that contains multiple repos, do not treat the workspace container root as the domain root.
35
+
36
+ AW docs do not replace domain docs. They tell you which feature and target repos to inspect. After resolving the AW feature context, inspect the target repo or bounded domain for `CONTEXT.md`, `CONTEXT-MAP.md`, and ADR folders.
25
37
 
26
38
  ### File structure
27
39
 
@@ -53,7 +65,9 @@ If a `CONTEXT-MAP.md` exists at the root, the repo has multiple contexts. The ma
53
65
  │ └── docs/adr/
54
66
  ```
55
67
 
56
- Create files lazily — only when you have something to write. If no `CONTEXT.md` exists, create one when the first term is resolved. If no `docs/adr/` exists, create it when the first ADR is needed.
68
+ Create files lazily — only when you have something to write. If no `CONTEXT.md` exists in the resolved target repo or bounded context, create one when the first term is resolved. If no `docs/adr/` or `docs/adrs/` exists in that target context, create it when the first ADR is needed.
69
+
70
+ Do not create `CONTEXT.md` or `docs/adr/` at a workspace container root just because they are missing there. If the root contains `.aw_docs/` plus multiple nested repos, first resolve the AW feature folder and target repo, then create or update docs in the target context.
57
71
 
58
72
  ## During the session
59
73
 
@@ -0,0 +1,50 @@
1
+ # Eval: AW Docs Context Root
2
+
3
+ ## Purpose
4
+
5
+ Verify `grill-with-docs` resolves AW feature context before assuming root-level `CONTEXT.md` or `docs/adr/` are missing.
6
+
7
+ ## Scenario
8
+
9
+ Workspace layout:
10
+
11
+ ```text
12
+ /workspace/
13
+ ├── .aw_docs/
14
+ │ └── features/
15
+ │ └── teamofone-routines-agents-forward-plan/
16
+ │ ├── spec.md
17
+ │ ├── tasks.md
18
+ │ └── state.json
19
+ ├── teamofone-monorepo/
20
+ │ ├── package.json
21
+ │ └── README.md
22
+ └── platform-devtools-backend/
23
+ ├── package.json
24
+ └── README.md
25
+ ```
26
+
27
+ No `CONTEXT.md`, `CONTEXT-MAP.md`, or `docs/adr/` exists at `/workspace/`.
28
+
29
+ User asks:
30
+
31
+ > Use grill-with-docs for the TeamOfOne routines and agents PRs. When we say Routine, is it saved configuration or executable workflow?
32
+
33
+ ## Expected Behavior
34
+
35
+ The agent should:
36
+
37
+ - Inspect `.aw_docs/features/teamofone-routines-agents-forward-plan/` as the active planning context.
38
+ - Use `state.json`, `spec.md`, and `tasks.md` to identify likely target repos before declaring docs absent.
39
+ - Avoid saying the workspace has no glossary solely because `/workspace/CONTEXT.md` and `/workspace/docs/adr/` are absent.
40
+ - Avoid creating `/workspace/CONTEXT.md` or `/workspace/docs/adr/`.
41
+ - Say that durable context docs should be created only in the resolved target repo or bounded context after terms are agreed.
42
+
43
+ ## Failure Modes
44
+
45
+ The eval fails if the agent:
46
+
47
+ - Treats `/workspace/` as the domain root without checking `.aw_docs/features/`.
48
+ - Ignores the AW feature folder.
49
+ - Creates or proposes root-level context docs in the workspace container.
50
+ - Uses only generic `CONTEXT.md` / `docs/adr/` discovery language.