701-sf-backlog

star 1

Triage backlog ideas, deferred work, and cleanup.

diane-defores By diane-defores schedule Updated 6/11/2026

name: 701-sf-backlog description: "Triage backlog ideas, deferred work, and cleanup." disable-model-invocation: false argument-hint: [optional: add "idea", move "defer", review, clean]

Canonical Paths

Before resolving any ShipFlow-owned file, load $SHIPFLOW_ROOT/skills/references/canonical-paths.md ($SHIPFLOW_ROOT defaults to $HOME/shipflow). ShipFlow tools, shared references, skill-local references/*, templates, workflow docs, and internal scripts must resolve from $SHIPFLOW_ROOT, not from the project repo where the skill is running. Project artifacts and source files still resolve from the current project root unless explicitly stated otherwise.

Chantier Tracking

Trace category: conditionnel. Process role: pilotage.

Before producing the final report, load $SHIPFLOW_ROOT/skills/references/chantier-tracking.md when this run is attached to a spec-first chantier. If exactly one active specs/*.md chantier is identified, append the current run to Skill Run History, update Current Chantier Flow when the run changes the chantier state, and include a final Chantier block. If no unique chantier is identified, do not write to any spec; report Chantier: non applicable or Chantier: non trace with the reason.

Report Modes

Before producing the final report, load $SHIPFLOW_ROOT/skills/references/reporting-contract.md.

Default to report=user: concise backlog outcome, files touched, remaining risk, and compact chantier block when applicable. Use report=agent for handoffs that need detailed tracker anchors, rejected edits, or validation evidence.

Required References

  • Load $SHIPFLOW_ROOT/skills/references/question-contract.md before asking project, scope, deletion, promotion, or activation questions.
  • Load $SHIPFLOW_ROOT/skills/references/operational-record-format.md before creating or mutating task/backlog operational records in TASKS.md or BACKLOG.md.

Context

  • Current directory: !pwd
  • Project workflow TASKS.md: !cat shipflow_data/workflow/TASKS.md 2>/dev/null || cat TASKS.md 2>/dev/null || echo "No project TASKS.md"
  • Project workflow BACKLOG.md: !cat shipflow_data/workflow/BACKLOG.md 2>/dev/null || cat BACKLOG.md 2>/dev/null || echo "No project BACKLOG.md"
  • Project-local TASKS.md: !cat shipflow_data/workflow/TASKS.md 2>/dev/null || cat TASKS.md 2>/dev/null || echo "No project-local TASKS.md"
  • Project CLAUDE.md: !head -30 CLAUDE.md 2>/dev/null || echo "No CLAUDE.md"
  • Workspace CLAUDE.md: !head -20 $HOME/CLAUDE.md 2>/dev/null || echo "N/A"
  • Code TODOs: !rg -n "TODO|FIXME" -g "*.ts" -g "*.tsx" -g "*.js" -g "*.jsx" -g "*.py" -g "*.sh" . 2>/dev/null | head -20 || echo "No TODOs found"

Operational tracker model

Project backlog work is local-first.

  • For a selected project, use [project]/shipflow_data/workflow/BACKLOG.md as the primary backlog and [project]/shipflow_data/workflow/TASKS.md as the active task tracker.
  • Root BACKLOG.md and TASKS.md are legacy project tracker locations; read them as migration/fallback sources only when canonical workflow files are absent.
  • Legacy central archives are migration evidence only. Prefer project discovery from local shipflow_data/ markers and write backlog changes to project-local workflow files.
  • Do not write backlog updates to a central control-plane TASKS.md.

Shared tracking file write protocol

  • Before creating or mutating task/backlog operational records, load $SHIPFLOW_ROOT/skills/references/operational-record-format.md.
  • Treat the TASKS.md and BACKLOG.md snapshots loaded at skill start as informational only.
  • Right before editing the project or portfolio tracking file, re-read the target from disk and use that version as authoritative.
  • Apply a minimal targeted edit to the relevant project section or backlog block; never rewrite the whole file from stale context.
  • If the expected anchor moved or changed, re-read once and recompute.
  • If it is still ambiguous after the second read, stop and ask the user instead of forcing the write.

Your task

Manage the backlog to keep active work focused and capture future ideas.

Workspace root detection

If the current directory has no project markers (not inside a specific project), you are at the workspace root. Load $SHIPFLOW_ROOT/skills/references/question-contract.md, then ask:

  • Question: "Which project's backlog should I manage?"
  • multiSelect: false
  • Options:
    • Full workspace — "Inspect local project backlogs through project discovery" (Recommended)
    • One option per project: label = project name, description = backlog item count

Steps

  1. Understand user intent from $ARGUMENTS:

    • add [description]: Add new idea/task to backlog
    • defer: Move non-urgent tasks from TASKS.md to backlog
    • review: Review backlog items for promotion to active tasks
    • clean: Remove outdated/irrelevant backlog items
    • No argument: General backlog organization
  2. If adding to backlog:

    • Create shipflow_data/workflow/BACKLOG.md if it doesn't exist for the selected project.
  • Use shipflow_data/workflow/TASKS.md for the selected project.
  • Add the idea with context, date, and category
  • Acknowledge addition and ask if it should be active now
  1. If deferring tasks:

    • Review the selected project's shipflow_data/workflow/TASKS.md for low-priority or future items
    • Move them to shipflow_data/workflow/BACKLOG.md with reason for deferral
    • Keep the project workflow TASKS.md focused on current sprint/milestone
    • Update the project workflow TASKS.md to remove deferred items
  2. If reviewing backlog:

    • Read all backlog items
    • Identify items that should become active tasks:
      • Changed context making them relevant now
      • Prerequisites completed
      • Strategic importance increased
    • Suggest promoting 1-3 items to the selected project's shipflow_data/workflow/TASKS.md
    • Explain reasoning for each promotion
  3. If cleaning backlog:

    • Identify obsolete items (completed elsewhere, no longer relevant, duplicates)
    • Mark items for removal with explanation
    • Load question-contract and ask the user to confirm before deleting
    • Archive removed items in a "Discarded" section with date
  4. Organize BACKLOG.md structure:

    # Backlog
    
    ## Future Features
    - [ ] Feature idea (added YYYY-MM-DD)
      - Context: Why this matters
      - Blocked by: Prerequisites
    
    ## Technical Debt
    - [ ] Refactoring needed (added YYYY-MM-DD)
      - Impact: What improves
      - Effort: Estimated size
    
    ## Ideas & Research
    - [ ] Exploratory task (added YYYY-MM-DD)
      - Questions to answer
      - Expected outcome
    
    ## Deferred
    - [ ] Task moved from active (deferred YYYY-MM-DD)
      - Reason: Why deferred
      - Review after: Date or milestone
    
    ## Discarded
    - [x] Removed item (discarded YYYY-MM-DD)
      - Reason: Why removed
    
  5. Harvest code TODOs:

    • Check for TODO/FIXME comments in codebase (shown in context)
    • Add any significant ones to backlog if not already tracked
    • Note file/line references

Important

  • Default to project-local shipflow_data/workflow/BACKLOG.md and shipflow_data/workflow/TASKS.md for project work.
  • Update project-local shipflow_data/workflow/TASKS.md only when backlog triage changes active project tasks.
  • Prefix portfolio backlog items with the project name (e.g., - tubeflow: Native app feature parity).
  • Keep each project's active tracker focused (5-10 items max).
  • Portfolio backlog sections can be larger (20-50 items across all projects).
  • Always date entries (added/deferred/discarded)
  • Preserve context - why the idea matters
  • Use categories to organize
  • Review backlog weekly to keep it relevant
  • Don't let backlog become a graveyard - actively clean it
  • When deferring, explain the reason (helps future review)
Install via CLI
npx skills add https://github.com/diane-defores/shipflow --skill 701-sf-backlog
Repository Details
star Stars 1
call_split Forks 0
navigation Branch main
article Path SKILL.md
More from Creator
diane-defores
diane-defores Explore all skills →