Skip to content

v0.2.0 Release Notes

Release Date: 2026-05-24

Overview

MultiSpec v0.2.0 adds Graphize integration for requirement graph extraction and visualization, plus corrects documentation for MCP tools and CLI commands that were already implemented in v0.1.0.

Highlights

  • Graphize integration for requirement graph extraction and visualization
  • Documentation accuracy improvements for implementation status

Features

Graph Commands

New multispec graph command with subcommands for requirement traceability:

Command Description
graph extract Extract requirement graph from spec files
graph export Export graph to HTML, GraphML, or JSON
graph query Query graph nodes by type or spec

Node Types Extracted:

  • requirement - Functional requirements from PRD
  • user_story - User stories (As a... I want... So that...)
  • constraint - Constraints from MRD, TRD
  • decision - Architectural decisions from TRD
  • acceptance_criteria - Testable acceptance criteria
  • section - Document sections
  • spec - Spec file nodes

Edge Types:

  • traces_to - Requirement traceability (PRD → TRD)
  • derived_from - Synthesis source relationships
  • contains - Section containment

Example Usage:

# Extract graph from specs
multispec graph extract

# Export to HTML visualization
multispec graph export --format html

# Query all requirements
multispec graph query --type requirement

# Query PRD nodes only
multispec graph query --spec prd

Documentation

MCP Tools Status Correction

The following MCP tools were implemented in v0.1.0 but incorrectly documented as "Stub":

Tool Status
get_spec Implemented
get_eval Implemented
run_eval Implemented
synthesize Implemented
reconcile Implemented
approve Implemented
export Implemented

CLI Commands Status Correction

The following CLI commands were implemented in v0.1.0 but incorrectly documented as "Planned":

Command Status
approve Implemented
serve Implemented

Installation

go install github.com/plexusone/multispec/cmd/multispec@v0.2.0

Dependencies

  • graphize v0.3.0 - Requirement graph visualization
  • graphfs v0.2.0 - Graph data structures

What's Next

See ROADMAP.md for planned features including:

  • Phase 8: Advanced features (conflict detection, traceability reports, web UI)