**Category**: Technical Architecture
Lists technical specifications with filtering options for status, RFC linkage, and output format.
/plugin marketplace add jpoutrin/product-forge/plugin install devops-data@product-forge-marketplaceCategory: Technical Architecture
/list-tech-specs [options]
| Option | Description |
|---|---|
--status <status> | Filter by status (DRAFT, APPROVED, REFERENCE) |
--all | Include archived specs |
--rfc <RFC-XXXX> | Filter by linked RFC |
| `--format table | list` |
When this command is run, Claude Code should:
Scan Tech Spec Directories
tech-specs/
├── draft/ → DRAFT
├── approved/ → APPROVED
├── reference/ → REFERENCE
└── archive/ → (only with --all)
Extract Metadata from Each Spec
Apply Filters (if specified)
--allDisplay Results
Tech Spec Summary
=================
Active: 8 | Reference: 15 | Archived: 5
| Spec ID | Title | Status | RFC Link | Updated |
|-----------|----------------------------|-----------|-----------|------------|
| TS-0045 | Payment Gateway API | APPROVED | RFC-0042 | 2025-12-05 |
| TS-0044 | User Auth Implementation | DRAFT | - | 2025-12-04 |
| TS-0043 | Cache Layer Design | REFERENCE | RFC-0038 | 2025-12-01 |
| TS-0042 | Search Service | APPROVED | - | 2025-11-28 |
Use '/tech-spec-status TS-XXXX' to see details or update status.
TS-0045: Payment Gateway API
Status: APPROVED
Author: Jane Doe
RFC: RFC-0042
Created: 2025-12-01
Updated: 2025-12-05
Location: tech-specs/approved/TS-0045-payment-gateway-api.md
TS-0044: User Auth Implementation
Status: DRAFT
Author: John Doe
RFC: -
...
Always show a summary at the top:
Tech Spec Status Summary
========================
DRAFT: 3
APPROVED: 5
REFERENCE: 15
ARCHIVED: 5 (use --all to include)
Default sort order:
Within each status, sort by last_updated (newest first).
# List all active tech specs
/list-tech-specs
# List only specs in draft
/list-tech-specs --status DRAFT
# List specs linked to specific RFC
/list-tech-specs --rfc RFC-0042
# List all including archived
/list-tech-specs --all
If no Tech Specs exist:
No Technical Specifications found.
To create a new Tech Spec:
/create-tech-spec <title>
Tech Spec documentation:
See plugins/devops-data/skills/technical-specification/SKILL.md
tech-specs/ directory doesn't exist, show empty state message