@dzhechkov/skills-feature-adr 1.3.48 → 1.3.49

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dzhechkov/skills-feature-adr",
3
- "version": "1.3.48",
3
+ "version": "1.3.49",
4
4
  "description": "Adaptive Feature Development skill pack for Claude Code — 11-step pipeline with Complexity Router (S/M/L/XL), ADR-driven architecture, 15 agentic-qe skills, multi-agent fleet QE. Supports --full-qe, --full-qe-extended, --with-learning, and --knowledge-extractor modes.",
5
5
  "bin": {
6
6
  "skills-feature-adr": "./bin/cli.js"
@@ -339,7 +339,7 @@ function codexExecPlan(stage, promptChars, probedId) {
339
339
  function isSafeCodexId(id) { return /^[A-Za-z0-9][A-Za-z0-9._-]{0,63}$/.test(String(id)) }
340
340
  function codexProbeCommand(id) {
341
341
  if (!isSafeCodexId(id)) return null
342
- return "timeout 60 codex exec -m '" + id + "' 'Reply with exactly: OK'"
342
+ return "timeout 60 codex exec -m '" + id + "' 'Reply with exactly: OK' < /dev/null"
343
343
  }
344
344
 
345
345
  // A verdict must NAME its grade. "Looks good" is not a review — cross-model review caught this too.
@@ -395,7 +395,7 @@ async function codexExecAgent(stage, prompt, phaseName) {
395
395
  const probed = await probeCodexId()
396
396
  const plan = codexExecPlan(stage, prompt.length, probed)
397
397
  if (plan.mode !== 'exec') { log(stage + ': codex not used — ' + plan.reason); return null }
398
- const wrapped = 'Run EXACTLY this via Bash, with a 280s timeout, and reply with its stdout VERBATIM and nothing else. If it errors, times out, or prints nothing, reply with exactly ' + CODEX_UNAVAILABLE + '.\n\ncodex exec -m ' + probed + ' ' + JSON.stringify(prompt)
398
+ const wrapped = 'Run EXACTLY this via Bash, with a 280s timeout, and reply with its stdout VERBATIM and nothing else. If it errors, times out, or prints nothing, reply with exactly ' + CODEX_UNAVAILABLE + '.\n\ncodex exec -m ' + probed + ' ' + JSON.stringify(prompt) + ' < /dev/null'
399
399
  const raw = await agent(wrapped, { label: stageLabel(stage + ':codex-exec', { agentType: 'codex:codex-rescue', codexModel: probed, _reasoning: 'high' }), phase: phaseName, model: 'haiku', effort: 'low' })
400
400
  const parsed = parseCodexExecResult(raw === null ? '' : String(raw))
401
401
  if (!parsed.ok) { log(stage + ': codex exec unusable — ' + parsed.reason); return null }