@paradigma-inc/flywheel 0.1.16 → 0.1.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,160 +1,153 @@
1
1
  # Flywheel MCP Tool Map
2
2
 
3
- This reference describes the Flywheel MCP tool families and the common runtime
4
- contract expected by the public Flywheel skill.
3
+ Contract-aligned routing guide for Flywheel MCP tool usage.
5
4
 
6
- Use it as a routing guide, not as a session snapshot. Always verify the exact
7
- tool surface exposed by your current MCP host before executing critical flows.
5
+ Flywheel is a graph-based system for tracking research work, decisions, and evidence over time. Flywheel MCP is the tool interface for reading and updating that graph. You can discover, create, and manage nodes. You can collaborate with other users and use managed compute.
8
6
 
9
7
  ## Core Contract Expectations
10
8
 
11
- - Node lifecycle and graph-mutation flows use optimistic locking
12
- (`expected_revision`).
13
- - Node commits require `kind`, `outcome`, and `summary`.
14
- - `kind` is typically `insight` or `empirical`.
15
- - `insight` commits require non-empty `insights`.
16
- - `empirical` commits require a non-empty `hypothesis`; completed empirical
17
- commits also require artifacts or a `no_artifacts_reason`.
18
- - Artifact publish is a two-step flow:
19
- prepare upload, upload raw bytes to returned signed URLs, then finalize
20
- the upload batch.
9
+ - Use `flywheel_get_contract` + `flywheel_get_contract_section` as canonical contract references.
10
+ - Node state is canonical durable state; avoid relying on ephemeral transcript state.
11
+ - Node kind (`untyped`, `empirical`, `insight`) is an explicit durable field.
12
+ - Node references include immutable `node_id` and optional immutable `slug_name`; prefer communicating both together for human clarity and disambiguation.
13
+ - Insight nodes should represent conceptual observations (theoretical insights, intuitions, motivations, decision-relevant framing); empirical nodes should represent experiments with explicit hypotheses and measured outcomes.
14
+ - Graph topology should encode logical/causal relations between concepts and experiments. Avoid defaulting to shallow root-only branching unless work items are truly independent.
15
+ - Node lifecycle semantics are interface-agnostic (`stage_node_create`, `stage_node_update`, `commit_node`); MCP tools are one projection of this shared contract.
16
+ - Mutating node writes are optimistic-locking operations: read latest state, pass `expected_revision`, and handle `409 conflict` with explicit reconciliation.
17
+ - Mutating operations are idempotent; MCP tool transport auto-manages `Idempotency-Key` on mutating tool calls.
18
+ - Commit is finalize-only: commit requests require `expected_revision` and may optionally override `summary`; committed node state must still satisfy strict contract (`summary`/`outcome`, `empirical+completed` requires artifacts or `no_artifacts_reason`, `insight` requires non-empty insights).
19
+ - When code is involved, pass `repo_url`/`branch_name`/`head_commit_sha` and align git structure with graph topology where practical (without forcing one-to-one mapping).
20
+ - Summaries, hypotheses, and artifacts should be reproduction-grade: enough setup, method, evidence, and interpretation for another reader to reproduce or audit results.
21
+ - Empirical workflow is hypothesis-driven: launch execution, inspect outcomes, publish evidence artifacts, and commit only after terminal status.
22
+ - For empirical work, publish evidence with `flywheel_prepare_artifact_uploads`, upload raw file bytes, then `flywheel_finalize_artifact_uploads` before commit.
23
+ - Artifact metadata records expose a non-empty `title` suitable for display labels; title normalization must never derive from `storage_url`.
21
24
 
22
25
  ## Tool Families
23
26
 
