@webpresso/agent-kit 3.1.25 → 3.1.28
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 +6 -10
- package/catalog/agent/commands/verify.md +2 -2
- package/catalog/agent/rules/changeset-release.md +7 -1
- package/catalog/agent/rules/workflow-skills-routing.md +6 -3
- package/catalog/agent/skills/autopilot/SKILL.md +48 -11
- package/catalog/agent/skills/claude/SKILL.md +7 -0
- package/catalog/agent/skills/codex/SKILL.md +7 -0
- package/catalog/agent/skills/fix/SKILL.md +33 -8
- package/catalog/agent/skills/grok/SKILL.md +7 -0
- package/catalog/agent/skills/investigate/SKILL.md +12 -1
- package/catalog/agent/skills/pll/SKILL.md +53 -48
- package/catalog/agent/skills/team/SKILL.md +26 -9
- package/catalog/agent/skills/ultragoal/SKILL.md +147 -19
- package/catalog/agent/skills/verify/SKILL.md +71 -51
- package/dist/esm/audit/blueprint-lifecycle-sql.d.ts +8 -0
- package/dist/esm/audit/blueprint-lifecycle-sql.js +25 -1
- package/dist/esm/ci/native-session-memory-cache.d.ts +9 -1
- package/dist/esm/ci/native-session-memory-cache.js +9 -1
- package/dist/esm/ci/vitest-ci-shards.d.ts +6 -4
- package/dist/esm/ci/vitest-ci-shards.js +6 -4
- package/dist/esm/cli/auto-update/guard-tombstone.d.ts +25 -0
- package/dist/esm/cli/auto-update/guard-tombstone.js +67 -0
- package/dist/esm/cli/auto-update/installer.d.ts +4 -17
- package/dist/esm/cli/auto-update/installer.js +6 -57
- package/dist/esm/cli/auto-update/self-invocation.d.ts +37 -0
- package/dist/esm/cli/auto-update/self-invocation.js +62 -0
- package/dist/esm/cli/commands/audit.js +1 -0
- package/dist/esm/cli/commands/dash/index.js +3 -3
- package/dist/esm/cli/commands/dash/plan-once-attention.d.ts +32 -0
- package/dist/esm/cli/commands/dash/plan-once-attention.js +50 -0
- package/dist/esm/cli/commands/dash/plan-once-schema.d.ts +73 -0
- package/dist/esm/cli/commands/dash/plan-once-schema.js +119 -0
- package/dist/esm/cli/commands/dash/plan-once.d.ts +122 -0
- package/dist/esm/cli/commands/dash/plan-once.js +224 -0
- package/dist/esm/cli/commands/dash/tui/ipc-protocol.d.ts +87 -0
- package/dist/esm/cli/commands/dash/tui/ipc-protocol.js +128 -0
- package/dist/esm/cli/commands/dash/tui/native-host.d.ts +34 -0
- package/dist/esm/cli/commands/dash/tui/native-host.js +256 -0
- package/dist/esm/cli/commands/dash/tui/native-path.d.ts +11 -0
- package/dist/esm/cli/commands/dash/tui/native-path.js +41 -0
- package/dist/esm/cli/commands/dash/tui/runtime.js +72 -0
- package/dist/esm/cli/commands/init/scaffolders/agent-kit-global/index.js +1 -1
- package/dist/esm/cli/commands/package-manager.js +2 -1
- package/dist/esm/cli/commands/quality-log-store.d.ts +6 -0
- package/dist/esm/cli/commands/quality-log-store.js +55 -15
- package/dist/esm/cli/commands/self-install-guard.d.ts +14 -16
- package/dist/esm/cli/commands/self-install-guard.js +17 -23
- package/dist/esm/hooks/guard-switch/index.js +8 -4
- package/dist/esm/hooks/post-tool/lint-after-edit.js +6 -4
- package/dist/esm/hooks/precompact/index.js +5 -3
- package/dist/esm/hooks/sessionstart/index.d.ts +10 -0
- package/dist/esm/hooks/sessionstart/index.js +61 -4
- package/dist/esm/hooks/shared/types.d.ts +11 -0
- package/dist/esm/hooks/shared/types.js +21 -0
- package/dist/esm/paths/state-root.js +36 -3
- package/dist/esm/session-memory/current-session.js +2 -0
- package/dist/esm/session-memory/native-runtime.js +5 -3
- package/dist/esm/session-memory/native-warm-markers.d.ts +18 -0
- package/dist/esm/session-memory/native-warm-markers.js +22 -0
- package/dist/esm/session-memory/sync/types.d.ts +4 -0
- package/dist/esm/session-memory/types.d.ts +3 -1
- package/dist/esm/session-memory/types.js +2 -0
- package/dist/esm/ultragoal/runtime.js +44 -2
- package/package.json +15 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webpresso/agent-kit",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.28",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "TypeScript-first agent harness for guarded develop/deploy workflows: wp CLI gates, MCP tools, hooks, memory, worktrees, secrets, audits, and evidence checks.",
|
|
6
6
|
"keywords": [
|
|
@@ -399,6 +399,9 @@
|
|
|
399
399
|
"prepare": "husky",
|
|
400
400
|
"mutation": "./bin/wp test --mutation",
|
|
401
401
|
"e2e": "./bin/wp e2e --config playwright.config.ts",
|
|
402
|
+
"native:dash-tui:build": "cargo build --manifest-path native/dash-tui/Cargo.toml --release",
|
|
403
|
+
"native:dash-tui:test": "cargo test --manifest-path native/dash-tui/Cargo.toml",
|
|
404
|
+
"native:dash-tui:smoke": "cargo run --manifest-path native/dash-tui/Cargo.toml --release -- --smoke",
|
|
402
405
|
"native:session-memory:build": "cargo build --manifest-path native/session-memory-engine/Cargo.toml --package session-memory-napi --release --locked",
|
|
403
406
|
"native:session-memory:fmt": "cargo fmt --manifest-path native/session-memory-engine/Cargo.toml --all -- --check",
|
|
404
407
|
"native:session-memory:clippy": "cargo clippy --manifest-path native/session-memory-engine/Cargo.toml --all-targets --all-features -- -D warnings",
|
|
@@ -499,16 +502,16 @@
|
|
|
499
502
|
"setupWpActionRef": "c2c71a7a4be446fc6858e6b57bf55a11ccfa2d88"
|
|
500
503
|
},
|
|
501
504
|
"optionalDependencies": {
|
|
502
|
-
"@webpresso/agent-kit-runtime-darwin-arm64": "3.1.
|
|
503
|
-
"@webpresso/agent-kit-runtime-darwin-x64": "3.1.
|
|
504
|
-
"@webpresso/agent-kit-runtime-linux-x64": "3.1.
|
|
505
|
-
"@webpresso/agent-kit-runtime-linux-arm64": "3.1.
|
|
506
|
-
"@webpresso/agent-kit-runtime-windows-x64": "3.1.
|
|
507
|
-
"@webpresso/agent-kit-session-memory-darwin-x64": "3.1.
|
|
508
|
-
"@webpresso/agent-kit-session-memory-darwin-arm64": "3.1.
|
|
509
|
-
"@webpresso/agent-kit-session-memory-linux-x64": "3.1.
|
|
510
|
-
"@webpresso/agent-kit-session-memory-linux-arm64": "3.1.
|
|
511
|
-
"@webpresso/agent-kit-session-memory-win32-x64": "3.1.
|
|
512
|
-
"@webpresso/agent-kit-session-memory-win32-arm64": "3.1.
|
|
505
|
+
"@webpresso/agent-kit-runtime-darwin-arm64": "3.1.28",
|
|
506
|
+
"@webpresso/agent-kit-runtime-darwin-x64": "3.1.28",
|
|
507
|
+
"@webpresso/agent-kit-runtime-linux-x64": "3.1.28",
|
|
508
|
+
"@webpresso/agent-kit-runtime-linux-arm64": "3.1.28",
|
|
509
|
+
"@webpresso/agent-kit-runtime-windows-x64": "3.1.28",
|
|
510
|
+
"@webpresso/agent-kit-session-memory-darwin-x64": "3.1.28",
|
|
511
|
+
"@webpresso/agent-kit-session-memory-darwin-arm64": "3.1.28",
|
|
512
|
+
"@webpresso/agent-kit-session-memory-linux-x64": "3.1.28",
|
|
513
|
+
"@webpresso/agent-kit-session-memory-linux-arm64": "3.1.28",
|
|
514
|
+
"@webpresso/agent-kit-session-memory-win32-x64": "3.1.28",
|
|
515
|
+
"@webpresso/agent-kit-session-memory-win32-arm64": "3.1.28"
|
|
513
516
|
}
|
|
514
517
|
}
|