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
1 change: 1 addition & 0 deletions meta/techniques/workflow-engine/generate-summary.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Completed activities, checkpoint decisions, artifacts produced
## Protocol

1. Draw from `{execution_trace}` to compose the summary sections: workflow id and title, start/completion timestamps, activities completed, key checkpoint decisions, artifacts with paths, outcomes satisfied vs. unmet, follow-up items. Return the assembled markdown as `{completion_summary}`.
> Obtain the execution trace through the `inspect_session` tool — `view: activities` for completed activities, `view: checkpoints` for checkpoint decisions, `view: history` for the event trace, or `view: summary` for all of it — rather than reading `session.json` directly.

## Rules

Expand Down
1 change: 1 addition & 0 deletions meta/techniques/workflow-engine/verify-outcomes.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@ Array of unsatisfied outcomes
## Protocol

1. For each entry in `{outcomes}`, evaluate satisfaction against state variables, artifact presence in `planning_folder_path`, and the completed-activities trace; collect every unmet item into `{gaps}`.
> Read the state variables and completed-activities trace through the `inspect_session` tool (`view: variables` and `view: activities`, or `view: summary` for both) rather than reading `session.json` directly.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ Workflow [retrospective](../../resources/workflow-retrospective.md#output-sectio
### 1. Capture History

- If metadata repository exists, capture session history.
> Obtain session state through the `inspect_session` tool (e.g. `view: history` for the event trace, `view: summary` for the full picture) rather than reading `session.json` directly.

### 2. Conduct Retrospective

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ The identified next work package (when applicable) together with the context pre

- Identify next work package if applicable.
- Prepare context for transition.
> When carried context depends on the session's own record (variables, completed activities, checkpoint decisions), read it through the `inspect_session` tool (`view: summary`, or a narrower view) rather than reading `session.json` directly.