@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.
Files changed (64) hide show
  1. package/catalog/AGENTS.md.tpl +6 -10
  2. package/catalog/agent/commands/verify.md +2 -2
  3. package/catalog/agent/rules/changeset-release.md +7 -1
  4. package/catalog/agent/rules/workflow-skills-routing.md +6 -3
  5. package/catalog/agent/skills/autopilot/SKILL.md +48 -11
  6. package/catalog/agent/skills/claude/SKILL.md +7 -0
  7. package/catalog/agent/skills/codex/SKILL.md +7 -0
  8. package/catalog/agent/skills/fix/SKILL.md +33 -8
  9. package/catalog/agent/skills/grok/SKILL.md +7 -0
  10. package/catalog/agent/skills/investigate/SKILL.md +12 -1
  11. package/catalog/agent/skills/pll/SKILL.md +53 -48
  12. package/catalog/agent/skills/team/SKILL.md +26 -9
  13. package/catalog/agent/skills/ultragoal/SKILL.md +147 -19
  14. package/catalog/agent/skills/verify/SKILL.md +71 -51
  15. package/dist/esm/audit/blueprint-lifecycle-sql.d.ts +8 -0
  16. package/dist/esm/audit/blueprint-lifecycle-sql.js +25 -1
  17. package/dist/esm/ci/native-session-memory-cache.d.ts +9 -1
  18. package/dist/esm/ci/native-session-memory-cache.js +9 -1
  19. package/dist/esm/ci/vitest-ci-shards.d.ts +6 -4
  20. package/dist/esm/ci/vitest-ci-shards.js +6 -4
  21. package/dist/esm/cli/auto-update/guard-tombstone.d.ts +25 -0
  22. package/dist/esm/cli/auto-update/guard-tombstone.js +67 -0
  23. package/dist/esm/cli/auto-update/installer.d.ts +4 -17
  24. package/dist/esm/cli/auto-update/installer.js +6 -57
  25. package/dist/esm/cli/auto-update/self-invocation.d.ts +37 -0
  26. package/dist/esm/cli/auto-update/self-invocation.js +62 -0
  27. package/dist/esm/cli/commands/audit.js +1 -0
  28. package/dist/esm/cli/commands/dash/index.js +3 -3
  29. package/dist/esm/cli/commands/dash/plan-once-attention.d.ts +32 -0
  30. package/dist/esm/cli/commands/dash/plan-once-attention.js +50 -0
  31. package/dist/esm/cli/commands/dash/plan-once-schema.d.ts +73 -0
  32. package/dist/esm/cli/commands/dash/plan-once-schema.js +119 -0
  33. package/dist/esm/cli/commands/dash/plan-once.d.ts +122 -0
  34. package/dist/esm/cli/commands/dash/plan-once.js +224 -0
  35. package/dist/esm/cli/commands/dash/tui/ipc-protocol.d.ts +87 -0
  36. package/dist/esm/cli/commands/dash/tui/ipc-protocol.js +128 -0
  37. package/dist/esm/cli/commands/dash/tui/native-host.d.ts +34 -0
  38. package/dist/esm/cli/commands/dash/tui/native-host.js +256 -0
  39. package/dist/esm/cli/commands/dash/tui/native-path.d.ts +11 -0
  40. package/dist/esm/cli/commands/dash/tui/native-path.js +41 -0
  41. package/dist/esm/cli/commands/dash/tui/runtime.js +72 -0
  42. package/dist/esm/cli/commands/init/scaffolders/agent-kit-global/index.js +1 -1
  43. package/dist/esm/cli/commands/package-manager.js +2 -1
  44. package/dist/esm/cli/commands/quality-log-store.d.ts +6 -0
  45. package/dist/esm/cli/commands/quality-log-store.js +55 -15
  46. package/dist/esm/cli/commands/self-install-guard.d.ts +14 -16
  47. package/dist/esm/cli/commands/self-install-guard.js +17 -23
  48. package/dist/esm/hooks/guard-switch/index.js +8 -4
  49. package/dist/esm/hooks/post-tool/lint-after-edit.js +6 -4
  50. package/dist/esm/hooks/precompact/index.js +5 -3
  51. package/dist/esm/hooks/sessionstart/index.d.ts +10 -0
  52. package/dist/esm/hooks/sessionstart/index.js +61 -4
  53. package/dist/esm/hooks/shared/types.d.ts +11 -0
  54. package/dist/esm/hooks/shared/types.js +21 -0
  55. package/dist/esm/paths/state-root.js +36 -3
  56. package/dist/esm/session-memory/current-session.js +2 -0
  57. package/dist/esm/session-memory/native-runtime.js +5 -3
  58. package/dist/esm/session-memory/native-warm-markers.d.ts +18 -0
  59. package/dist/esm/session-memory/native-warm-markers.js +22 -0
  60. package/dist/esm/session-memory/sync/types.d.ts +4 -0
  61. package/dist/esm/session-memory/types.d.ts +3 -1
  62. package/dist/esm/session-memory/types.js +2 -0
  63. package/dist/esm/ultragoal/runtime.js +44 -2
  64. 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.25",
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.25",
503
- "@webpresso/agent-kit-runtime-darwin-x64": "3.1.25",
504
- "@webpresso/agent-kit-runtime-linux-x64": "3.1.25",
505
- "@webpresso/agent-kit-runtime-linux-arm64": "3.1.25",
506
- "@webpresso/agent-kit-runtime-windows-x64": "3.1.25",
507
- "@webpresso/agent-kit-session-memory-darwin-x64": "3.1.25",
508
- "@webpresso/agent-kit-session-memory-darwin-arm64": "3.1.25",
509
- "@webpresso/agent-kit-session-memory-linux-x64": "3.1.25",
510
- "@webpresso/agent-kit-session-memory-linux-arm64": "3.1.25",
511
- "@webpresso/agent-kit-session-memory-win32-x64": "3.1.25",
512
- "@webpresso/agent-kit-session-memory-win32-arm64": "3.1.25"
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
  }