From 9dc1affa21c932f203f96d31d2c6b9e003ca1817 Mon Sep 17 00:00:00 2001 From: tegwick Date: Fri, 21 Aug 2026 08:26:36 +0200 Subject: [PATCH] docs(dashboard): use canonical work-record ids in the ralph-workplan example 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 --- dashboard/src/docs/ralph-workplan.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dashboard/src/docs/ralph-workplan.md b/dashboard/src/docs/ralph-workplan.md index a6970a7..3636033 100644 --- a/dashboard/src/docs/ralph-workplan.md +++ b/dashboard/src/docs/ralph-workplan.md @@ -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 ​```