From 2f34b275835c35b7f015584346e2b732bf411998 Mon Sep 17 00:00:00 2001 From: Eve Date: Fri, 24 Apr 2026 11:47:30 +0800 Subject: [PATCH] docs: define continuity dispatch receipt core fields --- docs/runbooks/approved-plan-continuity.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 docs/runbooks/approved-plan-continuity.md diff --git a/docs/runbooks/approved-plan-continuity.md b/docs/runbooks/approved-plan-continuity.md new file mode 100644 index 0000000..9added9 --- /dev/null +++ b/docs/runbooks/approved-plan-continuity.md @@ -0,0 +1,19 @@ +# Approved Plan Continuity + +## Continuity receipt core fields + +### `planId` +- The identifier of the approved plan that the continuity receipt belongs to. +- Use this field to associate the receipt with one specific approved plan. + +### `currentTask` +- The task from the approved plan that is currently being executed or has just completed. +- Use this field to record which plan task the receipt is about. + +### `nextDerivedAction` +- The next concrete action derived from the current task that should be dispatched to continue the workflow. +- Use this field to record the intended follow-up action for continuity. + +### `dispatchedAt` +- The timestamp indicating when the next derived action was actually dispatched. +- Use this field to record when the continuity handoff occurred.