list-tech-specs

List all Technical Specifications with status and metadata

9 stars

Best use case

list-tech-specs is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

List all Technical Specifications with status and metadata

Teams using list-tech-specs should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/list-tech-specs/SKILL.md --create-dirs "https://raw.githubusercontent.com/jpoutrin/product-forge/main/plugins/devops-data/skills/list-tech-specs/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/list-tech-specs/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How list-tech-specs Compares

Feature / Agentlist-tech-specsStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

List all Technical Specifications with status and metadata

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# list-tech-specs

**Category**: Technical Architecture

## Usage

```bash
/list-tech-specs [options]
```

## 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` | Output format (default: table) |

## Execution Instructions

When this command is run, Claude Code should:

1. **Scan Tech Spec Directories**
   ```
   tech-specs/
   ├── draft/      → DRAFT
   ├── approved/   → APPROVED
   ├── reference/  → REFERENCE
   └── archive/    → (only with --all)
   ```

2. **Extract Metadata from Each Spec**
   - Tech Spec ID (from filename or frontmatter)
   - Title
   - Status
   - Author
   - Linked RFC (if any)
   - Created date
   - Last updated date

3. **Apply Filters** (if specified)
   - Filter by status
   - Filter by linked RFC
   - Exclude archive unless `--all`

4. **Display Results**

### Table Format (default)

```
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.
```

### List Format

```
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: -
  ...
```

## Status Summary

Always show a summary at the top:

```
Tech Spec Status Summary
========================
DRAFT:     3
APPROVED:  5
REFERENCE: 15
ARCHIVED:  5 (use --all to include)
```

## Sorting

Default sort order:
1. DRAFT (work in progress)
2. APPROVED (ready to implement)
3. REFERENCE (implemented)

Within each status, sort by last_updated (newest first).

## Example Usage

```bash
# 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
```

## Empty State

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
```

## Error Handling

- If `tech-specs/` directory doesn't exist, show empty state message
- If spec file has invalid frontmatter, show warning but continue
- Handle missing metadata gracefully (show "N/A")

Related Skills

task-list

9
from jpoutrin/product-forge

List tasks by directory with progress and visual indicators

list-qa-tests

9
from jpoutrin/product-forge

List QA test procedures with status and priority

technical-specification

9
from jpoutrin/product-forge

Technical specification writing for implementation details. Use when documenting how to build a solution (post-decision), API contracts, schemas, and system design. Complements RFC skill which handles decision-making.

tech-spec-status

9
from jpoutrin/product-forge

Show Tech Spec details or update status through lifecycle

list-rfcs

9
from jpoutrin/product-forge

List all RFCs with status, progress, and metadata

create-tech-spec

9
from jpoutrin/product-forge

Create a new Technical Specification for implementation details

zod

9
from jpoutrin/product-forge

Zod schema validation patterns and type inference. Auto-loads when validating schemas, parsing data, validating forms, checking types at runtime, or using z.object/z.string/z.infer in TypeScript.

typescript-import-style

9
from jpoutrin/product-forge

Merge-friendly import formatting (one-per-line, alphabetical). Auto-loads when writing TypeScript/JavaScript imports to minimize merge conflicts in parallel development. Enforces consistent grouping and sorting.

setup-mcp-auth

9
from jpoutrin/product-forge

Configure authentication for an existing FastMCP server

fastmcp

9
from jpoutrin/product-forge

FastMCP TypeScript framework patterns for MCP servers. Auto-loads when building MCP servers, creating tools/resources/prompts, implementing authentication, configuring transports, or working with FastMCP in TypeScript.

add-mcp-tool

9
from jpoutrin/product-forge

Add a new tool to an existing FastMCP server with guided configuration

add-mcp-resource

9
from jpoutrin/product-forge

Add a new resource or resource template to an existing FastMCP server