easy-coding-harness 1.0.0 → 1.0.1
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/CHANGELOG.md +18 -0
- package/README.md +15 -4
- package/dist/cli.js +33 -92
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
- package/templates/common/skills/ec-analysis/SKILL.md +13 -14
- package/templates/common/skills/ec-config/SKILL.md +3 -1
- package/templates/common/skills/ec-implementing/SKILL.md +11 -2
- package/templates/common/skills/ec-quality/SKILL.md +5 -0
- package/templates/common/skills/ec-task-management/SKILL.md +9 -2
- package/templates/common/skills/ec-tdd-init/SKILL.md +13 -9
- package/templates/common/skills/ec-workflow/SKILL.md +12 -3
- package/templates/main-constraint/AGENTS.md.tpl +7 -1
- package/templates/main-constraint/CLAUDE.md.tpl +7 -1
- package/templates/runtime/tools/easy_coding_tdd_readiness.py +18 -18
- package/templates/shared-hooks/easy_coding_state.py +341 -55
- package/templates/shared-hooks/easy_dev_spec.py +3 -1
|
@@ -614,6 +614,8 @@ def select_tasks(
|
|
|
614
614
|
inspection: dict[str, Any],
|
|
615
615
|
selected_task_ids: Iterable[str],
|
|
616
616
|
dependency_evidence: dict[str, str] | None = None,
|
|
617
|
+
*,
|
|
618
|
+
allow_pending_hard_dependencies: bool = False,
|
|
617
619
|
) -> dict[str, Any]:
|
|
618
620
|
selected_ids = list(dict.fromkeys(selected_task_ids))
|
|
619
621
|
if not selected_ids:
|
|
@@ -694,7 +696,7 @@ def select_tasks(
|
|
|
694
696
|
**({"evidence": evidence} if evidence else {}),
|
|
695
697
|
}
|
|
696
698
|
)
|
|
697
|
-
if missing_hard:
|
|
699
|
+
if missing_hard and not allow_pending_hard_dependencies:
|
|
698
700
|
raise EasyDevSpecError(
|
|
699
701
|
"Selected tasks omit hard dependencies without evidence: " + ", ".join(missing_hard)
|
|
700
702
|
)
|