24
- ### Session, Auth, and Contract
25
-
26
- - `mcp__flywheel__flywheel_auth_status`
27
- - `mcp__flywheel__flywheel_get_contract`
28
- - `mcp__flywheel__flywheel_get_contract_section`
29
- - `mcp__flywheel__flywheel_get_credits_balance`
30
-
31
- ### Node Discovery and Read
32
-
33
- - `mcp__flywheel__flywheel_list_nodes`
34
- - `mcp__flywheel__flywheel_get_node`
35
- - `mcp__flywheel__flywheel_get_node_tree`
36
- - `mcp__flywheel__flywheel_get_node_ancestry`
37
- - `mcp__flywheel__flywheel_summarize_node_tree`
38
- - `mcp__flywheel__flywheel_get_campaign_snapshot`
39
- - `mcp__flywheel__flywheel_list_audit`
40
-
41
- ### Node Mutation, Branching, and Commit
42
-
43
- - `mcp__flywheel__flywheel_stage_node_create`
44
- - `mcp__flywheel__flywheel_stage_node_update`
45
- - `mcp__flywheel__flywheel_commit_node`
46
- - `mcp__flywheel__flywheel_branch_node`
47
- - `mcp__flywheel__flywheel_merge_nodes`
48
- - `mcp__flywheel__flywheel_add_parent`
49
- - `mcp__flywheel__flywheel_remove_parent`
50
- - `mcp__flywheel__flywheel_delete_node`
51
- - `mcp__flywheel__flywheel_bulk_delete_nodes`
52
-
53
- ### Access Policy and Collaboration
54
-
55
- - `mcp__flywheel__flywheel_get_node_sharing`
56
- - `mcp__flywheel__flywheel_set_sharing_for_node`
57
- - `mcp__flywheel__flywheel_set_sharing_for_nodes`
58
-
59
- ### Tags and Graph Annotation
60
-
61
- - `mcp__flywheel__flywheel_create_node_tag`
62
- - `mcp__flywheel__flywheel_update_node_tag`
63
- - `mcp__flywheel__flywheel_delete_node_tag`
64
- - `mcp__flywheel__flywheel_set_node_tag_assignments`
27
+ ### Discovery and sharing
28
+
29
+ - `flywheel_auth_status` (read; scopes: `read`; HTTP: `GET /auth/status`; core surface): Return Flywheel auth status for the current access token.
30
+ - `flywheel_get_credits_balance` (read; scopes: `read`; HTTP: `GET /credits`; core surface): Return current user credits balance and lifetime counters.
31
+ - `flywheel_updates_list` (read; scopes: `read`; HTTP: `GET /mcp/updates`; core surface): List in-app updates/announcements for the signed-in user.
32
+ - `flywheel_updates_hide` (mutating; scopes: `write`; HTTP: `POST /mcp/updates/{announcement_id}/hide`; core surface): Mark one update as hidden for the current user (Don't show again).
33
+ - `flywheel_updates_hide_all_active` (mutating; scopes: `write`; HTTP: `POST /mcp/updates/hide-all-active`; core surface): Hide all active updates for the current user (Don't show all active again).
34
+ - `flywheel_updates_unhide` (mutating; scopes: `write`; HTTP: `DELETE /mcp/updates/{announcement_id}/hide`; core surface): Restore one hidden update for the current user.
35
+ - `flywheel_list_nodes` (read; scopes: `read`; HTTP: `GET /mcp/nodes`; full-surface only): List nodes with optional owners/writers/visibility filters and projection control (`core`, `topology`, `full`).
36
+ - `flywheel_resolve_node_slug` (read; scopes: `read`; HTTP: `GET /mcp/nodes/resolve-by-slug`; core surface): Resolve a node by slug_name with explicit conflict handling (`unique`, `context_resolved`, `ambiguous`, `not_found`).
37
+ - `flywheel_get_node_sharing` (read; scopes: `read`; HTTP: `GET /mcp/nodes/{node_id}/sharing`; full-surface only): Get node sharing for one node (owner/collaborators/visibility).
38
+ - `flywheel_set_sharing_for_node` (mutating; scopes: `write`; HTTP: `PUT /mcp/nodes/{node_id}/sharing`; full-surface only): Set sharing for one owned node (collaborators/private-unlisted-public visibility).
39
+ - `flywheel_set_sharing_for_nodes` (mutating; scopes: `write`; HTTP: `POST /mcp/nodes/sharing/bulk`; full-surface only): Apply one sharing configuration across multiple owned nodes in bulk.
40
+ - `flywheel_get_node` (read; scopes: `read`; HTTP: `GET /mcp/nodes/{node_id}`; core surface): Get one node by node_id.
41
+ - `flywheel_create_node_tag` (mutating; scopes: `write`; HTTP: `POST /mcp/nodes/{root_node_id}/tags`; full-surface only): Create one graph tag from a root node.
42
+ - `flywheel_update_node_tag` (mutating; scopes: `write`; HTTP: `PATCH /mcp/nodes/{root_node_id}/tags/{tag_id}`; full-surface only): Update one graph tag from a root node.
43
+ - `flywheel_delete_node_tag` (mutating; scopes: `write`; HTTP: `DELETE /mcp/nodes/{root_node_id}/tags/{tag_id}`; full-surface only): Delete one graph tag from a root node.
44
+ - `flywheel_set_node_tag_assignments` (mutating; scopes: `write`; HTTP: `PUT /mcp/nodes/{node_id}/tags`; full-surface only): Set graph tag assignments for one node.
45
+ - `flywheel_get_node_tree` (read; scopes: `read`; HTTP: `GET /mcp/nodes/{node_id}/tree`; full-surface only): Get a root-aware bounded tree/DAG projection for an anchor node.
46
+ - `flywheel_get_node_ancestry` (read; scopes: `read`; HTTP: `GET /mcp/nodes/{node_id}/ancestry`; full-surface only): Get ordered ancestry metadata from an anchor node to root boundaries.
47
+ - `flywheel_get_campaign_snapshot` (read; scopes: `read`; HTTP: `GET /mcp/nodes/{node_id}/campaign/snapshot`; core surface): Read the current campaign snapshot for a node's root campaign, including configured views and derived records.
48
+ - `flywheel_list_audit` (read; scopes: `read`; HTTP: `GET /mcp/nodes/{node_id}/audit`; full-surface only): List node MCP audit events.
49
+
50
+ ### Node lifecycle
51
+
52
+ - `flywheel_stage_node_create` (mutating; scopes: `write`; HTTP: `POST /mcp/nodes/stage/create`; full-surface only): Stage creation of a new Flywheel node.
53
+ - `flywheel_stage_node_update` (mutating; scopes: `write`; HTTP: `PATCH /mcp/nodes/{node_id}/stage/update`; core surface): Stage mutable node fields, including content/readme text, with optimistic locking; use `no_artifacts_reason` when empirical completed nodes intentionally have no artifacts.
54
+ - `flywheel_commit_node` (mutating; scopes: `write`; HTTP: `POST /mcp/nodes/{node_id}/commit`; core surface): Commit a node with contract validation.
55
+ - `flywheel_branch_node` (mutating; scopes: `write`; HTTP: `POST /mcp/nodes/{node_id}/branch`; full-surface only): Create a child branch node.
56
+ - `flywheel_merge_nodes` (mutating; scopes: `write`; HTTP: `POST /mcp/nodes/merge`; full-surface only): Merge nodes with caller-resolved node payload.
57
+ - `flywheel_add_parent` (mutating; scopes: `write`; HTTP: `POST /mcp/nodes/{node_id}/parents/add`; full-surface only): Attach an additional parent edge to an existing node (keeps node identity, validates against cycles).
58
+ - `flywheel_remove_parent` (mutating; scopes: `write`; HTTP: `POST /mcp/nodes/{node_id}/parents/remove`; full-surface only): Detach one parent edge from a node without deleting the node.
59
+ - `flywheel_delete_node` (mutating; scopes: `write`; HTTP: `DELETE /mcp/nodes/{node_id}`; full-surface only): Delete a node subtree.
60
+ - `flywheel_bulk_delete_nodes` (mutating; scopes: `write`; HTTP: `POST /mcp/nodes/bulk-delete`; full-surface only): Delete multiple node subtrees in one operation.
65
61
 
66
62
  ### Artifacts
67
63
 
68
- - `mcp__flywheel__flywheel_list_artifacts`
69
- - `mcp__flywheel__flywheel_get_artifact`
70
- - `mcp__flywheel__flywheel_get_artifact_preview`
71
- - `mcp__flywheel__flywheel_prepare_artifact_uploads`
72
- - `mcp__flywheel__flywheel_finalize_artifact_uploads`
73
- - `mcp__flywheel__flywheel_set_artifact_note`
74
- - `mcp__flywheel__flywheel_delete_artifact`
75
-
76
- Common artifact types include:
77
- `text`, `table`, `json`, `image`, `banner`, `html`, `plotly_html`, `vega`,
78
- `checkpoint`, and `diff_carousel`.
79
-
80
- ### Export and Import
81
-
82
- - `mcp__flywheel__flywheel_export_subgraph`
83
- - `mcp__flywheel__flywheel_import_subgraph`
84
- - `mcp__flywheel__flywheel_export_summary`
85
- - `mcp__flywheel__flywheel_export_summary_stream`
86
- - `mcp__flywheel__flywheel_export_summary_pdf`
87
- - `mcp__flywheel__flywheel_export_summary_render_pdf`
64
+ - `flywheel_prepare_artifact_uploads` (mutating; scopes: `write`; HTTP: `POST /mcp/nodes/{node_id}/artifacts/uploads/prepare`; core surface): Prepare one or more raw-file artifact uploads (returns batch token + signed upload URLs). Upload must send raw file bytes to the returned URLs (do not upload JSON metadata wrappers).
65
+ - `flywheel_finalize_artifact_uploads` (mutating; scopes: `write`; HTTP: `POST /mcp/nodes/{node_id}/artifacts/uploads/finalize`; core surface): Finalize a prepared artifact upload batch and append all staged artifacts to the node in one revision bump.
66
+ - `flywheel_list_artifacts` (read; scopes: `read`; HTTP: `GET /mcp/nodes/{node_id}/artifacts`; core surface): List node artifacts.
67
+ - `flywheel_get_artifact` (read; scopes: `read`; HTTP: `GET /mcp/nodes/{node_id}/artifacts/{artifact_id}`; core surface): Get one artifact by id.
68
+ - `flywheel_delete_artifact` (mutating; scopes: `write`; HTTP: `DELETE /mcp/nodes/{node_id}/artifacts/{artifact_id}`; core surface): Delete one artifact by id with optimistic locking.
69
+ - `flywheel_set_artifact_note` (mutating; scopes: `write`; HTTP: `PATCH /mcp/nodes/{node_id}/artifacts/{artifact_id}/note`; core surface): Set or clear one artifact note with optimistic locking.
88
70
 
89
71
  ### Executions
90
72
 
91
- - `mcp__flywheel__flywheel_launch_execution`
92
- - `mcp__flywheel__flywheel_list_executions`
93
- - `mcp__flywheel__flywheel_terminate_execution`
94
-
95
- ### Managed Compute
96
-
97
- - `mcp__flywheel__flywheel_approval_session_heartbeat`
98
- - `mcp__flywheel__flywheel_list_approval_sessions`
99
- - `mcp__flywheel__flywheel_expire_approval_session`
100
- - `mcp__flywheel__flywheel_request_compute_grant_approval`
101
- - `mcp__flywheel__flywheel_list_compute_grants`
102
- - `mcp__flywheel__flywheel_compute_list_options`
103
- - `mcp__flywheel__flywheel_compute_acquire`
104
- - `mcp__flywheel__flywheel_compute_status`
105
- - `mcp__flywheel__flywheel_compute_connection`
106
- - `mcp__flywheel__flywheel_compute_release`
107
- - `mcp__flywheel__flywheel_compute_release_all`
108
-
109
- ### Campaign Budgets (Organizer Flows)
110
-
111
- - `mcp__flywheel__flywheel_list_campaign_budgets`
112
- - `mcp__flywheel__flywheel_create_campaign_budget`
113
- - `mcp__flywheel__flywheel_update_campaign_budget`
114
- - `mcp__flywheel__flywheel_revoke_campaign_budget`
115
-
116
- ### Migration Helpers
117
-
118
- Some installations may expose migration-only helper tools with hashed names.
119
- Treat these as specialized one-off tools, not part of day-to-day research
120
- workflows.
73
+ - `flywheel_launch_execution` (mutating; scopes: `write`; HTTP: `POST /mcp/nodes/{node_id}/executions`; core surface): Launch node execution.
74
+ - `flywheel_list_executions` (read; scopes: `read`; HTTP: `GET /mcp/nodes/{node_id}/executions`; core surface): List node executions.
75
+ - `flywheel_terminate_execution` (mutating; scopes: `write`; HTTP: `POST /mcp/nodes/{node_id}/executions/{execution_id}/terminate`; core surface): Terminate a node execution.
76
+
77
+ ### Compute and budgets
78
+
79
+ - `flywheel_compute_list_options` (read; scopes: `compute`; HTTP: `GET /mcp/nodes/{node_id}/compute/options`; core surface): List managed compute options allowed for a node. When using grant-backed compute, pass the same compute_grant_id you will use for acquire.
80
+ - `flywheel_compute_status` (read; scopes: `compute`; HTTP: `GET /mcp/compute/status`; core surface): Read managed compute lease status for the current user. Lease rows include ownership flags so hosts can distinguish user-owned leases from sponsor-visible campaign leases. When checking a grant-backed lease, reuse the same compute_grant_id passed to acquire.
81
+ - `flywheel_compute_connection` (read; scopes: `compute`; HTTP: `GET /mcp/compute/connection`; core surface): Read SSH connection material for an active managed compute lease once flywheel_compute_status indicates the lease is usable. Only leases owned by the current user are connectable. Pass lease_id or node_id to disambiguate when needed.
82
+ - `flywheel_approval_session_heartbeat` (read; scopes: `compute`; HTTP: `POST /mcp/approval-sessions/heartbeat`; core surface): Create or refresh a compute-grant approval session for the current MCP host session.
83
+ - `flywheel_list_approval_sessions` (read; scopes: `compute`; HTTP: `GET /mcp/approval-sessions`; core surface): List approval sessions visible to the current user. Optionally include grant approval bindings for each session.
84
+ - `flywheel_expire_approval_session` (mutating; scopes: `compute`; HTTP: `POST /mcp/approval-sessions/expire`; core surface): Expire the current compute-grant approval session and release its active leases.
85
+ - `flywheel_request_compute_grant_approval` (mutating; scopes: `compute`; HTTP: `tool-mediated`; core surface): Request budget approval and return approval_url + request_id for user confirmation before managed compute acquisition.
86
+ - `flywheel_list_compute_grants` (read; scopes: `compute`; HTTP: `GET /mcp/compute/grants`; core surface): List active/exhausted compute grants available to the current user.
87
+ - `flywheel_list_campaign_budgets` (read; scopes: `compute`; HTTP: `GET /mcp/nodes/{root_node_id}/campaign-budgets`; full-surface only): List campaign compute budgets for a campaign root. Organizer-only management view.
88
+ - `flywheel_create_campaign_budget` (mutating; scopes: `compute`; HTTP: `POST /mcp/nodes/{root_node_id}/campaign-budgets`; full-surface only): Create an organizer-funded campaign compute budget shared with participants.
89
+ - `flywheel_update_campaign_budget` (mutating; scopes: `compute`; HTTP: `PATCH /mcp/nodes/{root_node_id}/campaign-budgets/{compute_budget_id}`; full-surface only): Update hard caps or metadata for an organizer-funded campaign compute budget.
90
+ - `flywheel_revoke_campaign_budget` (mutating; scopes: `compute`; HTTP: `DELETE /mcp/nodes/{root_node_id}/campaign-budgets/{compute_budget_id}`; full-surface only): Revoke an organizer-funded campaign compute budget.
91
+ - `flywheel_compute_acquire` (mutating; scopes: `compute`; HTTP: `POST /mcp/nodes/{node_id}/compute/acquire`; core surface): Acquire managed compute for a node with explicit SKU + region and required compute_grant_id (returns accepted/completed lease state only; poll flywheel_compute_status for readiness, not SSH key material). This tool heartbeats and forwards approval_session_id.
92
+ - `flywheel_compute_release` (mutating; scopes: `compute`; HTTP: `POST /mcp/compute/release`; core surface): Asynchronously release one managed compute lease by lease_id.
93
+ - `flywheel_compute_release_all` (mutating; scopes: `compute`; HTTP: `POST /mcp/compute/release-all`; core surface): Asynchronously release all active managed compute leases for the current user.
94
+
95
+ ### Contract, audit, and export
96
+
97
+ - `flywheel_get_contract` (read; scopes: `read`; HTTP: `GET /mcp/contract`; core surface): Return Flywheel MCP contract overview (scopes, write safety, operation catalog, and section index).
98
+ - `flywheel_get_contract_section` (read; scopes: `read`; HTTP: `GET /mcp/contract/sections/{section_id}`; core surface): Return one contract section by section_id (for example `graph` or `campaign/template_v1`).
99
+ - `flywheel_export_subgraph` (read; scopes: `read`; HTTP: `POST /mcp/export`; full-surface only): Export selected graph/subgraph nodes as JSON.
100
+ - `flywheel_import_subgraph` (mutating; scopes: `write`; HTTP: `POST /mcp/import`; full-surface only): Import graph/subgraph JSON payload into new node IDs. Set normalize_cycles=true to drop cycle/self-loop edges; default rejects cyclic payloads.
101
+ - `flywheel_summarize_node_tree` (read; scopes: `read`; HTTP: `GET /mcp/nodes/{node_id}/summary`; full-surface only): Summarize a node tree using node fields only.
102
+ - `flywheel_export_summary` (read; scopes: `read`; HTTP: `POST /mcp/export-summary`; full-surface only): Generate markdown summary for selected nodes.
103
+ - `flywheel_export_summary_stream` (read; scopes: `read`; HTTP: `POST /mcp/export-summary-stream`; full-surface only): Generate summary stream events for selected nodes.
104
+ - `flywheel_export_summary_pdf` (read; scopes: `read`; HTTP: `POST /mcp/export-summary-pdf`; full-surface only): Generate PDF summary for selected nodes.
105
+ - `flywheel_export_summary_render_pdf` (read; scopes: `read`; HTTP: `POST /mcp/export-summary-render-pdf`; full-surface only): Render provided markdown to PDF and embed export metadata.
121
106
 
122
107
  ## Practical Tool Sequences
123
108
 
124
- ### Insight Node Flow
125
-
126
- 1. `mcp__flywheel__flywheel_stage_node_create`
127
- 2. `mcp__flywheel__flywheel_stage_node_update`
128
- 3. `mcp__flywheel__flywheel_commit_node`
129
-
130
- ### Empirical Node With Artifacts
131
-
132
- 1. `mcp__flywheel__flywheel_stage_node_create`
133
- 2. `mcp__flywheel__flywheel_stage_node_update`
134
- 3. Run experiment or compute steps
135
- 4. `mcp__flywheel__flywheel_prepare_artifact_uploads`
136
- 5. Upload artifact bytes to signed URLs
137
- 6. `mcp__flywheel__flywheel_finalize_artifact_uploads`
138
- 7. `mcp__flywheel__flywheel_commit_node`
139
-
140
- ### Managed Compute Flow
141
-
142
- 1. `mcp__flywheel__flywheel_approval_session_heartbeat`
143
- 2. `mcp__flywheel__flywheel_request_compute_grant_approval`
144
- 3. `mcp__flywheel__flywheel_list_compute_grants` (if needed)
145
- 4. `mcp__flywheel__flywheel_compute_acquire`
146
- 5. `mcp__flywheel__flywheel_compute_status` until ready
147
- 6. `mcp__flywheel__flywheel_compute_connection`
148
- 7. `mcp__flywheel__flywheel_compute_release` (or `..._release_all`)
149
-
150
- ### Share a Graph With Collaborators
151
-
152
- 1. `mcp__flywheel__flywheel_get_node_sharing`
153
- 2. `mcp__flywheel__flywheel_set_sharing_for_node` (or `..._for_nodes`)
154
- 3. `mcp__flywheel__flywheel_export_summary` or `..._export_subgraph` for handoff
155
-
156
- ## Safety Notes
157
-
158
- - Prefer `get_contract` before implementing strict assumptions in automation.
159
- - Avoid call-order assumptions not mandated by contract.
160
- - Keep checks bounded: list/read first, then mutate only the intended nodes.
109
+ ### List Owned Nodes
110
+
111
+ 1. `flywheel_list_nodes` with `{'owners': ['me'], 'projection': 'core'}`.
112
+
113
+ ### Safe Node Update
114
+
115
+ 1. `flywheel_get_node`: Read latest node state before mutating fields.
116
+ 2. `flywheel_stage_node_update`: Stage changes with fresh expected_revision and resolve 409 conflicts explicitly.
117
+ 3. `flywheel_commit_node`: Commit once terminal and contract-complete.
118
+
119
+ ### Empirical Workflow
120
+
121
+ 1. `flywheel_stage_node_create`: Create a staged node, then set empirical fields before execution.
122
+ 2. `flywheel_stage_node_update`: Set `kind=empirical`, `hypothesis`, and summary fields with fresh `expected_revision`.
123
+ 3. `flywheel_request_compute_grant_approval`: If compute is needed, request budget approval first. Response status is `approval_required`.
124
+ 4. Branch on `flywheel_request_compute_grant_approval.status`: Branch by response status. `approval_required` is a response state, not a request parameter.. if `approval_required` then `present_approval_url_to_user`: Present `approval_url` to the user; the user opens it and confirms budget approval.; `flywheel_list_approval_sessions`: After approval, list approval sessions with include_approvals=true and use the active `compute_grant_id` for the current approval_session_id.
125
+ 5. `flywheel_compute_acquire`: Acquire lease with `compute_grant_id`; include `approval_session_id` from approval response.
126
+ 6. `flywheel_compute_status`: Poll until the active lease is ready; follow `recommended_next_action`.
127
+ 7. `flywheel_launch_execution`: Launch execution once compute and inputs are ready.
128
+ 8. `flywheel_list_executions`: Poll until execution reaches terminal status.
129
+ 9. `flywheel_prepare_artifact_uploads`: Prepare signed upload URLs for empirical evidence.
130
+ 10. `raw_file_upload`: Upload raw bytes to each signed URL with required headers.
131
+ 11. `flywheel_finalize_artifact_uploads`: Finalize prepared uploads before commit, or set `no_artifacts_reason` when intentionally artifact-free.
132
+ 12. `flywheel_commit_node`: Commit terminal empirical node once contract requirements are satisfied.
133
+
134
+ ## Runtime Guidance
135
+
136
+ - `flywheel_resolve_node_slug`: resolve human-facing slug references. If response status is `ambiguous`, ask the user to confirm the intended node_id before mutating anything.
137
+ - `flywheel_get_node`: read the current node state before writes.
138
+ - `flywheel_stage_node_update`: update in-progress node fields (title/content/summary, kind/outcome/hypothesis/insights/no_artifacts_reason), always with fresh `expected_revision`.
139
+ - `flywheel_get_campaign_snapshot`: read the current derived campaign state for this node's root campaign instead of inferring standings from freeform text.
140
+ - `flywheel_get_node_sharing`: after sharing writes, verify with flywheel_get_node_sharing before reporting private/shared/public state.
141
+ - `flywheel_compute_status`: check first when work may need managed compute (GPU), to detect any active user lease state.
142
+ - `flywheel_list_compute_grants`: list active compute grants (funded by user/root budgets) and select one `compute_grant_id` for acquisition.
143
+ - `flywheel_request_compute_grant_approval`: request/confirm budget before acquire and choose a budget source (`user` or `root`); this returns `approval_url` + `request_id` when interactive approval is needed.
144
+ - `flywheel_compute_connection`: read SSH connection material for the active user lease once status indicates the lease is usable.
145
+ - `flywheel_compute_list_options`: use when a lease is needed and no suitable active lease exists, then select explicit provider-qualified `offer_id` (`provider::offer_id`) and `region`. Consider each option's `availability_mode`: `live_capacity` means provider-reported capacity, `allocation_time` means capacity is confirmed only when `flywheel_compute_acquire` attempts provisioning.
146
+ - `flywheel_compute_acquire`: provision compute once requirements are clear. This requires a valid `compute_grant_id` and returns lease/provisioning state only (not SSH key material).
147
+ - `flywheel_compute_release`: release compute when no longer needed.
148
+ - `flywheel_launch_execution`, `flywheel_list_executions`, `flywheel_terminate_execution`: manage execution lifecycle.
149
+ - `flywheel_prepare_artifact_uploads`: prepare one or more signed raw-file upload requests for concrete deliverables/evidence produced by the work.
150
+ - `flywheel_finalize_artifact_uploads`: finalize a staged artifact batch and append all uploaded artifacts in one revision bump.
151
+ - `flywheel_delete_artifact`: remove an accidental/obsolete node artifact.
152
+ - `flywheel_list_artifacts`, `flywheel_get_artifact`: inspect node artifact metadata (`title` is the display label) and consume `storage_url` for raw artifact bytes only.
153
+ - `flywheel_commit_node`: finalize staged node state once terminal and contract-complete (optional summary override only).