sequant 1.17.0 → 1.19.0

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 (75) hide show
  1. package/.claude-plugin/marketplace.json +1 -1
  2. package/.claude-plugin/plugin.json +14 -2
  3. package/dist/bin/cli.js +7 -0
  4. package/dist/marketplace/external_plugins/sequant/.claude-plugin/plugin.json +21 -0
  5. package/dist/marketplace/external_plugins/sequant/README.md +38 -0
  6. package/dist/marketplace/external_plugins/sequant/hooks/post-tool.sh +292 -0
  7. package/dist/marketplace/external_plugins/sequant/hooks/pre-tool.sh +463 -0
  8. package/dist/marketplace/external_plugins/sequant/skills/_shared/references/prompt-templates.md +350 -0
  9. package/dist/marketplace/external_plugins/sequant/skills/_shared/references/subagent-types.md +131 -0
  10. package/dist/marketplace/external_plugins/sequant/skills/assess/SKILL.md +474 -0
  11. package/dist/marketplace/external_plugins/sequant/skills/clean/SKILL.md +211 -0
  12. package/dist/marketplace/external_plugins/sequant/skills/docs/SKILL.md +337 -0
  13. package/dist/marketplace/external_plugins/sequant/skills/exec/SKILL.md +807 -0
  14. package/dist/marketplace/external_plugins/sequant/skills/fullsolve/SKILL.md +678 -0
  15. package/dist/marketplace/external_plugins/sequant/skills/improve/SKILL.md +668 -0
  16. package/dist/marketplace/external_plugins/sequant/skills/loop/SKILL.md +374 -0
  17. package/dist/marketplace/external_plugins/sequant/skills/qa/SKILL.md +570 -0
  18. package/dist/marketplace/external_plugins/sequant/skills/qa/references/code-quality-exemplars.md +107 -0
  19. package/dist/marketplace/external_plugins/sequant/skills/qa/references/code-review-checklist.md +65 -0
  20. package/dist/marketplace/external_plugins/sequant/skills/qa/references/quality-gates.md +179 -0
  21. package/dist/marketplace/external_plugins/sequant/skills/qa/references/semgrep-rules.md +207 -0
  22. package/dist/marketplace/external_plugins/sequant/skills/qa/references/testing-requirements.md +109 -0
  23. package/dist/marketplace/external_plugins/sequant/skills/qa/scripts/quality-checks.sh +622 -0
  24. package/dist/marketplace/external_plugins/sequant/skills/reflect/SKILL.md +175 -0
  25. package/dist/marketplace/external_plugins/sequant/skills/reflect/references/documentation-tiers.md +70 -0
  26. package/dist/marketplace/external_plugins/sequant/skills/reflect/references/phase-reflection.md +95 -0
  27. package/dist/marketplace/external_plugins/sequant/skills/security-review/SKILL.md +358 -0
  28. package/dist/marketplace/external_plugins/sequant/skills/security-review/references/security-checklists.md +432 -0
  29. package/dist/marketplace/external_plugins/sequant/skills/solve/SKILL.md +697 -0
  30. package/dist/marketplace/external_plugins/sequant/skills/spec/SKILL.md +754 -0
  31. package/dist/marketplace/external_plugins/sequant/skills/spec/references/parallel-groups.md +72 -0
  32. package/dist/marketplace/external_plugins/sequant/skills/spec/references/recommended-workflow.md +92 -0
  33. package/dist/marketplace/external_plugins/sequant/skills/spec/references/verification-criteria.md +104 -0
  34. package/dist/marketplace/external_plugins/sequant/skills/test/SKILL.md +600 -0
  35. package/dist/marketplace/external_plugins/sequant/skills/testgen/SKILL.md +576 -0
  36. package/dist/marketplace/external_plugins/sequant/skills/verify/SKILL.md +281 -0
  37. package/dist/src/commands/conventions.d.ts +9 -0
  38. package/dist/src/commands/conventions.js +61 -0
  39. package/dist/src/commands/init.js +12 -0
  40. package/dist/src/commands/run.d.ts +13 -280
  41. package/dist/src/commands/run.js +23 -1956
  42. package/dist/src/commands/sync.js +3 -0
  43. package/dist/src/commands/update.js +3 -0
  44. package/dist/src/lib/conventions-detector.d.ts +62 -0
  45. package/dist/src/lib/conventions-detector.js +510 -0
  46. package/dist/src/lib/plugin-version-sync.d.ts +2 -1
  47. package/dist/src/lib/plugin-version-sync.js +28 -7
  48. package/dist/src/lib/settings.d.ts +8 -0
  49. package/dist/src/lib/settings.js +1 -0
  50. package/dist/src/lib/solve-comment-parser.d.ts +26 -0
  51. package/dist/src/lib/solve-comment-parser.js +63 -7
  52. package/dist/src/lib/stacks.d.ts +4 -2
  53. package/dist/src/lib/stacks.js +43 -3
  54. package/dist/src/lib/workflow/batch-executor.d.ts +117 -0
  55. package/dist/src/lib/workflow/batch-executor.js +574 -0
  56. package/dist/src/lib/workflow/phase-executor.d.ts +40 -0
  57. package/dist/src/lib/workflow/phase-executor.js +381 -0
  58. package/dist/src/lib/workflow/phase-mapper.d.ts +65 -0
  59. package/dist/src/lib/workflow/phase-mapper.js +147 -0
  60. package/dist/src/lib/workflow/pr-operations.d.ts +86 -0
  61. package/dist/src/lib/workflow/pr-operations.js +326 -0
  62. package/dist/src/lib/workflow/pr-status.d.ts +9 -7
  63. package/dist/src/lib/workflow/pr-status.js +13 -11
  64. package/dist/src/lib/workflow/run-summary.d.ts +36 -0
  65. package/dist/src/lib/workflow/run-summary.js +142 -0
  66. package/dist/src/lib/workflow/state-schema.d.ts +5 -5
  67. package/dist/src/lib/workflow/worktree-manager.d.ts +205 -0
  68. package/dist/src/lib/workflow/worktree-manager.js +918 -0
  69. package/package.json +3 -1
  70. package/templates/skills/exec/SKILL.md +1086 -29
  71. package/templates/skills/fullsolve/SKILL.md +11 -1
  72. package/templates/skills/qa/SKILL.md +1758 -142
  73. package/templates/skills/solve/SKILL.md +86 -0
  74. package/templates/skills/spec/SKILL.md +53 -0
  75. package/templates/skills/test/SKILL.md +256 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sequant",
3
- "version": "1.17.0",
3
+ "version": "1.19.0",
4
4
  "description": "Quantize your development workflow - Sequential AI phases with quality gates",
5
5
  "type": "module",
6
6
  "bin": {
@@ -27,6 +27,8 @@
27
27
  "lint": "eslint src/ bin/ --max-warnings 0",
28
28
  "sync:skills": "cp -r templates/skills/* .claude/skills/",
29
29
  "validate:skills": "for skill in templates/skills/*/; do npx skills-ref validate \"$skill\"; done",
30
+ "prepare:marketplace": "npx tsx scripts/prepare-marketplace.ts",
31
+ "validate:marketplace": "npx tsx scripts/prepare-marketplace.ts --validate-only",
30
32
  "prepublishOnly": "npm run build"
31
33
  },
32
34
  "keywords": [