Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.2.1 - 2026-04-21

README rendering fix release.

### Fixed in 1.2.1

- Fixed Mermaid flowchart syntax in `README.md` so GitHub renders the role-flow diagram correctly.
Comment thread
eschaar marked this conversation as resolved.

## 1.2.0 - 2026-04-21

CLI provenance verification and documentation system alignment.
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,14 +87,14 @@ ______________________________________________________________________

```mermaid
flowchart LR
A[Product intent] --> B[@product]
B --> C[@architect]
C --> D[@designer]
D --> E[@engineer]
E --> F[@tester]
F --> G[@release]
B -. focused procedure .-> H[/requirements or vision/]
F -. focused procedure .-> I[/verify, security, performance/]
A[Product intent] --> B["@product"]
B --> C["@architect"]
C --> D["@designer"]
D --> E["@engineer"]
E --> F["@tester"]
F --> G["@release"]
B -. focused procedure .-> H["requirements or vision"]
F -. focused procedure .-> I["verify, security, performance"]
```

The exact deliverable can be a microservice, API, package, library, app, or broader
Expand Down
Loading