@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.
- package/catalog/AGENTS.md.tpl +3 -5
- package/catalog/agent/skills/verify/SKILL.md +12 -12
- package/catalog/compose/admin-blocks-registry.json +659 -0
- package/dist/esm/blueprint/core/parser.js +2 -4
- package/dist/esm/blueprint/core/validation/criteria.js +2 -1
- package/dist/esm/blueprint/lifecycle/review-provenance.js +85 -30
- package/dist/esm/build/cli-mcp-parity.js +3 -2
- package/dist/esm/build/package-manifest.js +7 -2
- package/dist/esm/cli/commands/audit-core.js +9 -1
- package/dist/esm/cli/commands/audit.js +16 -5
- package/dist/esm/cli/commands/init/mcp-spec.d.ts +18 -3
- package/dist/esm/cli/commands/init/mcp-spec.js +54 -6
- package/dist/esm/cli/commands/init/scaffold-agents-md.js +5 -7
- package/dist/esm/cli/commands/package-manager.js +8 -2
- package/dist/esm/compose/compose.d.ts +38 -0
- package/dist/esm/compose/compose.js +143 -0
- package/dist/esm/compose/escape-html.d.ts +5 -0
- package/dist/esm/compose/escape-html.js +12 -0
- package/dist/esm/compose/ops-report-render.d.ts +5 -0
- package/dist/esm/compose/ops-report-render.js +71 -0
- package/dist/esm/compose/ops-report-schema.d.ts +42 -0
- package/dist/esm/compose/ops-report-schema.js +46 -0
- package/dist/esm/compose/preview.d.ts +14 -0
- package/dist/esm/compose/preview.js +32 -0
- package/dist/esm/compose/registry-resolve.d.ts +47 -0
- package/dist/esm/compose/registry-resolve.js +133 -0
- package/dist/esm/git/changed-files.d.ts +20 -0
- package/dist/esm/git/changed-files.js +63 -0
- package/dist/esm/hooks/stop/qa-changed-files.js +6 -1
- package/dist/esm/mcp/blueprint/handlers/validate.js +6 -0
- package/dist/esm/mcp/tools/_names.d.ts +1 -1
- package/dist/esm/mcp/tools/_names.js +4 -0
- package/dist/esm/mcp/tools/_registry.js +8 -0
- package/dist/esm/mcp/tools/release-progress.d.ts +9 -0
- package/dist/esm/mcp/tools/release-progress.js +110 -0
- package/dist/esm/mcp/tools/wp-ui-blocks-list.d.ts +3 -0
- package/dist/esm/mcp/tools/wp-ui-blocks-list.js +43 -0
- package/dist/esm/mcp/tools/wp-ui-compose.d.ts +3 -0
- package/dist/esm/mcp/tools/wp-ui-compose.js +62 -0
- package/dist/esm/mcp/tools/wp-ui-preview.d.ts +3 -0
- package/dist/esm/mcp/tools/wp-ui-preview.js +52 -0
- package/dist/esm/package.json +2 -0
- package/package.json +23 -12
package/catalog/AGENTS.md.tpl
CHANGED
|
@@ -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
|
|
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
|
|
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
|
-
-
|
|
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`
|
|
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
|
|