Adds new ideas to the project backlog using specific 999.x numbering conventions.

Install

mkdir -p .claude/skills/gsd-add-backlog && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/13062" && unzip -o skill.zip -d .claude/skills/gsd-add-backlog && rm skill.zip

Installs to .claude/skills/gsd-add-backlog

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Add an idea to the backlog parking lot (999.x numbering)
56 charsno explicit “when” trigger
Beginner

Key capabilities

  • Read existing backlog entries from ROADMAP.md
  • Determine the next available 999.x backlog number
  • Create a new phase directory for the backlog item
  • Add the new backlog item to ROADMAP.md under a '## Backlog' section
  • Commit the changes to the repository
  • Report the details of the added backlog item

How it works

The skill reads the current roadmap, calculates the next available 999.x number, creates a directory, adds the item to the roadmap, and commits the changes.

Inputs & outputs

You give it
User text describing the idea for the backlog item
You get back
A new backlog item added to ROADMAP.md and a new phase directory created

When to use gsd-add-backlog

  • Add a feature idea to the backlog
  • Park technical debt items
  • Track future backlog tasks

About this skill

<codex_skill_adapter>

A. Skill Invocation

  • This skill is invoked by mentioning $gsd-add-backlog.
  • Treat all user text after $gsd-add-backlog as {{GSD_ARGS}}.
  • If no arguments are present, treat {{GSD_ARGS}} as empty.

B. AskUserQuestion → request_user_input Mapping

GSD workflows use AskUserQuestion (Claude Code syntax). Translate to Codex request_user_input:

Parameter mapping:

  • headerheader
  • questionquestion
  • Options formatted as "Label" — description{label: "Label", description: "description"}
  • Generate id from header: lowercase, replace spaces with underscores

Batched calls:

  • AskUserQuestion([q1, q2]) → single request_user_input with multiple entries in questions[]

Multi-select workaround:

  • Codex has no multiSelect. Use sequential single-selects, or present a numbered freeform list asking the user to enter comma-separated numbers.

Execute mode fallback:

  • When request_user_input is rejected (Execute mode), present a plain-text numbered list and pick a reasonable default.

C. Task() → spawn_agent Mapping

GSD workflows use Task(...) (Claude Code syntax). Translate to Codex collaboration tools:

Direct mapping:

  • Task(subagent_type="X", prompt="Y")spawn_agent(agent_type="X", message="Y")
  • Task(model="...") → omit (Codex uses per-role config, not inline model selection)
  • fork_context: false by default — GSD agents load their own context via <files_to_read> blocks

Parallel fan-out:

  • Spawn multiple agents → collect agent IDs → wait(ids) for all to complete

Result parsing:

  • Look for structured markers in agent output: CHECKPOINT, PLAN COMPLETE, SUMMARY, etc.
  • close_agent(id) after collecting results from each agent </codex_skill_adapter>
<objective> Add a backlog item to the roadmap using 999.x numbering. Backlog items are unsequenced ideas that aren't ready for active planning — they live outside the normal phase sequence and accumulate context over time. </objective> <process>
  1. Read ROADMAP.md to find existing backlog entries:

    cat .planning/ROADMAP.md
    
  2. Find next backlog number:

    NEXT=$(node "/home/lnayyar/projects/CourseAIVibeCodeUdmey/finally/.codex/get-shit-done/bin/gsd-tools.cjs" phase next-decimal 999 --raw)
    

    If no 999.x phases exist, start at 999.1.

  3. Create the phase directory:

    SLUG=$(node "/home/lnayyar/projects/CourseAIVibeCodeUdmey/finally/.codex/get-shit-done/bin/gsd-tools.cjs" generate-slug "{{GSD_ARGS}}" --raw)
    mkdir -p ".planning/phases/${NEXT}-${SLUG}"
    touch ".planning/phases/${NEXT}-${SLUG}/.gitkeep"
    
  4. Add to ROADMAP.md under a ## Backlog section. If the section doesn't exist, create it at the end:

    ## Backlog
    
    ### Phase {NEXT}: {description} (BACKLOG)
    
    **Goal:** [Captured for future planning]
    **Requirements:** TBD
    **Plans:** 0 plans
    
    Plans:
    - [ ] TBD (promote with /gsd-review-backlog when ready)
    
  5. Commit:

    node "/home/lnayyar/projects/CourseAIVibeCodeUdmey/finally/.codex/get-shit-done/bin/gsd-tools.cjs" commit "docs: add backlog item ${NEXT} — ${ARGUMENTS}" --files .planning/ROADMAP.md ".planning/phases/${NEXT}-${SLUG}/.gitkeep"
    
  6. Report:

    ## 📋 Backlog Item Added
    
    Phase {NEXT}: {description}
    Directory: .planning/phases/{NEXT}-{slug}/
    
    This item lives in the backlog parking lot.
    Use /gsd-discuss-phase {NEXT} to explore it further.
    Use /gsd-review-backlog to promote items to active milestone.
    
</process> <notes> - 999.x numbering keeps backlog items out of the active phase sequence - Phase directories are created immediately, so /gsd-discuss-phase and /gsd-plan-phase work on them - No `Depends on:` field — backlog items are unsequenced by definition - Sparse numbering is fine (999.1, 999.3) — always uses next-decimal </notes>

When not to use it

  • When the item is ready for active planning and sequencing
  • When the item requires a 'Depends on:' field

Limitations

  • Backlog items are unsequenced and lack a 'Depends on:' field
  • Backlog items are not ready for active planning

How it compares

This workflow automatically assigns a 999.x number and creates a dedicated directory, unlike manual backlog management.

Compared to similar skills

gsd-add-backlog side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
gsd-add-backlog (this skill)04moReviewBeginner
github-manage69moReviewBeginner
task-management165moNo flagsBeginner
markdown-task-manager19moReviewBeginner

Try saying

Example prompts that trigger this skill in your AI assistant.

You might also like

github-manage

matteocervelli

Manage operations concerning GitHub on behalf of user

693

task-management

anthropics

Simple task management using a shared TASKS.md file. Reference this when the user asks about their tasks, wants to add/complete tasks, or needs help tracking commitments.

1664

markdown-task-manager

ioniks

Use when managing tasks, the system is a Kanban task manager based on local Markdown files (`kanban.md` and `archive.md`). It follows a strict format compatible with the task-manager.html web application.

14

agent-project-board-sync

ruvnet

Agent skill for project-board-sync - invoke with $agent-project-board-sync

02

nextcloud-cli-deck

NicholaiVogel

Work with the Nextcloud Deck app through Nextcloud CLI. Use when an agent needs to list boards and cards, create boards or stacks, create or update cards, move cards, archive or delete cards safely, validate Deck availability, or perform dry-run protected project-board workflows with nxc.

00

task-management

rjchien728

管理 ~/tasks/(或使用者指定路徑)下的進行中工作項目資料夾。每個 task 是一個資料夾,README.md 是純狀態 dashboard(status frontmatter + 一句 headline + 一行狀態 + 檔案清單 + 下一步),實際的設計 / 規劃 / 調查文件用獨立 .md 檔,腳本與 reproduce 也存獨立檔。負責命名(YYMMDD-<slug>)、建資料夾、寫 README dashboard、更新狀態、總覽掃描。當使用者說「開新 task」「開個 task」「新增 task」「new task」「記錄到 tasks 下」「把目前設計記下來開個 task

00

Search skills

Search the agent skills registry