@webpresso/agent-kit 3.3.2 → 3.3.3

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.
Files changed (43) hide show
  1. package/catalog/AGENTS.md.tpl +3 -5
  2. package/catalog/agent/skills/verify/SKILL.md +12 -12
  3. package/catalog/compose/admin-blocks-registry.json +659 -0
  4. package/dist/esm/blueprint/core/parser.js +2 -4
  5. package/dist/esm/blueprint/core/validation/criteria.js +2 -1
  6. package/dist/esm/blueprint/lifecycle/review-provenance.js +85 -30
  7. package/dist/esm/build/cli-mcp-parity.js +3 -2
  8. package/dist/esm/build/package-manifest.js +7 -2
  9. package/dist/esm/cli/commands/audit-core.js +9 -1
  10. package/dist/esm/cli/commands/audit.js +16 -5
  11. package/dist/esm/cli/commands/init/mcp-spec.d.ts +18 -3
  12. package/dist/esm/cli/commands/init/mcp-spec.js +54 -6
  13. package/dist/esm/cli/commands/init/scaffold-agents-md.js +5 -7
  14. package/dist/esm/cli/commands/package-manager.js +8 -2
  15. package/dist/esm/compose/compose.d.ts +38 -0
  16. package/dist/esm/compose/compose.js +143 -0
  17. package/dist/esm/compose/escape-html.d.ts +5 -0
  18. package/dist/esm/compose/escape-html.js +12 -0
  19. package/dist/esm/compose/ops-report-render.d.ts +5 -0
  20. package/dist/esm/compose/ops-report-render.js +71 -0
  21. package/dist/esm/compose/ops-report-schema.d.ts +42 -0
  22. package/dist/esm/compose/ops-report-schema.js +46 -0
  23. package/dist/esm/compose/preview.d.ts +14 -0
  24. package/dist/esm/compose/preview.js +32 -0
  25. package/dist/esm/compose/registry-resolve.d.ts +47 -0
  26. package/dist/esm/compose/registry-resolve.js +133 -0
  27. package/dist/esm/git/changed-files.d.ts +20 -0
  28. package/dist/esm/git/changed-files.js +63 -0
  29. package/dist/esm/hooks/stop/qa-changed-files.js +6 -1
  30. package/dist/esm/mcp/blueprint/handlers/validate.js +6 -0
  31. package/dist/esm/mcp/tools/_names.d.ts +1 -1
  32. package/dist/esm/mcp/tools/_names.js +4 -0
  33. package/dist/esm/mcp/tools/_registry.js +8 -0
  34. package/dist/esm/mcp/tools/release-progress.d.ts +9 -0
  35. package/dist/esm/mcp/tools/release-progress.js +110 -0
  36. package/dist/esm/mcp/tools/wp-ui-blocks-list.d.ts +3 -0
  37. package/dist/esm/mcp/tools/wp-ui-blocks-list.js +43 -0
  38. package/dist/esm/mcp/tools/wp-ui-compose.d.ts +3 -0
  39. package/dist/esm/mcp/tools/wp-ui-compose.js +62 -0
  40. package/dist/esm/mcp/tools/wp-ui-preview.d.ts +3 -0
  41. package/dist/esm/mcp/tools/wp-ui-preview.js +52 -0
  42. package/dist/esm/package.json +2 -0
  43. package/package.json +23 -12
@@ -10,14 +10,12 @@ Prefer repo-local instructions when more specific.
10
10
  wp install && wp run setup:agent && wp sync # setup and sync are separate, idempotent steps
11
11
  ```
12
12
 
13
- agent-kit's catalog is the single source of truth for generated agent surfaces.
14
- Agent-kit owns generated agent surfaces here; Webpresso CLI owns the end-user command surface.
13
+ agent-kit catalog is SSOT for generated agent surfaces; Webpresso CLI owns the end-user command surface.
15
14
 
16
- - Optional agent tools can be WP-owned with `wp install codex|claude-code|opencode` or `wp install oh-my opencode`; `openagent` aliases the latter, and WP-owned scopes use `wp update`.
15
+ - Optional agent tools: `wp install codex|claude-code|opencode` or `wp install oh-my opencode` (`openagent` aliases the latter); WP-owned scopes use `wp update`.
17
16
  - `wp setup` repairs the managed `.gitignore` block for regenerated surfaces.
18
- - Consumer repos use global `wp`, keep only `@webpresso/agent-config` locally, and do not add local `@webpresso/agent-kit`.
17
+ - Consumers use global `wp` + local `@webpresso/agent-config` only (no local `@webpresso/agent-kit`).
19
18
  - Track repo-owned instruction sources (`AGENTS.md`, `agent-rules/`, `agent-skills/`); ignore generated/runtime surfaces (`.agent/`, `.agents/`, `.codex/`, `.opencode/`, etc.).
20
-
21
19
  - Keep the generated default `AGENTS.md` under 8 KB.
22
20
 
23
21
  Codex routing instruction surface:
@@ -35,18 +35,18 @@ the preferred skill (`claude` / `codex` / `grok` / one OpenCode Go), then stops.
35
35
 
36
36
  ## Tooling map
37
37
 
38
- | Gate | Prefer |
39
- | ------------------------- | --------------------------------------------------------------- |
40
- | Lint / types / tests / QA | `wp_lint`, `wp_typecheck`, `wp_test`, `wp_qa` |
41
- | Format | `wp_format` |
42
- | Audits | `wp_audit`, `wp_audits` |
43
- | Blueprint | blueprint MCP tools + `wp audit blueprint-lifecycle` |
44
- | PR / CI wait | `wp_pr_status`, `wp_pr_wait` (not multi-sleep loops) |
45
- | Release | `wp_release_readiness` when shipping |
46
- | Large output | `wp_session_execute` / `batch_execute` / `execute_file` |
47
- | Continuity | `wp_session_capture` for verify summary; avoid paste-back walls |
48
- | E2E / act | `wp_e2e`, `wp_ci_act` when the change requires them |
49
- | Outside authority | `wp review gate` (not raw multi-agent review swarms) |
38
+ | Gate | Prefer |
39
+ | ------------------------- | --------------------------------------------------------------------------------------- |
40
+ | Lint / types / tests / QA | `wp_lint`, `wp_typecheck`, `wp_test`, `wp_qa` |
41
+ | Format | `wp_format` |
42
+ | Audits | `wp_audit`, `wp_audits` |
43
+ | Blueprint | blueprint MCP tools + `wp audit blueprint-lifecycle` |
44
+ | PR / CI wait | `wp_pr_status`, `wp_pr_wait` (not multi-sleep loops) |
45
+ | Release | `wp_release_progress` for live Release phases; `wp_release_readiness` for package gates |
46
+ | Large output | `wp_session_execute` / `batch_execute` / `execute_file` |
47
+ | Continuity | `wp_session_capture` for verify summary; avoid paste-back walls |
48
+ | E2E / act | `wp_e2e`, `wp_ci_act` when the change requires them |
49
+ | Outside authority | `wp review gate` (not raw multi-agent review swarms) |
50
50
 
51
51
  ## Iron law — evidence before claims
52
52