sdd-pending

Lists open VALIDAR DEPOIS items and unimplemented TRD tasks across SDD pipeline specs.

Updated Aug 25, 2026
One-click install
npx skills add https://github.com/asengardeon/btt-sdd-pipeline --skill sdd-pending-asengardeon
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: sdd-pending
Source: https://github.com/asengardeon/btt-sdd-pipeline/tree/main/.claude/skills/sdd-pending
Command: npx skills add https://github.com/asengardeon/btt-sdd-pipeline --skill sdd-pending-asengardeon

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve? In a spec-driven development pipeline, pending validation questions and unfinished tasks get scattered across PRDs, TRDs, review reports, and baseline documents, making it hard to know what still needs attention. This Skill aggregates all open items into two consolidated tables without reading every artifact into context. ## Core Features & Use Cases - Pending validation scan: Collects all items marked "VALIDAR DEPOIS" with status "pendente" from prd.md, trd.md, code-review.md, qa-report.md, security-review.md, sre-review.md, and docs/BASELINE.md, deduplicated across review rounds. - Unimplemented task tracking: Parses the task decomposition table of each TRD and lists rows whose Status is still pendente, em andamento, or bloqueado, including features that have a PRD but no TRD yet. - Guided resolution: Routes each item to the right follow-up — /sdd-amend for closing validation items, /sdd-implement or /sdd-trd for advancing tasks. - Use Case: After several pipeline rounds, ask what is still pending and receive a feature-by-feature table of open validation questions and unfinished tasks, then resolve one item on the spot. ## Quick Start Ask the assistant to list all pending validation items and unimplemented tasks across the specs directory, optionally filtered to a single feature slug.

Frequently Asked Questions about sdd-pending

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I list all pending validation items in an SDD pipeline?▼

Run the sdd-pending helper script from the project root, optionally passing a feature slug. It scans prd.md, trd.md, review reports, and docs/BASELINE.md for VALIDAR DEPOIS rows with status pendente and returns a deduplicated table.

How do I find unimplemented tasks in a TRD decomposition table?▼

The script parses the Decomposição de tarefas e dependências section of each trd.md and lists rows whose Status column is pendente, em andamento, or bloqueado. Status and Issue columns are resolved by header text, not fixed position.

Does sdd-pending work on both Windows and Unix?▼

Yes, it ships two equivalent scripts: sdd-pending.sh for bash and sdd-pending.ps1 for PowerShell. Both read specs/ and docs/ relative to the current working directory, which must be the project root.

How do I resolve a VALIDAR DEPOIS item once I have the answer?▼

Do not edit the artifact directly. Collect the answer and invoke /sdd-amend so the resolution is recorded through the amendment flow, keeping the revision log consistent. Unimplemented tasks instead route to /sdd-implement or /sdd-trd.

What is the difference between sdd-pending and sdd-gap-report?▼

sdd-pending reads only the Status columns that agents already maintain in the artifacts, without inspecting code. sdd-gap-report compares TRD use cases against the actual codebase, which is a deeper, code-level analysis.