qlogicagent 2.16.6 → 2.16.8

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 (97) hide show
  1. package/dist/agent.js +16 -16
  2. package/dist/cli.js +412 -413
  3. package/dist/default-project-knowledge/INSTRUCTIONS.md +7 -0
  4. package/dist/default-project-knowledge/rules/project-workflow.md +6 -0
  5. package/dist/index.js +411 -412
  6. package/dist/protocol.js +1 -1
  7. package/dist/types/cli/agent-runtime-bootstrap.d.ts +1 -0
  8. package/dist/types/cli/base-tool-bootstrap.d.ts +3 -0
  9. package/dist/types/cli/handlers/community-handler.d.ts +2 -28
  10. package/dist/types/cli/handlers/files-handler.d.ts +6 -0
  11. package/dist/types/cli/handlers/message-feedback-handler.d.ts +31 -0
  12. package/dist/types/cli/handlers/pet-handler.d.ts +1 -0
  13. package/dist/types/cli/handlers/project-handler.d.ts +1 -0
  14. package/dist/types/cli/handlers/turn-baseline-handler.d.ts +8 -0
  15. package/dist/types/cli/handlers/turn-handler.d.ts +5 -0
  16. package/dist/types/cli/handlers/workflow-handler.d.ts +0 -11
  17. package/dist/types/cli/handlers/working-materials-handler.d.ts +9 -0
  18. package/dist/types/cli/idle-dream-coordinator.d.ts +6 -0
  19. package/dist/types/cli/mcp-bootstrap.d.ts +1 -0
  20. package/dist/types/cli/memory-coordinator.d.ts +1 -0
  21. package/dist/types/cli/project-template-seeder.d.ts +2 -2
  22. package/dist/types/cli/rpc-registry.d.ts +6 -0
  23. package/dist/types/cli/runtime-hook-bootstrap.d.ts +1 -0
  24. package/dist/types/cli/stdio-agent-session-bootstrap.d.ts +1 -0
  25. package/dist/types/cli/stdio-rpc-handler-hosts.d.ts +1 -0
  26. package/dist/types/cli/stdio-runtime-bootstrap.d.ts +1 -0
  27. package/dist/types/cli/tool-bootstrap-community-registration.d.ts +0 -6
  28. package/dist/types/cli/tool-bootstrap-core-registration.d.ts +2 -0
  29. package/dist/types/cli/tool-bootstrap.d.ts +2 -0
  30. package/dist/types/cli/turn-skill-autopersist.d.ts +0 -25
  31. package/dist/types/protocol/methods.d.ts +24 -201
  32. package/dist/types/protocol/wire/agent-events.d.ts +2 -2
  33. package/dist/types/protocol/wire/agent-methods.d.ts +10 -205
  34. package/dist/types/protocol/wire/gateway-rpc.d.ts +160 -0
  35. package/dist/types/protocol/wire/notification-payloads.d.ts +34 -0
  36. package/dist/types/runtime/community/community-consent-client.d.ts +9 -186
  37. package/dist/types/runtime/community/community-discovery-coordinator.d.ts +1 -1
  38. package/dist/types/runtime/infra/default-path-service.d.ts +1 -1
  39. package/dist/types/runtime/infra/feedback-distillation-worker.d.ts +20 -0
  40. package/dist/types/runtime/infra/feedback-distillation.d.ts +30 -0
  41. package/dist/types/runtime/infra/feedback-event-store.d.ts +179 -0
  42. package/dist/types/runtime/infra/feedback-outbox.d.ts +26 -0
  43. package/dist/types/runtime/infra/feedback-redaction.d.ts +71 -0
  44. package/dist/types/runtime/infra/feedback-upload-client.d.ts +40 -0
  45. package/dist/types/runtime/infra/feedback-upload-worker.d.ts +11 -0
  46. package/dist/types/runtime/infra/project-data-paths.d.ts +5 -5
  47. package/dist/types/runtime/infra/turn-baseline-store.d.ts +102 -0
  48. package/dist/types/runtime/infra/turn-telemetry-store.d.ts +59 -0
  49. package/dist/types/runtime/infra/working-materials-store.d.ts +35 -0
  50. package/dist/types/runtime/pet/daily-journey-summarizer.d.ts +25 -0
  51. package/dist/types/runtime/pet/index.d.ts +2 -1
  52. package/dist/types/runtime/pet/journey-catchup.d.ts +14 -0
  53. package/dist/types/runtime/pet/journey-day-aggregator.d.ts +27 -0
  54. package/dist/types/runtime/pet/journey-narrative-prompt.d.ts +8 -0
  55. package/dist/types/runtime/pet/pet-profile-service.d.ts +14 -1
  56. package/dist/types/runtime/ports/memory-provider.d.ts +6 -0
  57. package/dist/types/runtime/ports/path-service.d.ts +1 -1
  58. package/dist/types/runtime/ports/tool-contracts.d.ts +2 -0
  59. package/dist/types/runtime/prompt/fresh-workspace-evidence.d.ts +14 -0
  60. package/dist/types/runtime/prompt/instruction-loader.d.ts +7 -7
  61. package/dist/types/skills/mcp/mcp-manager.d.ts +11 -0
  62. package/dist/types/skills/memory/local-memory-provider.d.ts +3 -3
  63. package/dist/types/skills/memory/local-store-records.d.ts +18 -1
  64. package/dist/types/skills/memory/local-store.d.ts +8 -195
  65. package/dist/types/skills/memory/memory-consolidation.d.ts +14 -0
  66. package/dist/types/skills/memory/sqlite-memory-schema.d.ts +1 -1
  67. package/dist/types/skills/plugins/plugin-marketplace.d.ts +1 -1
  68. package/dist/types/skills/tools/community-seek-tool.d.ts +0 -33
  69. package/dist/types/skills/tools/instructions-tool.d.ts +2 -2
  70. package/dist/types/skills/tools/skill-tool.d.ts +1 -1
  71. package/dist/vendor/hatch-pet/LICENSE.txt +201 -201
  72. package/dist/vendor/hatch-pet/NOTICE.md +25 -25
  73. package/dist/vendor/hatch-pet/references/animation-rows.md +29 -29
  74. package/dist/vendor/hatch-pet/references/codex-pet-contract.md +35 -35
  75. package/dist/vendor/hatch-pet/references/qa-rubric.md +66 -66
  76. package/dist/vendor/hatch-pet/scripts/compose_atlas.py +169 -169
  77. package/dist/vendor/hatch-pet/scripts/derive_running_left_from_running_right.py +150 -150
  78. package/dist/vendor/hatch-pet/scripts/extract_strip_frames.py +408 -408
  79. package/dist/vendor/hatch-pet/scripts/inspect_frames.py +256 -256
  80. package/dist/vendor/hatch-pet/scripts/make_contact_sheet.py +96 -96
  81. package/dist/vendor/hatch-pet/scripts/prepare_pet_run.py +834 -834
  82. package/dist/vendor/hatch-pet/scripts/render_animation_previews.py +78 -78
  83. package/dist/vendor/hatch-pet/scripts/validate_atlas.py +157 -157
  84. package/package.json +1 -1
  85. package/dist/types/runtime/community/activity-event-emitter.d.ts +0 -31
  86. package/dist/types/runtime/community/activity-event.d.ts +0 -62
  87. package/dist/types/runtime/community/community-desensitization-red-team-cli.d.ts +0 -7
  88. package/dist/types/runtime/community/community-desensitization.d.ts +0 -29
  89. package/dist/types/runtime/community/community-pet-publisher.d.ts +0 -27
  90. package/dist/types/runtime/community/community-signal-reporter.d.ts +0 -19
  91. package/dist/types/runtime/community/community-telemetry-metadata.d.ts +0 -4
  92. package/dist/types/runtime/community/community-telemetry-recorder.d.ts +0 -6
  93. package/dist/types/runtime/community/community-telemetry-types.d.ts +0 -1
  94. package/dist/types/runtime/community/pet-activity-sink.d.ts +0 -36
  95. package/dist/types/runtime/community/pet-key.d.ts +0 -7
  96. package/dist/types/runtime/community/roaming-gate.d.ts +0 -19
  97. package/dist/types/runtime/community/social-emission.d.ts +0 -16
@@ -0,0 +1,7 @@
1
+ # Project Knowledge Base
2
+
3
+ Keep this file focused on durable context for this project.
4
+
5
+ - Record project goals, constraints, product decisions, and long-lived assumptions here.
6
+ - Put repeatable workflow, coding, review, and testing rules in `.qlogicagent/rules/*.md`.
7
+ - Update this knowledge base when project conventions change so future agent turns inherit them.
@@ -0,0 +1,6 @@
1
+ # Project Workflow Rules
2
+
3
+ - Prefer the project's existing architecture, naming, and file ownership.
4
+ - Keep changes scoped to the requested behavior.
5
+ - Verify changes with the smallest meaningful test, build, or browser check.
6
+ - Store durable project conventions in the project knowledge base instead of repeating them in chat.