feat(RMGR-WP-0008): add workplan and register receiving surfaces

This commit is contained in:
tegwick 2026-08-21 17:15:21 +02:00
parent 5502afc1fd
commit 859df9aae7
15 changed files with 1501 additions and 11 deletions

View file

@ -262,7 +262,17 @@ command:
| --- | --- | --- | --- |
| `repo.work.update_task_status` | task_id, status, blocking_reason? | **yes** | `repo:command:work_status` |
| `repo.work.update_workplan_status` | workplan_id, status | **yes** | `repo:command:work_status` |
| `repo.work.create_workplan` | workplan_id, title, goal, status?, owner?, domain?, topic_slug? | **yes** | `repo:command:workplan` |
| `repo.work.update_workplan` | workplan_id, title?, status?, owner?, domain?, topic_slug? | **yes** | `repo:command:workplan` |
| `repo.work.archive_workplan` | workplan_id, confirm_archive | **yes** | `repo:command:workplan` |
| `repo.work.writeback_ids` | record_ref, uuid fields | **yes** | `repo:command:writeback_ids` |
| `repo.register.upsert_entry` | kind, entry_id, title?, status?, data? | **yes** | `repo:command:register` |
| `repo.register.defer_entry` | kind, entry_id, status? | **yes** | `repo:command:register` |
| `repo.register.add_note` | kind, entry_id, note, author? | **yes** | `repo:command:register` |
`repo.work.archive_workplan` is the recoverable delete operation: it sets the
canonical status to `archived` and moves the file under the dated
`workplans/archived/` convention. It does not erase repository history.
#### Agents