qlogicagent 2.16.8 → 2.16.10

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 (35) hide show
  1. package/dist/agent.js +20 -20
  2. package/dist/cli.js +429 -396
  3. package/dist/default-project-knowledge/INSTRUCTIONS.md +7 -7
  4. package/dist/default-project-knowledge/rules/project-workflow.md +6 -6
  5. package/dist/index.js +425 -392
  6. package/dist/runtime/infra/mcp-bridge-server.js +338 -0
  7. package/dist/skills/mcp/astraclaw-native-mcp-server.js +9 -0
  8. package/dist/types/agent/tool-loop/artifact-final-contract.d.ts +3 -0
  9. package/dist/types/cli/handlers/turn-handler.d.ts +2 -0
  10. package/dist/types/cli/pet-runtime.d.ts +5 -0
  11. package/dist/types/cli/skills-query-service.d.ts +6 -1
  12. package/dist/types/orchestration/delegation-coordinator.d.ts +1 -0
  13. package/dist/types/runtime/infra/agent-process.d.ts +6 -0
  14. package/dist/types/runtime/infra/astraclaw-capabilities.d.ts +30 -0
  15. package/dist/types/runtime/infra/electron-node.d.ts +36 -0
  16. package/dist/types/runtime/infra/native-mcp-config-sync.d.ts +16 -0
  17. package/dist/types/runtime/infra/skill-resolver.d.ts +4 -0
  18. package/dist/types/skills/mcp/astraclaw-native-mcp-server.d.ts +1 -0
  19. package/dist/types/skills/plugins/plugin-marketplace.d.ts +16 -0
  20. package/dist/types/skills/skill-system/skill-validation.d.ts +10 -0
  21. package/dist/types/skills/tools/skill-tool.d.ts +1 -1
  22. package/dist/vendor/hatch-pet/LICENSE.txt +201 -201
  23. package/dist/vendor/hatch-pet/NOTICE.md +25 -25
  24. package/dist/vendor/hatch-pet/references/animation-rows.md +29 -29
  25. package/dist/vendor/hatch-pet/references/codex-pet-contract.md +35 -35
  26. package/dist/vendor/hatch-pet/references/qa-rubric.md +66 -66
  27. package/dist/vendor/hatch-pet/scripts/compose_atlas.py +169 -169
  28. package/dist/vendor/hatch-pet/scripts/derive_running_left_from_running_right.py +150 -150
  29. package/dist/vendor/hatch-pet/scripts/extract_strip_frames.py +408 -408
  30. package/dist/vendor/hatch-pet/scripts/inspect_frames.py +256 -256
  31. package/dist/vendor/hatch-pet/scripts/make_contact_sheet.py +96 -96
  32. package/dist/vendor/hatch-pet/scripts/prepare_pet_run.py +834 -834
  33. package/dist/vendor/hatch-pet/scripts/render_animation_previews.py +78 -78
  34. package/dist/vendor/hatch-pet/scripts/validate_atlas.py +157 -157
  35. package/package.json +1 -1
@@ -1,7 +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.
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.
@@ -1,6 +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.
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.