docs(dashboard): use canonical work-record ids in the ralph-workplan example
All checks were successful
CI Smoke / host-smoke (push) Successful in 0s
CI Smoke / container-smoke (push) Successful in 2s

The example taught 'id: WP-0001' / 'id: T-01'. The ralph-workplan spec
accepts that shape for standalone plans, but this doc ships in the State Hub
dashboard, where the hub-integrated PREFIX-WP-NNNN-TNN form applies -- the
spec's own state-hub example uses it.

Switching the example to EXAMPLE-WP-0001 / -T01 / -T02 teaches the right
shape for this audience and clears the two C-31 warnings, which fired
because the ids matched no kind in the canon work-record type registry.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
tegwick 2026-08-21 08:26:36 +02:00
parent 90824ca249
commit 9dc1affa21

View file

@ -90,7 +90,7 @@ cd ~/ralph-workplan && ./install.sh --uninstall
```markdown
---
id: WP-0001
id: EXAMPLE-WP-0001
title: "Build a thing"
status: ready
---
@ -100,7 +100,7 @@ Optional description.
## Task: Do the first thing
```task
id: T-01
id: EXAMPLE-WP-0001-T01
status: todo
priority: high
```
@ -108,7 +108,7 @@ priority: high
## Task: Do the second thing
```task
id: T-02
id: EXAMPLE-WP-0001-T02
status: todo
priority: medium
```