@paradigma-inc/flywheel 0.1.142 → 0.1.146
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.
- package/package.json +1 -1
- package/skills/flywheel/references/INTERFACES.md +2 -4
- package/skills/flywheel/references/flywheel-cli-tool-map.md +2 -13
- package/skills/flywheel/references/flywheel-mcp-tool-map.md +1 -10
- package/skills/flywheel-auto/references/INTERFACES.md +2 -4
- package/skills/flywheel-auto/references/flywheel-cli-tool-map.md +2 -5
- package/skills/flywheel-auto/references/flywheel-mcp-tool-map.md +1 -2
- package/skills/flywheel-lookahead/references/INTERFACES.md +2 -4
- package/skills/flywheel-lookahead/references/flywheel-cli-tool-map.md +2 -5
- package/skills/flywheel-lookahead/references/flywheel-mcp-tool-map.md +1 -2
- package/skills/flywheel-reproduce/references/INTERFACES.md +2 -4
- package/skills/flywheel-reproduce/references/flywheel-cli-tool-map.md +2 -5
- package/skills/flywheel-reproduce/references/flywheel-mcp-tool-map.md +1 -2
- package/skills/flywheel-to-graph/references/INTERFACES.md +2 -4
- package/skills/flywheel-to-graph/references/flywheel-cli-tool-map.md +2 -5
- package/skills/flywheel-to-graph/references/flywheel-mcp-tool-map.md +1 -2
- package/src/runtime/required-runtime-commands.json +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/graph-operation-resources.js +4 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/graph-operation-resources.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/repository.js +27 -9
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/repository.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/repository-operation.js +16 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/repository-operation.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/repository-projection.js +3 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/repository-projection.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/local/adapter.js +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/adapter.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/models/constants.js +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/models/constants.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/rebase/replay.js +25 -53
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/rebase/replay.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/service/staging.js +34 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/service/staging.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/service/writes.js +175 -92
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/service/writes.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/dispatch.js +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/dispatch.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/core.js +14 -1
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/core.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/index.js +2 -1
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/index.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/projections.js +26 -14
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/projections.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/projection.js +48 -15
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/projection.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/local/store/apply.js +2 -2
- package/src/runtime/vendor/flywheel-cli-dist/local/store/apply.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/local/store/backup/archive.js +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/local/store/backup/archive.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/local/store/contract.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/local/store/history-validation.js +7 -5
- package/src/runtime/vendor/flywheel-cli-dist/local/store/history-validation.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/local/store/latest-values.js +6 -107
- package/src/runtime/vendor/flywheel-cli-dist/local/store/latest-values.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/local/store/pending.js +112 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/pending.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/projection/apply.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/local/store/projection/artifacts.js +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/projection/artifacts.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/local/store/projection/nodes.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/local/store/projection/relations.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/local/store/projection/tags.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sqlite/store.js +36 -1
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sqlite/store.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sync.js +2 -2
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sync.js.map +1 -1
- package/src/runtime/vendor/manifest.json +3 -1
package/package.json
CHANGED
|
@@ -58,7 +58,6 @@ direct-neighbor traversal.
|
|
|
58
58
|
- `flywheel_get_node_tree` (read; scopes: `read`; full-surface only; binding: `operation`)
|
|
59
59
|
- `flywheel_get_node_ancestry` (read; scopes: `read`; full-surface only; binding: `operation`)
|
|
60
60
|
- `flywheel_get_campaign_snapshot` (read; scopes: `read`; core surface; binding: `operation`)
|
|
61
|
-
- `flywheel_admin_nodes_audit_list` (admin-only read; scopes: `read`; full-surface only; binding: `operation`)
|
|
62
61
|
|
|
63
62
|
### Node stage and commit
|
|
64
63
|
|
|
@@ -110,7 +109,7 @@ direct-neighbor traversal.
|
|
|
110
109
|
- `flywheel_compute_release` (mutating; scopes: `compute`; core surface; binding: `operation`)
|
|
111
110
|
- `flywheel_compute_release_all` (mutating; scopes: `compute`; core surface; binding: `operation`)
|
|
112
111
|
|
|
113
|
-
### Contract
|
|
112
|
+
### Contract and export
|
|
114
113
|
|
|
115
114
|
- `flywheel_get_contract` (read; scopes: `read`; core surface; binding: `operation`)
|
|
116
115
|
- `flywheel_get_contract_section` (read; scopes: `read`; core surface; binding: `operation`)
|
|
@@ -145,7 +144,6 @@ direct-neighbor traversal.
|
|
|
145
144
|
- `GET /nodes/{node_id}/tree` -> `flywheel_get_node_tree`
|
|
146
145
|
- `GET /nodes/{node_id}/ancestry` -> `flywheel_get_node_ancestry`
|
|
147
146
|
- `GET /nodes/{node_id}/campaign/snapshot` -> `flywheel_get_campaign_snapshot`
|
|
148
|
-
- `GET /admin/nodes/{node_id}/audit` -> `flywheel_admin_nodes_audit_list` (admin only)
|
|
149
147
|
|
|
150
148
|
### Node stage and commit
|
|
151
149
|
|
|
@@ -197,7 +195,7 @@ direct-neighbor traversal.
|
|
|
197
195
|
- `tool-mediated` -> `flywheel_compute_release`
|
|
198
196
|
- `tool-mediated` -> `flywheel_compute_release_all`
|
|
199
197
|
|
|
200
|
-
### Contract
|
|
198
|
+
### Contract and export
|
|
201
199
|
|
|
202
200
|
- `GET /mcp/contract` -> `flywheel_get_contract`
|
|
203
201
|
- `GET /mcp/contract/sections/{section_id}` -> `flywheel_get_contract_section`
|
|
@@ -97,7 +97,7 @@ The families below group CLI capabilities alongside related MCP tools. A related
|
|
|
97
97
|
- `flywheel compute:release` (mutating; scopes: `compute`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_compute_release`): Release one active compute lease (async; use `--wait` to block).
|
|
98
98
|
- `flywheel compute:release-all` (mutating; scopes: `compute`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_compute_release_all`): Release active leases in the current `lease_control_token` scope; `--force --yes` still requires `--lease_control_token` and explicitly broadens cleanup to all current-user active leases.
|
|
99
99
|
|
|
100
|
-
### Contract
|
|
100
|
+
### Contract and export
|
|
101
101
|
|
|
102
102
|
- (no CLI equivalent; MCP equivalent: `flywheel_get_contract`): MCP contract introspection is MCP-only. In `--mode cli` install, treat each command's `flywheel help <command>` output as the canonical per-command contract reference.
|
|
103
103
|
- (no CLI equivalent; MCP equivalent: `flywheel_get_contract_section`): Same as above.
|
|
@@ -129,10 +129,8 @@ These commands have no MCP counterpart. They cover auth/profile management, acco
|
|
|
129
129
|
- `flywheel nodes:files` (read; scopes: `read`): List files attached to a node.
|
|
130
130
|
- `flywheel nodes:sharing:summaries` (read; scopes: `read`): Read access summaries for multiple nodes in one batch.
|
|
131
131
|
|
|
132
|
-
### Compute
|
|
132
|
+
### Compute budgets (CLI-only)
|
|
133
133
|
|
|
134
|
-
- `flywheel admin:compute:policy:get` (admin-only read; scopes: `compute`): Read compute budget policy for a node.
|
|
135
|
-
- `flywheel admin:compute:policy:set` (admin-only mutating; scopes: `compute`): Update explicit compute policy fields such as `--hard_cap_cents`, `--managed_compute_enabled`, `--provider_filters`, `--allowed_offer_ids`, `--preferred_offer_ids`, and `--auto_shutdown_idle_seconds`.
|
|
136
134
|
- `flywheel compute:budgets` (read; scopes: `compute`): List budget grants visible for a node context.
|
|
137
135
|
- `flywheel machines:list` (read; scopes: `compute`): List your managed compute leases.
|
|
138
136
|
|
|
@@ -286,15 +284,6 @@ flywheel hosted:node:get "<node-id>" --format=json
|
|
|
286
284
|
- `flywheel hosted:artifact:list --node_id=<id> --format=json` and `flywheel hosted:artifact:get --node_id=<id> --artifact_id=<artifact-id> --format=json` inspect node artifact metadata and expose `storage_url` for raw artifact bytes.
|
|
287
285
|
- `flywheel hosted:node:create --repository-id=<repository-id> --title=<title> --format=json` and `flywheel hosted:node:set <node-id> --repository-id=<repository-id> --field=<field> --value-file=<path> --format=json` publish repository commits directly.
|
|
288
286
|
|
|
289
|
-
## Admin only (FLY-359)
|
|
290
|
-
|
|
291
|
-
These commands require `FLYWHEEL_ADMIN_KEY` in the environment (forwarded as the `X-Admin-Key` header) or an admin browser session. Default help and JSON help hide admin commands unless `FLYWHEEL_ADMIN_KEY` or `FLYWHEEL_CLI_INTERNAL=1` is present; `admin:<command>` below is generic syntax, not a concrete public command. API-key-only callers fail locally with `admin_auth_required`. The endpoints are omitted from the public OpenAPI schema and from the API-key allowlist.
|
|
292
|
-
|
|
293
|
-
- `flywheel admin:graphs:list` — list every root-node graph across all users. Filters: `--tag-id`, `--owner-user-id`, `--created-after`, `--created-before`, `--cursor`, `--page-size` (1..200).
|
|
294
|
-
- `flywheel admin:graphs:export --root-node-id=<id>` — export one graph as canonical JSON, bypassing per-caller visibility.
|
|
295
|
-
- `flywheel admin:graphs:export:stream` — stream canonical graph JSON for many graphs as NDJSON (one page per call, `--out=<file>` to write to disk). Filters match `admin:graphs:list`.
|
|
296
|
-
- `flywheel admin:nodes:audit:list --node_id=<node-id>` — list audit events for node-level actions across all users. Use `--limit` to bound the number of events.
|
|
297
|
-
|
|
298
287
|
## See Also
|
|
299
288
|
|
|
300
289
|
- `flywheel-mcp-tool-map.md` — the matching MCP routing reference.
|
|
@@ -49,7 +49,6 @@ Flywheel is a graph-based system for tracking research work, decisions, and evid
|
|
|
49
49
|
- `flywheel_get_node_tree` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/tree`; full-surface only): Get a root-aware bounded tree/DAG projection for an anchor node.
|
|
50
50
|
- `flywheel_get_node_ancestry` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/ancestry`; full-surface only): Get ordered ancestry metadata from an anchor node to root boundaries.
|
|
51
51
|
- `flywheel_get_campaign_snapshot` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/campaign/snapshot`; core surface): Read the current campaign snapshot for a node's root campaign, including configured views and derived records.
|
|
52
|
-
- `flywheel_admin_nodes_audit_list` (admin-only read; scopes: `read`; HTTP: `GET /admin/nodes/{node_id}/audit`; full-surface only): List audit events from every actor on the node; requires admin authorization.
|
|
53
52
|
|
|
54
53
|
### Node stage and commit
|
|
55
54
|
|
|
@@ -130,7 +129,7 @@ Hook workflow-if contract (first version):
|
|
|
130
129
|
- `flywheel_compute_release` (mutating; scopes: `compute`; HTTP: `tool-mediated`; core surface): Asynchronously release one managed compute lease by lease_id within the current lease_control_token scope.
|
|
131
130
|
- `flywheel_compute_release_all` (mutating; scopes: `compute`; HTTP: `tool-mediated`; core surface): Asynchronously release active managed compute leases in the current lease_control_token scope; set `force=true` with `lease_control_token` for explicit account-wide cleanup for the current user.
|
|
132
131
|
|
|
133
|
-
### Contract
|
|
132
|
+
### Contract and export
|
|
134
133
|
|
|
135
134
|
- `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).
|
|
136
135
|
- `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`).
|
|
@@ -211,11 +210,3 @@ triggering artifact finalization or eligible node publication.
|
|
|
211
210
|
- `flywheel_finalize_artifact_uploads`: finalize a staged artifact batch and append all uploaded artifacts in one revision bump.
|
|
212
211
|
- `flywheel_delete_artifact`: remove an accidental/obsolete node artifact.
|
|
213
212
|
- `flywheel_list_artifacts`, `flywheel_get_artifact`: inspect node artifact metadata (`title` is the display label) and consume `storage_url` for raw artifact bytes only.
|
|
214
|
-
|
|
215
|
-
### Admin only (FLY-359)
|
|
216
|
-
|
|
217
|
-
These tools require an `@paradigma.inc`-authenticated MCP session **or** a valid `X-Admin-Key` header sent on the MCP HTTP request. The MCP streamable HTTP mount reads `X-Admin-Key` from the inbound request and forwards it through to the in-process `/admin/graphs*` call; on admin paths the proxy also suppresses the session bearer to sidestep the API-key route allowlist check. `require_paradigma_admin` then grants access based on the admin key. The routes are omitted from the public OpenAPI schema and from the API-key allowlist.
|
|
218
|
-
|
|
219
|
-
- `flywheel_admin_list_graphs`: list every root-node graph across all users. Filters: `tag_id`, `owner_user_id`, `created_after`, `created_before`, `cursor`, `page_size` (1..200). Returns `{graphs, has_more, next_cursor}`.
|
|
220
|
-
- `flywheel_admin_export_graph`: export one graph by `root_node_id` as canonical JSON (`{version, exported_at, node_count, nodes}`). Bypasses per-caller node-visibility checks by design.
|
|
221
|
-
- `flywheel_admin_export_graphs_stream`: batch-export one page of canonical graph JSON payloads matching the filter; iterate pages via `next_cursor`. The NDJSON HTTP endpoint (`GET /admin/graphs/export.jsonl`) is the CLI-first streaming surface; the MCP tool materializes a page to fit the RPC model.
|
|
@@ -58,7 +58,6 @@ direct-neighbor traversal.
|
|
|
58
58
|
- `flywheel_get_node_tree` (read; scopes: `read`; full-surface only; binding: `operation`)
|
|
59
59
|
- `flywheel_get_node_ancestry` (read; scopes: `read`; full-surface only; binding: `operation`)
|
|
60
60
|
- `flywheel_get_campaign_snapshot` (read; scopes: `read`; core surface; binding: `operation`)
|
|
61
|
-
- `flywheel_admin_nodes_audit_list` (admin-only read; scopes: `read`; full-surface only; binding: `operation`)
|
|
62
61
|
|
|
63
62
|
### Node stage and commit
|
|
64
63
|
|
|
@@ -110,7 +109,7 @@ direct-neighbor traversal.
|
|
|
110
109
|
- `flywheel_compute_release` (mutating; scopes: `compute`; core surface; binding: `operation`)
|
|
111
110
|
- `flywheel_compute_release_all` (mutating; scopes: `compute`; core surface; binding: `operation`)
|
|
112
111
|
|
|
113
|
-
### Contract
|
|
112
|
+
### Contract and export
|
|
114
113
|
|
|
115
114
|
- `flywheel_get_contract` (read; scopes: `read`; core surface; binding: `operation`)
|
|
116
115
|
- `flywheel_get_contract_section` (read; scopes: `read`; core surface; binding: `operation`)
|
|
@@ -145,7 +144,6 @@ direct-neighbor traversal.
|
|
|
145
144
|
- `GET /nodes/{node_id}/tree` -> `flywheel_get_node_tree`
|
|
146
145
|
- `GET /nodes/{node_id}/ancestry` -> `flywheel_get_node_ancestry`
|
|
147
146
|
- `GET /nodes/{node_id}/campaign/snapshot` -> `flywheel_get_campaign_snapshot`
|
|
148
|
-
- `GET /admin/nodes/{node_id}/audit` -> `flywheel_admin_nodes_audit_list` (admin only)
|
|
149
147
|
|
|
150
148
|
### Node stage and commit
|
|
151
149
|
|
|
@@ -197,7 +195,7 @@ direct-neighbor traversal.
|
|
|
197
195
|
- `tool-mediated` -> `flywheel_compute_release`
|
|
198
196
|
- `tool-mediated` -> `flywheel_compute_release_all`
|
|
199
197
|
|
|
200
|
-
### Contract
|
|
198
|
+
### Contract and export
|
|
201
199
|
|
|
202
200
|
- `GET /mcp/contract` -> `flywheel_get_contract`
|
|
203
201
|
- `GET /mcp/contract/sections/{section_id}` -> `flywheel_get_contract_section`
|
|
@@ -47,7 +47,6 @@ The families below identify related MCP operations for discovery and terminology
|
|
|
47
47
|
- `flywheel nodes:render:tree` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/tree`; related MCP operation: `flywheel_get_node_tree`): Render a bounded tree projection for a node.
|
|
48
48
|
- `flywheel nodes:render:ancestry` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/ancestry`; related MCP operation: `flywheel_get_node_ancestry`): Render ancestry (roots-ward lineage) for a node.
|
|
49
49
|
- `flywheel campaign:snapshot` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/campaign/snapshot`; related MCP operation: `flywheel_get_campaign_snapshot`): Resolve campaign root snapshot for a node.
|
|
50
|
-
- `flywheel admin:nodes:audit:list` (admin-only read; scopes: `read`; HTTP: `GET /admin/nodes/{node_id}/audit`; related MCP operation: `flywheel_admin_nodes_audit_list`): List audit events for node-level actions across all users.
|
|
51
50
|
|
|
52
51
|
### Hosted graph mutations and stage leases
|
|
53
52
|
|
|
@@ -97,7 +96,7 @@ The families below identify related MCP operations for discovery and terminology
|
|
|
97
96
|
- `flywheel compute:release` (mutating; scopes: `compute`; HTTP: `tool-mediated`; related MCP operation: `flywheel_compute_release`): Release one active compute lease (async; use `--wait` to block).
|
|
98
97
|
- `flywheel compute:release-all` (mutating; scopes: `compute`; HTTP: `tool-mediated`; related MCP operation: `flywheel_compute_release_all`): Release active leases in the current `lease_control_token` scope; `--force --yes` still requires `--lease_control_token` and explicitly broadens cleanup to all current-user active leases.
|
|
99
98
|
|
|
100
|
-
### Contract
|
|
99
|
+
### Contract and export
|
|
101
100
|
|
|
102
101
|
- (no CLI equivalent; related MCP operation: `flywheel_get_contract`): MCP contract introspection is MCP-only. In `--mode cli` install, treat each command's `flywheel help <command>` output as the canonical per-command contract reference.
|
|
103
102
|
- (no CLI equivalent; related MCP operation: `flywheel_get_contract_section`): Same as above.
|
|
@@ -129,10 +128,8 @@ These commands have no MCP counterpart. They cover auth/profile management, acco
|
|
|
129
128
|
- `flywheel nodes:files` (read; scopes: `read`): List files attached to a node.
|
|
130
129
|
- `flywheel nodes:sharing:summaries` (read; scopes: `read`): Read access summaries for multiple nodes in one batch.
|
|
131
130
|
|
|
132
|
-
### Compute
|
|
131
|
+
### Compute budgets (CLI-only)
|
|
133
132
|
|
|
134
|
-
- `flywheel admin:compute:policy:get` (admin-only read; scopes: `compute`): Read compute budget policy for a node.
|
|
135
|
-
- `flywheel admin:compute:policy:set` (admin-only mutating; scopes: `compute`): Update explicit compute policy fields such as `--hard_cap_cents`, `--managed_compute_enabled`, `--provider_filters`, `--allowed_offer_ids`, `--preferred_offer_ids`, and `--auto_shutdown_idle_seconds`.
|
|
136
133
|
- `flywheel compute:budgets` (read; scopes: `compute`): List budget grants visible for a node context.
|
|
137
134
|
- `flywheel machines:list` (read; scopes: `compute`): List your managed compute leases.
|
|
138
135
|
|
|
@@ -48,7 +48,6 @@ Flywheel is a graph-based system for tracking research work, decisions, and evid
|
|
|
48
48
|
- `flywheel_get_node_tree` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/tree`; full-surface only): Get a root-aware bounded tree/DAG projection for an anchor node.
|
|
49
49
|
- `flywheel_get_node_ancestry` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/ancestry`; full-surface only): Get ordered ancestry metadata from an anchor node to root boundaries.
|
|
50
50
|
- `flywheel_get_campaign_snapshot` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/campaign/snapshot`; core surface): Read the current campaign snapshot for a node's root campaign, including configured views and derived records.
|
|
51
|
-
- `flywheel_admin_nodes_audit_list` (admin-only read; scopes: `read`; HTTP: `GET /admin/nodes/{node_id}/audit`; full-surface only): List audit events from every actor on the node; requires admin authorization.
|
|
52
51
|
|
|
53
52
|
### Node stage and commit
|
|
54
53
|
|
|
@@ -100,7 +99,7 @@ Flywheel is a graph-based system for tracking research work, decisions, and evid
|
|
|
100
99
|
- `flywheel_compute_release` (mutating; scopes: `compute`; HTTP: `tool-mediated`; core surface): Asynchronously release one managed compute lease by lease_id within the current lease_control_token scope.
|
|
101
100
|
- `flywheel_compute_release_all` (mutating; scopes: `compute`; HTTP: `tool-mediated`; core surface): Asynchronously release active managed compute leases in the current lease_control_token scope; set `force=true` with `lease_control_token` for explicit account-wide cleanup for the current user.
|
|
102
101
|
|
|
103
|
-
### Contract
|
|
102
|
+
### Contract and export
|
|
104
103
|
|
|
105
104
|
- `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).
|
|
106
105
|
- `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`).
|
|
@@ -58,7 +58,6 @@ direct-neighbor traversal.
|
|
|
58
58
|
- `flywheel_get_node_tree` (read; scopes: `read`; full-surface only; binding: `operation`)
|
|
59
59
|
- `flywheel_get_node_ancestry` (read; scopes: `read`; full-surface only; binding: `operation`)
|
|
60
60
|
- `flywheel_get_campaign_snapshot` (read; scopes: `read`; core surface; binding: `operation`)
|
|
61
|
-
- `flywheel_admin_nodes_audit_list` (admin-only read; scopes: `read`; full-surface only; binding: `operation`)
|
|
62
61
|
|
|
63
62
|
### Node stage and commit
|
|
64
63
|
|
|
@@ -110,7 +109,7 @@ direct-neighbor traversal.
|
|
|
110
109
|
- `flywheel_compute_release` (mutating; scopes: `compute`; core surface; binding: `operation`)
|
|
111
110
|
- `flywheel_compute_release_all` (mutating; scopes: `compute`; core surface; binding: `operation`)
|
|
112
111
|
|
|
113
|
-
### Contract
|
|
112
|
+
### Contract and export
|
|
114
113
|
|
|
115
114
|
- `flywheel_get_contract` (read; scopes: `read`; core surface; binding: `operation`)
|
|
116
115
|
- `flywheel_get_contract_section` (read; scopes: `read`; core surface; binding: `operation`)
|
|
@@ -145,7 +144,6 @@ direct-neighbor traversal.
|
|
|
145
144
|
- `GET /nodes/{node_id}/tree` -> `flywheel_get_node_tree`
|
|
146
145
|
- `GET /nodes/{node_id}/ancestry` -> `flywheel_get_node_ancestry`
|
|
147
146
|
- `GET /nodes/{node_id}/campaign/snapshot` -> `flywheel_get_campaign_snapshot`
|
|
148
|
-
- `GET /admin/nodes/{node_id}/audit` -> `flywheel_admin_nodes_audit_list` (admin only)
|
|
149
147
|
|
|
150
148
|
### Node stage and commit
|
|
151
149
|
|
|
@@ -197,7 +195,7 @@ direct-neighbor traversal.
|
|
|
197
195
|
- `tool-mediated` -> `flywheel_compute_release`
|
|
198
196
|
- `tool-mediated` -> `flywheel_compute_release_all`
|
|
199
197
|
|
|
200
|
-
### Contract
|
|
198
|
+
### Contract and export
|
|
201
199
|
|
|
202
200
|
- `GET /mcp/contract` -> `flywheel_get_contract`
|
|
203
201
|
- `GET /mcp/contract/sections/{section_id}` -> `flywheel_get_contract_section`
|
|
@@ -47,7 +47,6 @@ The families below identify related MCP operations for discovery and terminology
|
|
|
47
47
|
- `flywheel nodes:render:tree` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/tree`; related MCP operation: `flywheel_get_node_tree`): Render a bounded tree projection for a node.
|
|
48
48
|
- `flywheel nodes:render:ancestry` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/ancestry`; related MCP operation: `flywheel_get_node_ancestry`): Render ancestry (roots-ward lineage) for a node.
|
|
49
49
|
- `flywheel campaign:snapshot` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/campaign/snapshot`; related MCP operation: `flywheel_get_campaign_snapshot`): Resolve campaign root snapshot for a node.
|
|
50
|
-
- `flywheel admin:nodes:audit:list` (admin-only read; scopes: `read`; HTTP: `GET /admin/nodes/{node_id}/audit`; related MCP operation: `flywheel_admin_nodes_audit_list`): List audit events for node-level actions across all users.
|
|
51
50
|
|
|
52
51
|
### Hosted graph mutations and stage leases
|
|
53
52
|
|
|
@@ -97,7 +96,7 @@ The families below identify related MCP operations for discovery and terminology
|
|
|
97
96
|
- `flywheel compute:release` (mutating; scopes: `compute`; HTTP: `tool-mediated`; related MCP operation: `flywheel_compute_release`): Release one active compute lease (async; use `--wait` to block).
|
|
98
97
|
- `flywheel compute:release-all` (mutating; scopes: `compute`; HTTP: `tool-mediated`; related MCP operation: `flywheel_compute_release_all`): Release active leases in the current `lease_control_token` scope; `--force --yes` still requires `--lease_control_token` and explicitly broadens cleanup to all current-user active leases.
|
|
99
98
|
|
|
100
|
-
### Contract
|
|
99
|
+
### Contract and export
|
|
101
100
|
|
|
102
101
|
- (no CLI equivalent; related MCP operation: `flywheel_get_contract`): MCP contract introspection is MCP-only. In `--mode cli` install, treat each command's `flywheel help <command>` output as the canonical per-command contract reference.
|
|
103
102
|
- (no CLI equivalent; related MCP operation: `flywheel_get_contract_section`): Same as above.
|
|
@@ -129,10 +128,8 @@ These commands have no MCP counterpart. They cover auth/profile management, acco
|
|
|
129
128
|
- `flywheel nodes:files` (read; scopes: `read`): List files attached to a node.
|
|
130
129
|
- `flywheel nodes:sharing:summaries` (read; scopes: `read`): Read access summaries for multiple nodes in one batch.
|
|
131
130
|
|
|
132
|
-
### Compute
|
|
131
|
+
### Compute budgets (CLI-only)
|
|
133
132
|
|
|
134
|
-
- `flywheel admin:compute:policy:get` (admin-only read; scopes: `compute`): Read compute budget policy for a node.
|
|
135
|
-
- `flywheel admin:compute:policy:set` (admin-only mutating; scopes: `compute`): Update explicit compute policy fields such as `--hard_cap_cents`, `--managed_compute_enabled`, `--provider_filters`, `--allowed_offer_ids`, `--preferred_offer_ids`, and `--auto_shutdown_idle_seconds`.
|
|
136
133
|
- `flywheel compute:budgets` (read; scopes: `compute`): List budget grants visible for a node context.
|
|
137
134
|
- `flywheel machines:list` (read; scopes: `compute`): List your managed compute leases.
|
|
138
135
|
|
|
@@ -48,7 +48,6 @@ Flywheel is a graph-based system for tracking research work, decisions, and evid
|
|
|
48
48
|
- `flywheel_get_node_tree` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/tree`; full-surface only): Get a root-aware bounded tree/DAG projection for an anchor node.
|
|
49
49
|
- `flywheel_get_node_ancestry` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/ancestry`; full-surface only): Get ordered ancestry metadata from an anchor node to root boundaries.
|
|
50
50
|
- `flywheel_get_campaign_snapshot` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/campaign/snapshot`; core surface): Read the current campaign snapshot for a node's root campaign, including configured views and derived records.
|
|
51
|
-
- `flywheel_admin_nodes_audit_list` (admin-only read; scopes: `read`; HTTP: `GET /admin/nodes/{node_id}/audit`; full-surface only): List audit events from every actor on the node; requires admin authorization.
|
|
52
51
|
|
|
53
52
|
### Node stage and commit
|
|
54
53
|
|
|
@@ -100,7 +99,7 @@ Flywheel is a graph-based system for tracking research work, decisions, and evid
|
|
|
100
99
|
- `flywheel_compute_release` (mutating; scopes: `compute`; HTTP: `tool-mediated`; core surface): Asynchronously release one managed compute lease by lease_id within the current lease_control_token scope.
|
|
101
100
|
- `flywheel_compute_release_all` (mutating; scopes: `compute`; HTTP: `tool-mediated`; core surface): Asynchronously release active managed compute leases in the current lease_control_token scope; set `force=true` with `lease_control_token` for explicit account-wide cleanup for the current user.
|
|
102
101
|
|
|
103
|
-
### Contract
|
|
102
|
+
### Contract and export
|
|
104
103
|
|
|
105
104
|
- `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).
|
|
106
105
|
- `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`).
|
|
@@ -58,7 +58,6 @@ direct-neighbor traversal.
|
|
|
58
58
|
- `flywheel_get_node_tree` (read; scopes: `read`; full-surface only; binding: `operation`)
|
|
59
59
|
- `flywheel_get_node_ancestry` (read; scopes: `read`; full-surface only; binding: `operation`)
|
|
60
60
|
- `flywheel_get_campaign_snapshot` (read; scopes: `read`; core surface; binding: `operation`)
|
|
61
|
-
- `flywheel_admin_nodes_audit_list` (admin-only read; scopes: `read`; full-surface only; binding: `operation`)
|
|
62
61
|
|
|
63
62
|
### Node stage and commit
|
|
64
63
|
|
|
@@ -110,7 +109,7 @@ direct-neighbor traversal.
|
|
|
110
109
|
- `flywheel_compute_release` (mutating; scopes: `compute`; core surface; binding: `operation`)
|
|
111
110
|
- `flywheel_compute_release_all` (mutating; scopes: `compute`; core surface; binding: `operation`)
|
|
112
111
|
|
|
113
|
-
### Contract
|
|
112
|
+
### Contract and export
|
|
114
113
|
|
|
115
114
|
- `flywheel_get_contract` (read; scopes: `read`; core surface; binding: `operation`)
|
|
116
115
|
- `flywheel_get_contract_section` (read; scopes: `read`; core surface; binding: `operation`)
|
|
@@ -145,7 +144,6 @@ direct-neighbor traversal.
|
|
|
145
144
|
- `GET /nodes/{node_id}/tree` -> `flywheel_get_node_tree`
|
|
146
145
|
- `GET /nodes/{node_id}/ancestry` -> `flywheel_get_node_ancestry`
|
|
147
146
|
- `GET /nodes/{node_id}/campaign/snapshot` -> `flywheel_get_campaign_snapshot`
|
|
148
|
-
- `GET /admin/nodes/{node_id}/audit` -> `flywheel_admin_nodes_audit_list` (admin only)
|
|
149
147
|
|
|
150
148
|
### Node stage and commit
|
|
151
149
|
|
|
@@ -197,7 +195,7 @@ direct-neighbor traversal.
|
|
|
197
195
|
- `tool-mediated` -> `flywheel_compute_release`
|
|
198
196
|
- `tool-mediated` -> `flywheel_compute_release_all`
|
|
199
197
|
|
|
200
|
-
### Contract
|
|
198
|
+
### Contract and export
|
|
201
199
|
|
|
202
200
|
- `GET /mcp/contract` -> `flywheel_get_contract`
|
|
203
201
|
- `GET /mcp/contract/sections/{section_id}` -> `flywheel_get_contract_section`
|
|
@@ -48,7 +48,6 @@ The families below identify related MCP operations for discovery and terminology
|
|
|
48
48
|
- `flywheel nodes:render:tree` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/tree`; related MCP operation: `flywheel_get_node_tree`): Render a bounded tree projection for a node.
|
|
49
49
|
- `flywheel nodes:render:ancestry` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/ancestry`; related MCP operation: `flywheel_get_node_ancestry`): Render ancestry (roots-ward lineage) for a node.
|
|
50
50
|
- `flywheel campaign:snapshot` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/campaign/snapshot`; related MCP operation: `flywheel_get_campaign_snapshot`): Resolve campaign root snapshot for a node.
|
|
51
|
-
- `flywheel admin:nodes:audit:list` (admin-only read; scopes: `read`; HTTP: `GET /admin/nodes/{node_id}/audit`; related MCP operation: `flywheel_admin_nodes_audit_list`): List audit events for node-level actions across all users.
|
|
52
51
|
|
|
53
52
|
### Hosted graph mutations and stage leases
|
|
54
53
|
|
|
@@ -98,7 +97,7 @@ The families below identify related MCP operations for discovery and terminology
|
|
|
98
97
|
- `flywheel compute:release` (mutating; scopes: `compute`; HTTP: `tool-mediated`; related MCP operation: `flywheel_compute_release`): Release one active compute lease (async; use `--wait` to block).
|
|
99
98
|
- `flywheel compute:release-all` (mutating; scopes: `compute`; HTTP: `tool-mediated`; related MCP operation: `flywheel_compute_release_all`): Release active leases in the current `lease_control_token` scope; `--force --yes` still requires `--lease_control_token` and explicitly broadens cleanup to all current-user active leases.
|
|
100
99
|
|
|
101
|
-
### Contract
|
|
100
|
+
### Contract and export
|
|
102
101
|
|
|
103
102
|
- (no CLI equivalent; related MCP operation: `flywheel_get_contract`): MCP contract introspection is MCP-only. In `--mode cli` install, treat each command's `flywheel help <command>` output as the canonical per-command contract reference.
|
|
104
103
|
- (no CLI equivalent; related MCP operation: `flywheel_get_contract_section`): Same as above.
|
|
@@ -130,10 +129,8 @@ These commands have no MCP counterpart. They cover auth/profile management, acco
|
|
|
130
129
|
- `flywheel nodes:files` (read; scopes: `read`): List files attached to a node.
|
|
131
130
|
- `flywheel nodes:sharing:summaries` (read; scopes: `read`): Read access summaries for multiple nodes in one batch.
|
|
132
131
|
|
|
133
|
-
### Compute
|
|
132
|
+
### Compute budgets (CLI-only)
|
|
134
133
|
|
|
135
|
-
- `flywheel admin:compute:policy:get` (admin-only read; scopes: `compute`): Read compute budget policy for a node.
|
|
136
|
-
- `flywheel admin:compute:policy:set` (admin-only mutating; scopes: `compute`): Update explicit compute policy fields such as `--hard_cap_cents`, `--managed_compute_enabled`, `--provider_filters`, `--allowed_offer_ids`, `--preferred_offer_ids`, and `--auto_shutdown_idle_seconds`.
|
|
137
134
|
- `flywheel compute:budgets` (read; scopes: `compute`): List budget grants visible for a node context.
|
|
138
135
|
- `flywheel machines:list` (read; scopes: `compute`): List your managed compute leases.
|
|
139
136
|
|
|
@@ -48,7 +48,6 @@ Flywheel is a graph-based system for tracking research work, decisions, and evid
|
|
|
48
48
|
- `flywheel_get_node_tree` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/tree`; full-surface only): Get a root-aware bounded tree/DAG projection for an anchor node.
|
|
49
49
|
- `flywheel_get_node_ancestry` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/ancestry`; full-surface only): Get ordered ancestry metadata from an anchor node to root boundaries.
|
|
50
50
|
- `flywheel_get_campaign_snapshot` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/campaign/snapshot`; core surface): Read the current campaign snapshot for a node's root campaign, including configured views and derived records.
|
|
51
|
-
- `flywheel_admin_nodes_audit_list` (admin-only read; scopes: `read`; HTTP: `GET /admin/nodes/{node_id}/audit`; full-surface only): List audit events from every actor on the node; requires admin authorization.
|
|
52
51
|
|
|
53
52
|
### Node stage and commit
|
|
54
53
|
|
|
@@ -100,7 +99,7 @@ Flywheel is a graph-based system for tracking research work, decisions, and evid
|
|
|
100
99
|
- `flywheel_compute_release` (mutating; scopes: `compute`; HTTP: `tool-mediated`; core surface): Asynchronously release one managed compute lease by lease_id within the current lease_control_token scope.
|
|
101
100
|
- `flywheel_compute_release_all` (mutating; scopes: `compute`; HTTP: `tool-mediated`; core surface): Asynchronously release active managed compute leases in the current lease_control_token scope; set `force=true` with `lease_control_token` for explicit account-wide cleanup for the current user.
|
|
102
101
|
|
|
103
|
-
### Contract
|
|
102
|
+
### Contract and export
|
|
104
103
|
|
|
105
104
|
- `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).
|
|
106
105
|
- `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`).
|
|
@@ -58,7 +58,6 @@ direct-neighbor traversal.
|
|
|
58
58
|
- `flywheel_get_node_tree` (read; scopes: `read`; full-surface only; binding: `operation`)
|
|
59
59
|
- `flywheel_get_node_ancestry` (read; scopes: `read`; full-surface only; binding: `operation`)
|
|
60
60
|
- `flywheel_get_campaign_snapshot` (read; scopes: `read`; core surface; binding: `operation`)
|
|
61
|
-
- `flywheel_admin_nodes_audit_list` (admin-only read; scopes: `read`; full-surface only; binding: `operation`)
|
|
62
61
|
|
|
63
62
|
### Node stage and commit
|
|
64
63
|
|
|
@@ -110,7 +109,7 @@ direct-neighbor traversal.
|
|
|
110
109
|
- `flywheel_compute_release` (mutating; scopes: `compute`; core surface; binding: `operation`)
|
|
111
110
|
- `flywheel_compute_release_all` (mutating; scopes: `compute`; core surface; binding: `operation`)
|
|
112
111
|
|
|
113
|
-
### Contract
|
|
112
|
+
### Contract and export
|
|
114
113
|
|
|
115
114
|
- `flywheel_get_contract` (read; scopes: `read`; core surface; binding: `operation`)
|
|
116
115
|
- `flywheel_get_contract_section` (read; scopes: `read`; core surface; binding: `operation`)
|
|
@@ -145,7 +144,6 @@ direct-neighbor traversal.
|
|
|
145
144
|
- `GET /nodes/{node_id}/tree` -> `flywheel_get_node_tree`
|
|
146
145
|
- `GET /nodes/{node_id}/ancestry` -> `flywheel_get_node_ancestry`
|
|
147
146
|
- `GET /nodes/{node_id}/campaign/snapshot` -> `flywheel_get_campaign_snapshot`
|
|
148
|
-
- `GET /admin/nodes/{node_id}/audit` -> `flywheel_admin_nodes_audit_list` (admin only)
|
|
149
147
|
|
|
150
148
|
### Node stage and commit
|
|
151
149
|
|
|
@@ -197,7 +195,7 @@ direct-neighbor traversal.
|
|
|
197
195
|
- `tool-mediated` -> `flywheel_compute_release`
|
|
198
196
|
- `tool-mediated` -> `flywheel_compute_release_all`
|
|
199
197
|
|
|
200
|
-
### Contract
|
|
198
|
+
### Contract and export
|
|
201
199
|
|
|
202
200
|
- `GET /mcp/contract` -> `flywheel_get_contract`
|
|
203
201
|
- `GET /mcp/contract/sections/{section_id}` -> `flywheel_get_contract_section`
|
|
@@ -48,7 +48,6 @@ The families below identify related MCP operations for discovery and terminology
|
|
|
48
48
|
- `flywheel nodes:render:tree` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/tree`; related MCP operation: `flywheel_get_node_tree`): Render a bounded tree projection for a node.
|
|
49
49
|
- `flywheel nodes:render:ancestry` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/ancestry`; related MCP operation: `flywheel_get_node_ancestry`): Render ancestry (roots-ward lineage) for a node.
|
|
50
50
|
- `flywheel campaign:snapshot` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/campaign/snapshot`; related MCP operation: `flywheel_get_campaign_snapshot`): Resolve campaign root snapshot for a node.
|
|
51
|
-
- `flywheel admin:nodes:audit:list` (admin-only read; scopes: `read`; HTTP: `GET /admin/nodes/{node_id}/audit`; related MCP operation: `flywheel_admin_nodes_audit_list`): List audit events for node-level actions across all users.
|
|
52
51
|
|
|
53
52
|
### Hosted graph mutations and stage leases
|
|
54
53
|
|
|
@@ -98,7 +97,7 @@ The families below identify related MCP operations for discovery and terminology
|
|
|
98
97
|
- `flywheel compute:release` (mutating; scopes: `compute`; HTTP: `tool-mediated`; related MCP operation: `flywheel_compute_release`): Release one active compute lease (async; use `--wait` to block).
|
|
99
98
|
- `flywheel compute:release-all` (mutating; scopes: `compute`; HTTP: `tool-mediated`; related MCP operation: `flywheel_compute_release_all`): Release active leases in the current `lease_control_token` scope; `--force --yes` still requires `--lease_control_token` and explicitly broadens cleanup to all current-user active leases.
|
|
100
99
|
|
|
101
|
-
### Contract
|
|
100
|
+
### Contract and export
|
|
102
101
|
|
|
103
102
|
- (no CLI equivalent; related MCP operation: `flywheel_get_contract`): MCP contract introspection is MCP-only. In `--mode cli` install, treat each command's `flywheel help <command>` output as the canonical per-command contract reference.
|
|
104
103
|
- (no CLI equivalent; related MCP operation: `flywheel_get_contract_section`): Same as above.
|
|
@@ -130,10 +129,8 @@ These commands have no MCP counterpart. They cover auth/profile management, acco
|
|
|
130
129
|
- `flywheel nodes:files` (read; scopes: `read`): List files attached to a node.
|
|
131
130
|
- `flywheel nodes:sharing:summaries` (read; scopes: `read`): Read access summaries for multiple nodes in one batch.
|
|
132
131
|
|
|
133
|
-
### Compute
|
|
132
|
+
### Compute budgets (CLI-only)
|
|
134
133
|
|
|
135
|
-
- `flywheel admin:compute:policy:get` (admin-only read; scopes: `compute`): Read compute budget policy for a node.
|
|
136
|
-
- `flywheel admin:compute:policy:set` (admin-only mutating; scopes: `compute`): Update explicit compute policy fields such as `--hard_cap_cents`, `--managed_compute_enabled`, `--provider_filters`, `--allowed_offer_ids`, `--preferred_offer_ids`, and `--auto_shutdown_idle_seconds`.
|
|
137
134
|
- `flywheel compute:budgets` (read; scopes: `compute`): List budget grants visible for a node context.
|
|
138
135
|
- `flywheel machines:list` (read; scopes: `compute`): List your managed compute leases.
|
|
139
136
|
|
|
@@ -48,7 +48,6 @@ Flywheel is a graph-based system for tracking research work, decisions, and evid
|
|
|
48
48
|
- `flywheel_get_node_tree` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/tree`; full-surface only): Get a root-aware bounded tree/DAG projection for an anchor node.
|
|
49
49
|
- `flywheel_get_node_ancestry` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/ancestry`; full-surface only): Get ordered ancestry metadata from an anchor node to root boundaries.
|
|
50
50
|
- `flywheel_get_campaign_snapshot` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/campaign/snapshot`; core surface): Read the current campaign snapshot for a node's root campaign, including configured views and derived records.
|
|
51
|
-
- `flywheel_admin_nodes_audit_list` (admin-only read; scopes: `read`; HTTP: `GET /admin/nodes/{node_id}/audit`; full-surface only): List audit events from every actor on the node; requires admin authorization.
|
|
52
51
|
|
|
53
52
|
### Node stage and commit
|
|
54
53
|
|
|
@@ -100,7 +99,7 @@ Flywheel is a graph-based system for tracking research work, decisions, and evid
|
|
|
100
99
|
- `flywheel_compute_release` (mutating; scopes: `compute`; HTTP: `tool-mediated`; core surface): Asynchronously release one managed compute lease by lease_id within the current lease_control_token scope.
|
|
101
100
|
- `flywheel_compute_release_all` (mutating; scopes: `compute`; HTTP: `tool-mediated`; core surface): Asynchronously release active managed compute leases in the current lease_control_token scope; set `force=true` with `lease_control_token` for explicit account-wide cleanup for the current user.
|
|
102
101
|
|
|
103
|
-
### Contract
|
|
102
|
+
### Contract and export
|
|
104
103
|
|
|
105
104
|
- `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).
|
|
106
105
|
- `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`).
|
|
@@ -24,6 +24,10 @@ async function findTag(context, scopeNodeId, tagId) {
|
|
|
24
24
|
if (typeof nextCursor !== 'string' || !nextCursor) {
|
|
25
25
|
throw new Error('repository tag projection cursor is invalid');
|
|
26
26
|
}
|
|
27
|
+
if (current.view === 'staged') {
|
|
28
|
+
query = { scope_node_id: scopeNodeId, after: nextCursor };
|
|
29
|
+
continue;
|
|
30
|
+
}
|
|
27
31
|
const pageHead = current.at_head;
|
|
28
32
|
if (typeof pageHead !== 'string' || !pageHead) {
|
|
29
33
|
throw new Error('repository tag projection head is unavailable');
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"graph-operation-resources.js","sourceRoot":"","sources":["../../src/commands/graph-operation-resources.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"graph-operation-resources.js","sourceRoot":"","sources":["../../src/commands/graph-operation-resources.ts"],"names":[],"mappings":"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"}
|