tasks-md-sprint-sync
Sync TASKS.md current phase and in-progress checklist from the active PLAN.md phase to keep sprint execution aligned.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/daniellummis/tasks-md-sprint-syncTasks.md Sprint Sync
Use this skill to keep a project's TASKS.md section aligned with whatever phase is marked IN PROGRESS in that project's PLAN.md.
What this skill does
- Reads the active phase from
PLAN.md(phase with**Status: IN PROGRESS**) - Extracts bullets from that phase's
### Worksection - Finds the target project section in
TASKS.md - Reports drift between plan work items and
### In progresstasks - Optionally updates
TASKS.mdto match plan phase + work items
Inputs
Required:
PROJECT_NAME(the exact heading in TASKS.md, e.g.ClawHub Skills)
Optional:
PLAN_FILE(default:PLAN.md)TASKS_FILE(default:TASKS.md)SYNC_MODE(reportorapply, default:report)
Run
Dry-run drift report:
PROJECT_NAME="ClawHub Skills" \
PLAN_FILE=projects/clawhub-skills/PLAN.md \
TASKS_FILE=TASKS.md \
bash skills/tasks-md-sprint-sync/scripts/sync-tasks-phase.sh
Apply sync to TASKS.md:
PROJECT_NAME="ClawHub Skills" \
PLAN_FILE=projects/clawhub-skills/PLAN.md \
TASKS_FILE=TASKS.md \
SYNC_MODE=apply \
bash skills/tasks-md-sprint-sync/scripts/sync-tasks-phase.sh
Run against included fixtures:
PROJECT_NAME="Demo Project" \
PLAN_FILE=skills/tasks-md-sprint-sync/fixtures/PLAN.sample.md \
TASKS_FILE=skills/tasks-md-sprint-sync/fixtures/TASKS.sample.md \
SYNC_MODE=apply \
bash skills/tasks-md-sprint-sync/scripts/sync-tasks-phase.sh
Output contract
- Exit
0when report/apply completes - Exit
1on invalid inputs, missing sections, or no active phase - In
reportmode: prints missing/extra task drift, no file changes - In
applymode: updatesCurrent phase+ replacesIn progresslist for the target project section
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-daniellummis-tasks-md-sprint-sync": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
github-actions-recovery-latency-audit
Measure GitHub Actions failure recovery latency and unresolved incident age by workflow group.
github-actions-cache-hardening-audit
Audit GitHub Actions workflow cache usage for poisoning, keying, and secret-path risks.
render-env-guard
Preflight-check Render service environment variables before deploys; catches missing keys and placeholder/template values that commonly break production rollouts.
github-actions-trigger-health-audit
Audit GitHub Actions run health by trigger event and workflow so flaky or noisy automation sources are easy to prioritize.
github-actions-run-gap-audit
Detect GitHub Actions workflow groups that stopped running on their normal cadence using median run intervals and current inactivity gap.