@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.
- package/README.md +6 -1
- package/README.zh-CN.md +6 -1
- package/docs/loopx/design/loopx-skill-suite-v1-design.md +4 -3
- package/package.json +1 -1
- package/plugins/loopx/.codex-plugin/plugin.json +1 -1
- package/plugins/loopx/skills/clarify/SKILL.md +1 -1
- package/plugins/loopx/skills/debug/SKILL.md +1 -1
- package/plugins/loopx/skills/doc-readability/SKILL.md +222 -0
- package/plugins/loopx/skills/doc-readability/references/prd.md +269 -0
- package/plugins/loopx/skills/exec/SKILL.md +7 -2
- package/plugins/loopx/skills/final-review/SKILL.md +1 -1
- package/plugins/loopx/skills/finish/SKILL.md +1 -1
- package/plugins/loopx/skills/fix-review/SKILL.md +1 -1
- package/plugins/loopx/skills/go-style/SKILL.md +8 -2
- package/plugins/loopx/skills/kratos/SKILL.md +1 -1
- package/plugins/loopx/skills/plan/SKILL.md +3 -3
- package/plugins/loopx/skills/refactor-plan/SKILL.md +1 -1
- package/plugins/loopx/skills/review/SKILL.md +1 -1
- package/plugins/loopx/skills/spec/SKILL.md +1 -1
- package/plugins/loopx/skills/subagent-exec/SKILL.md +1 -1
- package/plugins/loopx/skills/subagent-exec/agents/openai.yaml +2 -2
- package/plugins/loopx/skills/subagent-exec/codex-subagents.md +1 -1
- package/plugins/loopx/skills/tdd/SKILL.md +1 -1
- package/plugins/loopx/skills/verify/SKILL.md +1 -1
- package/scripts/codex-workflow-hook.mjs +36 -5
- package/skills/RESOLVER.md +3 -1
- package/skills/clarify/SKILL.md +1 -1
- package/skills/debug/SKILL.md +1 -1
- package/skills/doc-readability/SKILL.md +222 -0
- package/skills/doc-readability/references/prd.md +269 -0
- package/skills/exec/SKILL.md +7 -2
- package/skills/final-review/SKILL.md +1 -1
- package/skills/finish/SKILL.md +1 -1
- package/skills/fix-review/SKILL.md +1 -1
- package/skills/go-style/SKILL.md +8 -2
- package/skills/kratos/SKILL.md +1 -1
- package/skills/plan/SKILL.md +3 -3
- package/skills/refactor-plan/SKILL.md +1 -1
- package/skills/review/SKILL.md +1 -1
- package/skills/spec/SKILL.md +1 -1
- package/skills/subagent-exec/SKILL.md +1 -1
- package/skills/subagent-exec/agents/openai.yaml +2 -2
- package/skills/subagent-exec/codex-subagents.md +1 -1
- package/skills/tdd/SKILL.md +1 -1
- package/skills/verify/SKILL.md +1 -1
- package/src/build-stop-gate.mjs +1 -1
- package/src/cli.mjs +5 -1
- package/src/install-discovery.mjs +1 -28
- package/src/next-skill.mjs +46 -5
- 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
|
|
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
|
|
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
|
|
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
|
|
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'),
|