@ai-content-space/loopx 0.2.2 → 0.2.4

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 (50) hide show
  1. package/README.md +6 -1
  2. package/README.zh-CN.md +6 -1
  3. package/docs/loopx/design/loopx-skill-suite-v1-design.md +4 -3
  4. package/package.json +1 -1
  5. package/plugins/loopx/.codex-plugin/plugin.json +1 -1
  6. package/plugins/loopx/skills/clarify/SKILL.md +1 -1
  7. package/plugins/loopx/skills/debug/SKILL.md +1 -1
  8. package/plugins/loopx/skills/doc-readability/SKILL.md +222 -0
  9. package/plugins/loopx/skills/doc-readability/references/prd.md +269 -0
  10. package/plugins/loopx/skills/exec/SKILL.md +7 -2
  11. package/plugins/loopx/skills/final-review/SKILL.md +1 -1
  12. package/plugins/loopx/skills/finish/SKILL.md +1 -1
  13. package/plugins/loopx/skills/fix-review/SKILL.md +1 -1
  14. package/plugins/loopx/skills/go-style/SKILL.md +8 -2
  15. package/plugins/loopx/skills/kratos/SKILL.md +1 -1
  16. package/plugins/loopx/skills/plan/SKILL.md +3 -3
  17. package/plugins/loopx/skills/refactor-plan/SKILL.md +1 -1
  18. package/plugins/loopx/skills/review/SKILL.md +1 -1
  19. package/plugins/loopx/skills/spec/SKILL.md +1 -1
  20. package/plugins/loopx/skills/subagent-exec/SKILL.md +1 -1
  21. package/plugins/loopx/skills/subagent-exec/agents/openai.yaml +2 -2
  22. package/plugins/loopx/skills/subagent-exec/codex-subagents.md +1 -1
  23. package/plugins/loopx/skills/tdd/SKILL.md +1 -1
  24. package/plugins/loopx/skills/verify/SKILL.md +1 -1
  25. package/scripts/codex-workflow-hook.mjs +36 -5
  26. package/skills/RESOLVER.md +3 -1
  27. package/skills/clarify/SKILL.md +1 -1
  28. package/skills/debug/SKILL.md +1 -1
  29. package/skills/doc-readability/SKILL.md +222 -0
  30. package/skills/doc-readability/references/prd.md +269 -0
  31. package/skills/exec/SKILL.md +7 -2
  32. package/skills/final-review/SKILL.md +1 -1
  33. package/skills/finish/SKILL.md +1 -1
  34. package/skills/fix-review/SKILL.md +1 -1
  35. package/skills/go-style/SKILL.md +8 -2
  36. package/skills/kratos/SKILL.md +1 -1
  37. package/skills/plan/SKILL.md +3 -3
  38. package/skills/refactor-plan/SKILL.md +1 -1
  39. package/skills/review/SKILL.md +1 -1
  40. package/skills/spec/SKILL.md +1 -1
  41. package/skills/subagent-exec/SKILL.md +1 -1
  42. package/skills/subagent-exec/agents/openai.yaml +2 -2
  43. package/skills/subagent-exec/codex-subagents.md +1 -1
  44. package/skills/tdd/SKILL.md +1 -1
  45. package/skills/verify/SKILL.md +1 -1
  46. package/src/build-stop-gate.mjs +1 -1
  47. package/src/cli.mjs +5 -1
  48. package/src/install-discovery.mjs +1 -28
  49. package/src/next-skill.mjs +46 -5
  50. package/src/workflow.mjs +4 -4
package/src/workflow.mjs CHANGED
@@ -118,7 +118,7 @@ function reviewReportArtifactPath(slug) {
118
118
  }
119
119
 
120
120
  function reviewReworkBuildCommand(slug) {
121
- return `$build --from-review ${reviewReportArtifactPath(slug)}`;
121
+ return `loopx build --from-review ${reviewReportArtifactPath(slug)}`;
122
122
  }
123
123
 
124
124
  function nowIso() {
@@ -4203,7 +4203,7 @@ export async function buildStage(cwd, slug, options = {}) {
4203
4203
  active_delegation_count: delegationLedger?.active_blocking_count || 0,
4204
4204
  completion_audit_path: displayPath(cwd, completionAuditPath),
4205
4205
  completion_audit_status: completionAudit?.status || 'pending',
4206
- next_action: 'Continue $build execution and gather fresh implementation evidence.',
4206
+ next_action: 'Continue loopx build execution and gather fresh implementation evidence.',
4207
4207
  completion_signal: 'Build may stop only after execution-record.md is complete and build -> review handoff readiness is reached, or after a real blocker is recorded.',
4208
4208
  });
4209
4209
  current = await adapter.executeLanes({
@@ -4271,7 +4271,7 @@ export async function buildStage(cwd, slug, options = {}) {
4271
4271
  completion_audit_status: completionAudit.status,
4272
4272
  next_action: blockers.length === 0
4273
4273
  ? 'Verify execution evidence and prepare build -> review handoff.'
4274
- : 'Continue $build to resolve blockers before review handoff.',
4274
+ : 'Continue loopx build to resolve blockers before review handoff.',
4275
4275
  completion_signal: 'Build may stop only after execution-record.md is complete and build -> review handoff readiness is reached, or after a real blocker is recorded.',
4276
4276
  });
4277
4277
  const writtenSupportPaths = await writeBuildSupportArtifacts(root, current, noDeslop, {
@@ -4373,7 +4373,7 @@ export async function buildStage(cwd, slug, options = {}) {
4373
4373
  active_delegation_count: delegationLedger?.active_blocking_count || 0,
4374
4374
  completion_audit_path: displayPath(cwd, completionAuditPath),
4375
4375
  completion_audit_status: completionAudit?.status || (finalBlocked ? 'blocked' : 'passed'),
4376
- next_action: finalBlocked ? 'Run $build again after resolving recorded blockers.' : 'Approve build -> review and run $review.',
4376
+ next_action: finalBlocked ? 'Run loopx build again after resolving recorded blockers.' : 'Approve build -> review and run $review.',
4377
4377
  completion_signal: finalBlocked ? 'Build is stopped because real blockers remain recorded.' : 'execution-record.md is complete and build -> review handoff is ready.',
4378
4378
  execution_record_status: next.execution_record_status,
4379
4379
  execution_record_path: artifactPath(root, 'execution-record.md'),