Use this skill when the user wants a list of implementation tasks executed sequentially with fresh non-interactive Codex workers, never in parallel, while preserving the latest repo state between tasks and appending detailed per-worker summaries to summaries/work-summary-<datetime>.md.
Use this skill when the user wants batch implementation through fresh worker runs instead of one long interactive context. The interactive Codex session acts as the orchestrator, launches one fresh codex exec worker per task, waits for it to finish, appends a summary entry, then starts the next task against the updated codebase.
$seqimpl.Do not use this skill for parallel execution. This skill guarantees exactly one worker at a time.
python skills/seqimpl/scripts/seqimpl.py --tasks-file <file> --cwd <workspace>summaries/work-summary-<datetime>.md.Prefer a JSON file. The script accepts either:
{
"tasks": [
"Task one",
"Task two"
]
}