sdd:// protocol. Resources provide read-only access to pipeline metadata and graph statistics.
Static resources
These resources have fixed URIs and return real-time data from the traceability graph.sdd://pipeline/status
Description: Current pipeline stage, staleness, and next recommended action MIME type:application/json
Returns:
sdd://pipeline/stages
Description: All 7 pipeline stages with status and timestamps MIME type:application/json
Returns: Complete pipeline object from the traceability graph, including currentStage and stages array with status (pending, running, done, stale).
sdd://graph/schema
Description: Documentation of the traceability graph schema (v3) MIME type:text/plain
Returns: Human-readable schema overview including:
- Root object structure
- Artifact types: REQ, UC, WF, API, BDD, INV, ADR, NFR, RN, FASE, TASK
- Relationship types:
implements,orchestrates,verifies,guarantees,decides,decomposes,implemented-by,implemented-by-code,tested-by,implemented-by-commit,reads-from,traces-to - Artifact structure fields
- Code intelligence structure (optional)
sdd://graph/stats
Description: Artifact counts, coverage percentages, and classification breakdown MIME type:application/json
Returns: The complete statistics object from the traceability graph, including:
sdd://coverage/gaps
Description: Top traceability gaps ordered by severity MIME type:application/json
Returns:
- CRITICAL: 4 missing links
- HIGH: 3 missing links
- MEDIUM: 2 missing links
- LOW: 1 missing link
Resource templates
These resources use URI templates with placeholders.sdd://artifacts/
Description: List artifacts of a given type Valid types: REQ, UC, WF, API, BDD, INV, ADR, NFR, RN, FASE, TASK MIME type:application/json
Example: sdd://artifacts/REQ
Returns:
sdd://artifacts//
Description: Full detail of a specific artifact including all relationships MIME type:application/json
Example: sdd://artifacts/REQ/REQ-AUTH-001
Returns: Complete artifact object with:
- All base fields (
id,type,category,title,file,line,priority,stage) - Classification metadata
- Code/test/commit references
- Upstream relationships (artifacts this one points to)
- Downstream relationships (artifacts that point to this one)