sdd

(★ 117)

Spec-Driven Development for Claude Code: 12 atomic Socratic skills + a TDD implement engine (agent-team & dynamic-workflow modes)

File Explorer

  • .gitignore
  • CONTRIBUTING.md
  • install.sh
  • LICENSE
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

dir

View Details ▼

List files.

dir

List files in the current working directory:

tldr ls

View documentation for the original command:

dir

Show the contents of the current directory:

🔍

codex

View Details ▼

Natural language code assistant for the terminal, powered by OpenAI.
Reads and edits files in your current directory to fulfill requests.

codex

Start an interactive Codex session in the current directory:

codex "{{prompt}}"

Run a single Codex command using a prompt:

codex --sandbox workspace-write "{{prompt}}"

Run a prompt allowing Codex to edit files in the workspace:

🔍

mmdc

View Details ▼

CLI for mermaid, a diagram generation tool with a domain-specific language.
A mermaid definition file is taken as input and a SVG, PNG, or PDF file is generated as output.

mmdc {{[-i|--input]}} {{input.mmd}} {{[-o|--output]}} {{output.svg}}

Convert a file to the specified format (automatically determined from the file extension):

mmdc {{[-i|--input]}} {{input.mmd}} {{[-o|--output]}} {{output.svg}} {{[-t|--theme]}} {{forest|dark|neutral|default}}

Specify the theme of the chart:

mmdc {{[-i|--input]}} {{input.mmd}} {{[-o|--output]}} {{output.svg}} {{[-b|--backgroundColor]}} {{color}}

Specify the background color of the chart (e.g. `lime`, `"#D8064F"`, or `transparent`):

🔍

standard

View Details ▼

The JavaScript Standard Style tool for linting and fixing JavaScript code.

standard

Lint all JavaScript source files in the current directory:

standard {{path/to/file1 path/to/file2 ...}}

Lint specific JavaScript file(s):

standard --fix

Apply automatic fixes during linting:

🔍

explorer

View Details ▼

The Windows File Explorer.

explorer

Open Windows Explorer:

explorer .

Open Windows Explorer in the current directory:

explorer {{path\to\directory}}

Open Windows Explorer in a specific directory:

// repository documentation