You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Upstream spec-kit added two flags to its core scripts (commits 3227b966 #2672, b44ffc01 #1998):
check-prerequisites.sh --paths-only returns paths without validating a feature branch (works on non-feature branches)
create-new-feature --dry-run previews without writing
What we'd build
Add equivalent flags to iikit-core/scripts/bash/:
check-prerequisites.sh --paths-only — emit paths without the feature-branch gate
create-new-feature.sh --dry-run — print what would be created without writing
(and their .ps1 mirrors)
Why it matters
CI dry-runs: validate IIKit project structure without side effects
Worktree isolation: lets us run IIKit from main for read-only inspection without tripping the feature-branch validator (relevant to the agent-worktree-isolation rule)
Status: Tier 2
Upstream spec-kit added two flags to its core scripts (commits
3227b966#2672,b44ffc01#1998):check-prerequisites.sh --paths-onlyreturns paths without validating a feature branch (works on non-feature branches)create-new-feature --dry-runpreviews without writingWhat we'd build
Add equivalent flags to
iikit-core/scripts/bash/:check-prerequisites.sh --paths-only— emit paths without the feature-branch gatecreate-new-feature.sh --dry-run— print what would be created without writing.ps1mirrors)Why it matters
mainfor read-only inspection without tripping the feature-branch validator (relevant to theagent-worktree-isolationrule)/iikit-core doctor(Harvest: /iikit-core doctor — health diagnostics for project state #74) with structured path dataEvidence
3227b966(#2672),b44ffc01(#1998)Cost
Small — two flags in two scripts (plus PowerShell mirrors).
Sequencing
Tier 2.