@paradigma-inc/flywheel 0.1.80 → 0.1.84

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.
Files changed (36) hide show
  1. package/package.json +1 -1
  2. package/skills/flywheel/campaigns/participating-in-a-campaign.md +11 -1
  3. package/skills/flywheel/references/INTERFACES.md +11 -0
  4. package/skills/flywheel/references/flywheel-cli-tool-map.md +4 -1
  5. package/skills/flywheel/references/flywheel-mcp-tool-map.md +4 -1
  6. package/skills/flywheel/usage-and-workflows/what-to-do-with-flywheel.md +2 -2
  7. package/skills/flywheel-auto/references/INTERFACES.md +11 -0
  8. package/skills/flywheel-auto/references/flywheel-cli-tool-map.md +4 -1
  9. package/skills/flywheel-auto/references/flywheel-mcp-tool-map.md +4 -1
  10. package/skills/flywheel-lookahead/references/INTERFACES.md +11 -0
  11. package/skills/flywheel-lookahead/references/flywheel-cli-tool-map.md +4 -1
  12. package/skills/flywheel-lookahead/references/flywheel-mcp-tool-map.md +4 -1
  13. package/skills/flywheel-reproduce/references/INTERFACES.md +11 -0
  14. package/skills/flywheel-reproduce/references/flywheel-cli-tool-map.md +4 -1
  15. package/skills/flywheel-reproduce/references/flywheel-mcp-tool-map.md +4 -1
  16. package/skills/flywheel-to-graph/references/INTERFACES.md +11 -0
  17. package/skills/flywheel-to-graph/references/flywheel-cli-tool-map.md +4 -1
  18. package/skills/flywheel-to-graph/references/flywheel-mcp-tool-map.md +4 -1
  19. package/src/runtime/required-runtime-commands.json +3 -0
  20. package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-delete-bulk.d.ts +2 -0
  21. package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-delete-bulk.js +22 -0
  22. package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-delete-bulk.js.map +1 -0
  23. package/src/runtime/vendor/flywheel-cli-dist/commands/index.d.ts +3 -1
  24. package/src/runtime/vendor/flywheel-cli-dist/commands/index.js +7 -1
  25. package/src/runtime/vendor/flywheel-cli-dist/commands/index.js.map +1 -1
  26. package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-children.d.ts +2 -0
  27. package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-children.js +8 -0
  28. package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-children.js.map +1 -0
  29. package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-parents.d.ts +2 -0
  30. package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-parents.js +8 -0
  31. package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-parents.js.map +1 -0
  32. package/src/runtime/vendor/flywheel-cli-dist/commands/registry/artifacts.js +24 -0
  33. package/src/runtime/vendor/flywheel-cli-dist/commands/registry/artifacts.js.map +1 -1
  34. package/src/runtime/vendor/flywheel-cli-dist/commands/registry.js +81 -3
  35. package/src/runtime/vendor/flywheel-cli-dist/commands/registry.js.map +1 -1
  36. package/src/runtime/vendor/manifest.json +10 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paradigma-inc/flywheel",
3
- "version": "0.1.80",
3
+ "version": "0.1.84",
4
4
  "description": "One-command setup for Flywheel MCP hosts",
5
5
  "type": "module",
6
6
  "files": [
@@ -7,11 +7,21 @@ To participate in a campaign:
7
7
  1. Get access to the campaign root. Invite-only campaigns are shared directly with your Flywheel account. Open campaigns are made public by the organizer.
8
8
  2. Open the campaign in the WebUI or ask your MCP host to inspect the root node.
9
9
  3. Read the campaign root carefully before you start. Organizers can define the objective, submission format, graph hygiene, repo policy, GPU guidance, and any evaluation rules directly on the root.
10
- 4. Do your work in your own part of the graph. Use Flywheel nodes to record your progress, artifacts, summaries, and conclusions so your submission stays reviewable.
10
+ 4. Do your work in your own part of the graph. Use Flywheel nodes to record your progress, artifacts, summaries, and conclusions so your submission stays reviewable. When the campaign asks for a canonical submission artifact, finalize that artifact on your public attempt node with `metadata.campaign_role=submission`.
11
11
  5. If the campaign provides compute funding, discover the available budget grants and acquire compute against the campaign grant your MCP host shows you.
12
12
 
13
13
  The practical rule is simple: the campaign root tells you the contract, and your graph is how you show your work.
14
14
 
15
+ ## Checking Submission Status
16
+
17
+ Accepted campaign submission artifacts get a durable lifecycle record. After finalizing a submission artifact, use:
18
+
19
+ - `flywheel_get_artifact_campaign_submission` when you know the node id and artifact id
20
+ - `flywheel_list_node_campaign_submissions` to see recent submissions for an attempt node
21
+ - `flywheel_get_campaign_submission` when you already have a submission id
22
+
23
+ Invalid submissions fail immediately with `422` and do not create a lifecycle record. `forwarded` means Flywheel handed the submission to the campaign automation; it does not necessarily mean the external scorer has completed. Terminal states are `scored`, `rejected`, and `failed`.
24
+
15
25
  ## Coming Soon
16
26
 
17
27
  - A dedicated tutorial section for setting up a campaign as an organizer.
@@ -26,6 +26,13 @@ Canonical reference for Flywheel MCP public interfaces and contract pointers.
26
26
  - Approval sessions and compute grants are distinct entities; approvals are session-scoped bindings.
27
27
  - Campaign projections are derived from root config and attempt submission JSON artifacts.
28
28
 
29
+ Node detail reads are cardinality-safe: `flywheel_get_node` / `GET /nodes/{node_id}`
30
+ return node fields plus `has_children` / `has_parents` presence booleans, but do
31
+ not guarantee complete `incoming_ids` or `outgoing_ids` arrays. Use
32
+ `flywheel_get_node_children` / `GET /nodes/{node_id}/children` and
33
+ `flywheel_get_node_parents` / `GET /nodes/{node_id}/parents` for complete
34
+ direct-neighbor traversal.
35
+
29
36
  ## MCP Tool Surface
30
37
 
31
38
  ### Discovery and sharing
@@ -42,6 +49,8 @@ Canonical reference for Flywheel MCP public interfaces and contract pointers.
42
49
  - `flywheel_set_sharing_for_node` (mutating; scopes: `write`; full-surface only; binding: `operation`)
43
50
  - `flywheel_set_sharing_for_nodes` (mutating; scopes: `write`; full-surface only; binding: `operation`)
44
51
  - `flywheel_get_node` (read; scopes: `read`; core surface; binding: `operation`)
52
+ - `flywheel_get_node_children` (read; scopes: `read`; core surface; binding: `operation`)
53
+ - `flywheel_get_node_parents` (read; scopes: `read`; core surface; binding: `operation`)
45
54
  - `flywheel_create_node_tag` (mutating; scopes: `write`; full-surface only; binding: `operation`)
46
55
  - `flywheel_update_node_tag` (mutating; scopes: `write`; full-surface only; binding: `operation`)
47
56
  - `flywheel_delete_node_tag` (mutating; scopes: `write`; full-surface only; binding: `operation`)
@@ -72,6 +81,7 @@ Canonical reference for Flywheel MCP public interfaces and contract pointers.
72
81
  - `flywheel_list_artifacts` (read; scopes: `read`; core surface; binding: `operation`)
73
82
  - `flywheel_get_artifact` (read; scopes: `read`; core surface; binding: `operation`)
74
83
  - `flywheel_delete_artifact` (mutating; scopes: `write`; core surface; binding: `operation`)
84
+ - `flywheel_bulk_delete_artifacts` (mutating; scopes: `write`; core surface; binding: `operation`)
75
85
  - `flywheel_set_artifact_note` (mutating; scopes: `write`; core surface; binding: `operation`)
76
86
 
77
87
  ### Executions
@@ -158,6 +168,7 @@ Canonical reference for Flywheel MCP public interfaces and contract pointers.
158
168
  - `tool-mediated` -> `flywheel_list_artifacts`
159
169
  - `tool-mediated` -> `flywheel_get_artifact`
160
170
  - `DELETE /nodes/{node_id}/artifacts/{artifact_id}` -> `flywheel_delete_artifact`
171
+ - `POST /nodes/{node_id}/artifacts/bulk-delete` -> `flywheel_bulk_delete_artifacts`
161
172
  - `PATCH /nodes/{node_id}/artifacts/{artifact_id}/note` -> `flywheel_set_artifact_note`
162
173
 
163
174
  ### Executions
@@ -35,7 +35,9 @@ The families below mirror `flywheel-mcp-tool-map.md` and list the canonical CLI
35
35
  - `flywheel nodes:sharing:get` (read; scopes: `read`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_get_node_sharing`): Get sharing (access policy) for a node.
36
36
  - `flywheel nodes:sharing:set` (mutating; scopes: `write`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_set_sharing_for_node`): Replace sharing (access policy) for a node.
37
37
  - `flywheel nodes:sharing:set-bulk` (mutating; scopes: `write`; HTTP: `POST /nodes/access-policy/bulk`; MCP equivalent: `flywheel_set_sharing_for_nodes`): Apply one sharing policy to multiple nodes.
38
- - `flywheel nodes:get` (read; scopes: `read`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_get_node`): Fetch one node by identifier.
38
+ - `flywheel nodes:get` (read; scopes: `read`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_get_node`): Fetch one node by identifier. Relationship arrays are not guaranteed complete; use relationship paging commands for traversal.
39
+ - `flywheel nodes:children` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/children`; MCP equivalent: `flywheel_get_node_children`): Page direct visible children with `--first`, `--after`, and `--projection`.
40
+ - `flywheel nodes:parents` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/parents`; MCP equivalent: `flywheel_get_node_parents`): Page direct visible parents with `--first`, `--after`, and `--projection`.
39
41
  - `flywheel tags:create` (mutating; scopes: `write`; HTTP: `POST /nodes/{root_node_id}/tags`; MCP equivalent: `flywheel_create_node_tag`): Create a reusable tag on a graph root.
40
42
  - `flywheel tags:update` (mutating; scopes: `write`; HTTP: `PATCH /nodes/{root_node_id}/tags/{tag_id}`; MCP equivalent: `flywheel_update_node_tag`): Update a tag definition.
41
43
  - `flywheel tags:delete` (mutating; scopes: `write`; HTTP: `DELETE /nodes/{root_node_id}/tags/{tag_id}`; MCP equivalent: `flywheel_delete_node_tag`): Delete a tag definition from the graph.
@@ -68,6 +70,7 @@ The families below mirror `flywheel-mcp-tool-map.md` and list the canonical CLI
68
70
  - `flywheel artifacts:list` (read; scopes: `read`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_list_artifacts`): List artifacts for a node.
69
71
  - `flywheel artifacts:get` (read; scopes: `read`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_get_artifact`): Fetch one artifact metadata record.
70
72
  - `flywheel artifacts:delete` (mutating; scopes: `write`; HTTP: `DELETE /nodes/{node_id}/artifacts/{artifact_id}`; MCP equivalent: `flywheel_delete_artifact`): Delete an artifact from a node (optimistic locking).
73
+ - `flywheel artifacts:delete-bulk` (mutating; scopes: `write`; HTTP: `POST /nodes/{node_id}/artifacts/bulk-delete`; MCP equivalent: `flywheel_bulk_delete_artifacts`): Delete multiple artifacts from one node. Requires `--yes`.
71
74
  - `flywheel artifacts:note:set` (mutating; scopes: `write`; HTTP: `PATCH /nodes/{node_id}/artifacts/{artifact_id}/note`; MCP equivalent: `flywheel_set_artifact_note`): Add, update, or clear an artifact note (optimistic locking).
72
75
 
73
76
  ### Executions
@@ -39,7 +39,9 @@ Flywheel is a graph-based system for tracking research work, decisions, and evid
39
39
  - `flywheel_get_node_sharing` (read; scopes: `read`; HTTP: `tool-mediated`; full-surface only): Get node sharing for one node (owner/collaborators/visibility).
40
40
  - `flywheel_set_sharing_for_node` (mutating; scopes: `write`; HTTP: `tool-mediated`; full-surface only): Set sharing for one owned node (collaborators/private-unlisted-public visibility).
41
41
  - `flywheel_set_sharing_for_nodes` (mutating; scopes: `write`; HTTP: `POST /nodes/access-policy/bulk`; full-surface only): Apply one sharing configuration across multiple owned nodes in bulk.
42
- - `flywheel_get_node` (read; scopes: `read`; HTTP: `tool-mediated`; core surface): Get one node by node_id.
42
+ - `flywheel_get_node` (read; scopes: `read`; HTTP: `tool-mediated`; core surface): Get one node by node_id. Relationship arrays are not guaranteed complete; use relationship paging tools for traversal.
43
+ - `flywheel_get_node_children` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/children`; core surface): Page direct visible children with `first`, `after`, and `projection`.
44
+ - `flywheel_get_node_parents` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/parents`; core surface): Page direct visible parents with `first`, `after`, and `projection`.
43
45
  - `flywheel_create_node_tag` (mutating; scopes: `write`; HTTP: `POST /nodes/{root_node_id}/tags`; full-surface only): Create one graph tag from a root node. `track_history` is effective only when `one_only=true`; when `one_only=false`, the effective track_history=false.
44
46
  - `flywheel_update_node_tag` (mutating; scopes: `write`; HTTP: `PATCH /nodes/{root_node_id}/tags/{tag_id}`; full-surface only): Update one graph tag from a root node.
45
47
  - `flywheel_delete_node_tag` (mutating; scopes: `write`; HTTP: `DELETE /nodes/{root_node_id}/tags/{tag_id}`; full-surface only): Delete one graph tag from a root node.
@@ -72,6 +74,7 @@ Flywheel is a graph-based system for tracking research work, decisions, and evid
72
74
  - `flywheel_list_artifacts` (read; scopes: `read`; HTTP: `tool-mediated`; core surface): List node artifacts.
73
75
  - `flywheel_get_artifact` (read; scopes: `read`; HTTP: `tool-mediated`; core surface): Get one artifact by id.
74
76
  - `flywheel_delete_artifact` (mutating; scopes: `write`; HTTP: `DELETE /nodes/{node_id}/artifacts/{artifact_id}`; core surface): Delete one artifact by id with optimistic locking.
77
+ - `flywheel_bulk_delete_artifacts` (mutating; scopes: `write`; HTTP: `POST /nodes/{node_id}/artifacts/bulk-delete`; core surface): Delete multiple artifacts from one node by explicit artifact IDs with optimistic locking.
75
78
  - `flywheel_set_artifact_note` (mutating; scopes: `write`; HTTP: `PATCH /nodes/{node_id}/artifacts/{artifact_id}/note`; core surface): Set or clear one artifact note with optimistic locking.
76
79
 
77
80
  ### Hooks
@@ -42,9 +42,9 @@ Hooks are event-driven automations:
42
42
  `artifact.finalized` and `node.published`.
43
43
  - **Hook**: a durable rule configured on a node (trigger + scope + action).
44
44
  - **Run**: one execution record when a hook reacts to an event.
45
- - Hooks are dispatched by `worker-projection` and executed by ephemeral Fly Machines runners.
45
+ - Hooks are dispatched by `worker-hooks` and executed by ephemeral Fly Machines runners.
46
46
  - Each hook run launches `python -m server.run_hook_runner` in the same Fly app (`FLYWHEEL_HOOK_RUNNER_FLY_APP`).
47
- - Deployments roll out `worker-projection`; runner launches require `FLYWHEEL_HOOK_RUNNER_FLY_API_TOKEN` and `FLYWHEEL_HOOK_RUNNER_FLY_APP`.
47
+ - Deployments roll out `worker-hooks` before `worker-projection`; runner launches require `FLYWHEEL_HOOK_RUNNER_FLY_API_TOKEN` and `FLYWHEEL_HOOK_RUNNER_FLY_APP`.
48
48
 
49
49
  Typical setup:
50
50
 
@@ -26,6 +26,13 @@ Canonical reference for Flywheel MCP public interfaces and contract pointers.
26
26
  - Approval sessions and compute grants are distinct entities; approvals are session-scoped bindings.
27
27
  - Campaign projections are derived from root config and attempt submission JSON artifacts.
28
28
 
29
+ Node detail reads are cardinality-safe: `flywheel_get_node` / `GET /nodes/{node_id}`
30
+ return node fields plus `has_children` / `has_parents` presence booleans, but do
31
+ not guarantee complete `incoming_ids` or `outgoing_ids` arrays. Use
32
+ `flywheel_get_node_children` / `GET /nodes/{node_id}/children` and
33
+ `flywheel_get_node_parents` / `GET /nodes/{node_id}/parents` for complete
34
+ direct-neighbor traversal.
35
+
29
36
  ## MCP Tool Surface
30
37
 
31
38
  ### Discovery and sharing
@@ -42,6 +49,8 @@ Canonical reference for Flywheel MCP public interfaces and contract pointers.
42
49
  - `flywheel_set_sharing_for_node` (mutating; scopes: `write`; full-surface only; binding: `operation`)
43
50
  - `flywheel_set_sharing_for_nodes` (mutating; scopes: `write`; full-surface only; binding: `operation`)
44
51
  - `flywheel_get_node` (read; scopes: `read`; core surface; binding: `operation`)
52
+ - `flywheel_get_node_children` (read; scopes: `read`; core surface; binding: `operation`)
53
+ - `flywheel_get_node_parents` (read; scopes: `read`; core surface; binding: `operation`)
45
54
  - `flywheel_create_node_tag` (mutating; scopes: `write`; full-surface only; binding: `operation`)
46
55
  - `flywheel_update_node_tag` (mutating; scopes: `write`; full-surface only; binding: `operation`)
47
56
  - `flywheel_delete_node_tag` (mutating; scopes: `write`; full-surface only; binding: `operation`)
@@ -72,6 +81,7 @@ Canonical reference for Flywheel MCP public interfaces and contract pointers.
72
81
  - `flywheel_list_artifacts` (read; scopes: `read`; core surface; binding: `operation`)
73
82
  - `flywheel_get_artifact` (read; scopes: `read`; core surface; binding: `operation`)
74
83
  - `flywheel_delete_artifact` (mutating; scopes: `write`; core surface; binding: `operation`)
84
+ - `flywheel_bulk_delete_artifacts` (mutating; scopes: `write`; core surface; binding: `operation`)
75
85
  - `flywheel_set_artifact_note` (mutating; scopes: `write`; core surface; binding: `operation`)
76
86
 
77
87
  ### Executions
@@ -158,6 +168,7 @@ Canonical reference for Flywheel MCP public interfaces and contract pointers.
158
168
  - `tool-mediated` -> `flywheel_list_artifacts`
159
169
  - `tool-mediated` -> `flywheel_get_artifact`
160
170
  - `DELETE /nodes/{node_id}/artifacts/{artifact_id}` -> `flywheel_delete_artifact`
171
+ - `POST /nodes/{node_id}/artifacts/bulk-delete` -> `flywheel_bulk_delete_artifacts`
161
172
  - `PATCH /nodes/{node_id}/artifacts/{artifact_id}/note` -> `flywheel_set_artifact_note`
162
173
 
163
174
  ### Executions
@@ -34,7 +34,9 @@ The families below mirror `flywheel-mcp-tool-map.md` and list the canonical CLI
34
34
  - `flywheel nodes:sharing:get` (read; scopes: `read`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_get_node_sharing`): Get sharing (access policy) for a node.
35
35
  - `flywheel nodes:sharing:set` (mutating; scopes: `write`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_set_sharing_for_node`): Replace sharing (access policy) for a node.
36
36
  - `flywheel nodes:sharing:set-bulk` (mutating; scopes: `write`; HTTP: `POST /nodes/access-policy/bulk`; MCP equivalent: `flywheel_set_sharing_for_nodes`): Apply one sharing policy to multiple nodes.
37
- - `flywheel nodes:get` (read; scopes: `read`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_get_node`): Fetch one node by identifier.
37
+ - `flywheel nodes:get` (read; scopes: `read`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_get_node`): Fetch one node by identifier. Relationship arrays are not guaranteed complete; use relationship paging commands for traversal.
38
+ - `flywheel nodes:children` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/children`; MCP equivalent: `flywheel_get_node_children`): Page direct visible children with `--first`, `--after`, and `--projection`.
39
+ - `flywheel nodes:parents` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/parents`; MCP equivalent: `flywheel_get_node_parents`): Page direct visible parents with `--first`, `--after`, and `--projection`.
38
40
  - `flywheel tags:create` (mutating; scopes: `write`; HTTP: `POST /nodes/{root_node_id}/tags`; MCP equivalent: `flywheel_create_node_tag`): Create a reusable tag on a graph root.
39
41
  - `flywheel tags:update` (mutating; scopes: `write`; HTTP: `PATCH /nodes/{root_node_id}/tags/{tag_id}`; MCP equivalent: `flywheel_update_node_tag`): Update a tag definition.
40
42
  - `flywheel tags:delete` (mutating; scopes: `write`; HTTP: `DELETE /nodes/{root_node_id}/tags/{tag_id}`; MCP equivalent: `flywheel_delete_node_tag`): Delete a tag definition from the graph.
@@ -65,6 +67,7 @@ The families below mirror `flywheel-mcp-tool-map.md` and list the canonical CLI
65
67
  - `flywheel artifacts:list` (read; scopes: `read`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_list_artifacts`): List artifacts for a node.
66
68
  - `flywheel artifacts:get` (read; scopes: `read`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_get_artifact`): Fetch one artifact metadata record.
67
69
  - `flywheel artifacts:delete` (mutating; scopes: `write`; HTTP: `DELETE /nodes/{node_id}/artifacts/{artifact_id}`; MCP equivalent: `flywheel_delete_artifact`): Delete an artifact from a node (optimistic locking).
70
+ - `flywheel artifacts:delete-bulk` (mutating; scopes: `write`; HTTP: `POST /nodes/{node_id}/artifacts/bulk-delete`; MCP equivalent: `flywheel_bulk_delete_artifacts`): Delete multiple artifacts from one node. Requires `--yes`.
68
71
  - `flywheel artifacts:note:set` (mutating; scopes: `write`; HTTP: `PATCH /nodes/{node_id}/artifacts/{artifact_id}/note`; MCP equivalent: `flywheel_set_artifact_note`): Add, update, or clear an artifact note (optimistic locking).
69
72
 
70
73
  ### Executions
@@ -38,7 +38,9 @@ Flywheel is a graph-based system for tracking research work, decisions, and evid
38
38
  - `flywheel_get_node_sharing` (read; scopes: `read`; HTTP: `tool-mediated`; full-surface only): Get node sharing for one node (owner/collaborators/visibility).
39
39
  - `flywheel_set_sharing_for_node` (mutating; scopes: `write`; HTTP: `tool-mediated`; full-surface only): Set sharing for one owned node (collaborators/private-unlisted-public visibility).
40
40
  - `flywheel_set_sharing_for_nodes` (mutating; scopes: `write`; HTTP: `POST /nodes/access-policy/bulk`; full-surface only): Apply one sharing configuration across multiple owned nodes in bulk.
41
- - `flywheel_get_node` (read; scopes: `read`; HTTP: `tool-mediated`; core surface): Get one node by node_id.
41
+ - `flywheel_get_node` (read; scopes: `read`; HTTP: `tool-mediated`; core surface): Get one node by node_id. Relationship arrays are not guaranteed complete; use relationship paging tools for traversal.
42
+ - `flywheel_get_node_children` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/children`; core surface): Page direct visible children with `first`, `after`, and `projection`.
43
+ - `flywheel_get_node_parents` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/parents`; core surface): Page direct visible parents with `first`, `after`, and `projection`.
42
44
  - `flywheel_create_node_tag` (mutating; scopes: `write`; HTTP: `POST /nodes/{root_node_id}/tags`; full-surface only): Create one graph tag from a root node. `track_history` is effective only when `one_only=true`; when `one_only=false`, the effective track_history=false.
43
45
  - `flywheel_update_node_tag` (mutating; scopes: `write`; HTTP: `PATCH /nodes/{root_node_id}/tags/{tag_id}`; full-surface only): Update one graph tag from a root node.
44
46
  - `flywheel_delete_node_tag` (mutating; scopes: `write`; HTTP: `DELETE /nodes/{root_node_id}/tags/{tag_id}`; full-surface only): Delete one graph tag from a root node.
@@ -69,6 +71,7 @@ Flywheel is a graph-based system for tracking research work, decisions, and evid
69
71
  - `flywheel_list_artifacts` (read; scopes: `read`; HTTP: `tool-mediated`; core surface): List node artifacts.
70
72
  - `flywheel_get_artifact` (read; scopes: `read`; HTTP: `tool-mediated`; core surface): Get one artifact by id.
71
73
  - `flywheel_delete_artifact` (mutating; scopes: `write`; HTTP: `DELETE /nodes/{node_id}/artifacts/{artifact_id}`; core surface): Delete one artifact by id with optimistic locking.
74
+ - `flywheel_bulk_delete_artifacts` (mutating; scopes: `write`; HTTP: `POST /nodes/{node_id}/artifacts/bulk-delete`; core surface): Delete multiple artifacts from one node by explicit artifact IDs with optimistic locking.
72
75
  - `flywheel_set_artifact_note` (mutating; scopes: `write`; HTTP: `PATCH /nodes/{node_id}/artifacts/{artifact_id}/note`; core surface): Set or clear one artifact note with optimistic locking.
73
76
 
74
77
  ### Executions
@@ -26,6 +26,13 @@ Canonical reference for Flywheel MCP public interfaces and contract pointers.
26
26
  - Approval sessions and compute grants are distinct entities; approvals are session-scoped bindings.
27
27
  - Campaign projections are derived from root config and attempt submission JSON artifacts.
28
28
 
29
+ Node detail reads are cardinality-safe: `flywheel_get_node` / `GET /nodes/{node_id}`
30
+ return node fields plus `has_children` / `has_parents` presence booleans, but do
31
+ not guarantee complete `incoming_ids` or `outgoing_ids` arrays. Use
32
+ `flywheel_get_node_children` / `GET /nodes/{node_id}/children` and
33
+ `flywheel_get_node_parents` / `GET /nodes/{node_id}/parents` for complete
34
+ direct-neighbor traversal.
35
+
29
36
  ## MCP Tool Surface
30
37
 
31
38
  ### Discovery and sharing
@@ -42,6 +49,8 @@ Canonical reference for Flywheel MCP public interfaces and contract pointers.
42
49
  - `flywheel_set_sharing_for_node` (mutating; scopes: `write`; full-surface only; binding: `operation`)
43
50
  - `flywheel_set_sharing_for_nodes` (mutating; scopes: `write`; full-surface only; binding: `operation`)
44
51
  - `flywheel_get_node` (read; scopes: `read`; core surface; binding: `operation`)
52
+ - `flywheel_get_node_children` (read; scopes: `read`; core surface; binding: `operation`)
53
+ - `flywheel_get_node_parents` (read; scopes: `read`; core surface; binding: `operation`)
45
54
  - `flywheel_create_node_tag` (mutating; scopes: `write`; full-surface only; binding: `operation`)
46
55
  - `flywheel_update_node_tag` (mutating; scopes: `write`; full-surface only; binding: `operation`)
47
56
  - `flywheel_delete_node_tag` (mutating; scopes: `write`; full-surface only; binding: `operation`)
@@ -72,6 +81,7 @@ Canonical reference for Flywheel MCP public interfaces and contract pointers.
72
81
  - `flywheel_list_artifacts` (read; scopes: `read`; core surface; binding: `operation`)
73
82
  - `flywheel_get_artifact` (read; scopes: `read`; core surface; binding: `operation`)
74
83
  - `flywheel_delete_artifact` (mutating; scopes: `write`; core surface; binding: `operation`)
84
+ - `flywheel_bulk_delete_artifacts` (mutating; scopes: `write`; core surface; binding: `operation`)
75
85
  - `flywheel_set_artifact_note` (mutating; scopes: `write`; core surface; binding: `operation`)
76
86
 
77
87
  ### Executions
@@ -158,6 +168,7 @@ Canonical reference for Flywheel MCP public interfaces and contract pointers.
158
168
  - `tool-mediated` -> `flywheel_list_artifacts`
159
169
  - `tool-mediated` -> `flywheel_get_artifact`
160
170
  - `DELETE /nodes/{node_id}/artifacts/{artifact_id}` -> `flywheel_delete_artifact`
171
+ - `POST /nodes/{node_id}/artifacts/bulk-delete` -> `flywheel_bulk_delete_artifacts`
161
172
  - `PATCH /nodes/{node_id}/artifacts/{artifact_id}/note` -> `flywheel_set_artifact_note`
162
173
 
163
174
  ### Executions
@@ -34,7 +34,9 @@ The families below mirror `flywheel-mcp-tool-map.md` and list the canonical CLI
34
34
  - `flywheel nodes:sharing:get` (read; scopes: `read`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_get_node_sharing`): Get sharing (access policy) for a node.
35
35
  - `flywheel nodes:sharing:set` (mutating; scopes: `write`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_set_sharing_for_node`): Replace sharing (access policy) for a node.
36
36
  - `flywheel nodes:sharing:set-bulk` (mutating; scopes: `write`; HTTP: `POST /nodes/access-policy/bulk`; MCP equivalent: `flywheel_set_sharing_for_nodes`): Apply one sharing policy to multiple nodes.
37
- - `flywheel nodes:get` (read; scopes: `read`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_get_node`): Fetch one node by identifier.
37
+ - `flywheel nodes:get` (read; scopes: `read`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_get_node`): Fetch one node by identifier. Relationship arrays are not guaranteed complete; use relationship paging commands for traversal.
38
+ - `flywheel nodes:children` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/children`; MCP equivalent: `flywheel_get_node_children`): Page direct visible children with `--first`, `--after`, and `--projection`.
39
+ - `flywheel nodes:parents` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/parents`; MCP equivalent: `flywheel_get_node_parents`): Page direct visible parents with `--first`, `--after`, and `--projection`.
38
40
  - `flywheel tags:create` (mutating; scopes: `write`; HTTP: `POST /nodes/{root_node_id}/tags`; MCP equivalent: `flywheel_create_node_tag`): Create a reusable tag on a graph root.
39
41
  - `flywheel tags:update` (mutating; scopes: `write`; HTTP: `PATCH /nodes/{root_node_id}/tags/{tag_id}`; MCP equivalent: `flywheel_update_node_tag`): Update a tag definition.
40
42
  - `flywheel tags:delete` (mutating; scopes: `write`; HTTP: `DELETE /nodes/{root_node_id}/tags/{tag_id}`; MCP equivalent: `flywheel_delete_node_tag`): Delete a tag definition from the graph.
@@ -65,6 +67,7 @@ The families below mirror `flywheel-mcp-tool-map.md` and list the canonical CLI
65
67
  - `flywheel artifacts:list` (read; scopes: `read`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_list_artifacts`): List artifacts for a node.
66
68
  - `flywheel artifacts:get` (read; scopes: `read`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_get_artifact`): Fetch one artifact metadata record.
67
69
  - `flywheel artifacts:delete` (mutating; scopes: `write`; HTTP: `DELETE /nodes/{node_id}/artifacts/{artifact_id}`; MCP equivalent: `flywheel_delete_artifact`): Delete an artifact from a node (optimistic locking).
70
+ - `flywheel artifacts:delete-bulk` (mutating; scopes: `write`; HTTP: `POST /nodes/{node_id}/artifacts/bulk-delete`; MCP equivalent: `flywheel_bulk_delete_artifacts`): Delete multiple artifacts from one node. Requires `--yes`.
68
71
  - `flywheel artifacts:note:set` (mutating; scopes: `write`; HTTP: `PATCH /nodes/{node_id}/artifacts/{artifact_id}/note`; MCP equivalent: `flywheel_set_artifact_note`): Add, update, or clear an artifact note (optimistic locking).
69
72
 
70
73
  ### Executions
@@ -38,7 +38,9 @@ Flywheel is a graph-based system for tracking research work, decisions, and evid
38
38
  - `flywheel_get_node_sharing` (read; scopes: `read`; HTTP: `tool-mediated`; full-surface only): Get node sharing for one node (owner/collaborators/visibility).
39
39
  - `flywheel_set_sharing_for_node` (mutating; scopes: `write`; HTTP: `tool-mediated`; full-surface only): Set sharing for one owned node (collaborators/private-unlisted-public visibility).
40
40
  - `flywheel_set_sharing_for_nodes` (mutating; scopes: `write`; HTTP: `POST /nodes/access-policy/bulk`; full-surface only): Apply one sharing configuration across multiple owned nodes in bulk.
41
- - `flywheel_get_node` (read; scopes: `read`; HTTP: `tool-mediated`; core surface): Get one node by node_id.
41
+ - `flywheel_get_node` (read; scopes: `read`; HTTP: `tool-mediated`; core surface): Get one node by node_id. Relationship arrays are not guaranteed complete; use relationship paging tools for traversal.
42
+ - `flywheel_get_node_children` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/children`; core surface): Page direct visible children with `first`, `after`, and `projection`.
43
+ - `flywheel_get_node_parents` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/parents`; core surface): Page direct visible parents with `first`, `after`, and `projection`.
42
44
  - `flywheel_create_node_tag` (mutating; scopes: `write`; HTTP: `POST /nodes/{root_node_id}/tags`; full-surface only): Create one graph tag from a root node. `track_history` is effective only when `one_only=true`; when `one_only=false`, the effective track_history=false.
43
45
  - `flywheel_update_node_tag` (mutating; scopes: `write`; HTTP: `PATCH /nodes/{root_node_id}/tags/{tag_id}`; full-surface only): Update one graph tag from a root node.
44
46
  - `flywheel_delete_node_tag` (mutating; scopes: `write`; HTTP: `DELETE /nodes/{root_node_id}/tags/{tag_id}`; full-surface only): Delete one graph tag from a root node.
@@ -69,6 +71,7 @@ Flywheel is a graph-based system for tracking research work, decisions, and evid
69
71
  - `flywheel_list_artifacts` (read; scopes: `read`; HTTP: `tool-mediated`; core surface): List node artifacts.
70
72
  - `flywheel_get_artifact` (read; scopes: `read`; HTTP: `tool-mediated`; core surface): Get one artifact by id.
71
73
  - `flywheel_delete_artifact` (mutating; scopes: `write`; HTTP: `DELETE /nodes/{node_id}/artifacts/{artifact_id}`; core surface): Delete one artifact by id with optimistic locking.
74
+ - `flywheel_bulk_delete_artifacts` (mutating; scopes: `write`; HTTP: `POST /nodes/{node_id}/artifacts/bulk-delete`; core surface): Delete multiple artifacts from one node by explicit artifact IDs with optimistic locking.
72
75
  - `flywheel_set_artifact_note` (mutating; scopes: `write`; HTTP: `PATCH /nodes/{node_id}/artifacts/{artifact_id}/note`; core surface): Set or clear one artifact note with optimistic locking.
73
76
 
74
77
  ### Executions
@@ -26,6 +26,13 @@ Canonical reference for Flywheel MCP public interfaces and contract pointers.
26
26
  - Approval sessions and compute grants are distinct entities; approvals are session-scoped bindings.
27
27
  - Campaign projections are derived from root config and attempt submission JSON artifacts.
28
28
 
29
+ Node detail reads are cardinality-safe: `flywheel_get_node` / `GET /nodes/{node_id}`
30
+ return node fields plus `has_children` / `has_parents` presence booleans, but do
31
+ not guarantee complete `incoming_ids` or `outgoing_ids` arrays. Use
32
+ `flywheel_get_node_children` / `GET /nodes/{node_id}/children` and
33
+ `flywheel_get_node_parents` / `GET /nodes/{node_id}/parents` for complete
34
+ direct-neighbor traversal.
35
+
29
36
  ## MCP Tool Surface
30
37
 
31
38
  ### Discovery and sharing
@@ -42,6 +49,8 @@ Canonical reference for Flywheel MCP public interfaces and contract pointers.
42
49
  - `flywheel_set_sharing_for_node` (mutating; scopes: `write`; full-surface only; binding: `operation`)
43
50
  - `flywheel_set_sharing_for_nodes` (mutating; scopes: `write`; full-surface only; binding: `operation`)
44
51
  - `flywheel_get_node` (read; scopes: `read`; core surface; binding: `operation`)
52
+ - `flywheel_get_node_children` (read; scopes: `read`; core surface; binding: `operation`)
53
+ - `flywheel_get_node_parents` (read; scopes: `read`; core surface; binding: `operation`)
45
54
  - `flywheel_create_node_tag` (mutating; scopes: `write`; full-surface only; binding: `operation`)
46
55
  - `flywheel_update_node_tag` (mutating; scopes: `write`; full-surface only; binding: `operation`)
47
56
  - `flywheel_delete_node_tag` (mutating; scopes: `write`; full-surface only; binding: `operation`)
@@ -72,6 +81,7 @@ Canonical reference for Flywheel MCP public interfaces and contract pointers.
72
81
  - `flywheel_list_artifacts` (read; scopes: `read`; core surface; binding: `operation`)
73
82
  - `flywheel_get_artifact` (read; scopes: `read`; core surface; binding: `operation`)
74
83
  - `flywheel_delete_artifact` (mutating; scopes: `write`; core surface; binding: `operation`)
84
+ - `flywheel_bulk_delete_artifacts` (mutating; scopes: `write`; core surface; binding: `operation`)
75
85
  - `flywheel_set_artifact_note` (mutating; scopes: `write`; core surface; binding: `operation`)
76
86
 
77
87
  ### Executions
@@ -158,6 +168,7 @@ Canonical reference for Flywheel MCP public interfaces and contract pointers.
158
168
  - `tool-mediated` -> `flywheel_list_artifacts`
159
169
  - `tool-mediated` -> `flywheel_get_artifact`
160
170
  - `DELETE /nodes/{node_id}/artifacts/{artifact_id}` -> `flywheel_delete_artifact`
171
+ - `POST /nodes/{node_id}/artifacts/bulk-delete` -> `flywheel_bulk_delete_artifacts`
161
172
  - `PATCH /nodes/{node_id}/artifacts/{artifact_id}/note` -> `flywheel_set_artifact_note`
162
173
 
163
174
  ### Executions
@@ -34,7 +34,9 @@ The families below mirror `flywheel-mcp-tool-map.md` and list the canonical CLI
34
34
  - `flywheel nodes:sharing:get` (read; scopes: `read`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_get_node_sharing`): Get sharing (access policy) for a node.
35
35
  - `flywheel nodes:sharing:set` (mutating; scopes: `write`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_set_sharing_for_node`): Replace sharing (access policy) for a node.
36
36
  - `flywheel nodes:sharing:set-bulk` (mutating; scopes: `write`; HTTP: `POST /nodes/access-policy/bulk`; MCP equivalent: `flywheel_set_sharing_for_nodes`): Apply one sharing policy to multiple nodes.
37
- - `flywheel nodes:get` (read; scopes: `read`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_get_node`): Fetch one node by identifier.
37
+ - `flywheel nodes:get` (read; scopes: `read`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_get_node`): Fetch one node by identifier. Relationship arrays are not guaranteed complete; use relationship paging commands for traversal.
38
+ - `flywheel nodes:children` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/children`; MCP equivalent: `flywheel_get_node_children`): Page direct visible children with `--first`, `--after`, and `--projection`.
39
+ - `flywheel nodes:parents` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/parents`; MCP equivalent: `flywheel_get_node_parents`): Page direct visible parents with `--first`, `--after`, and `--projection`.
38
40
  - `flywheel tags:create` (mutating; scopes: `write`; HTTP: `POST /nodes/{root_node_id}/tags`; MCP equivalent: `flywheel_create_node_tag`): Create a reusable tag on a graph root.
39
41
  - `flywheel tags:update` (mutating; scopes: `write`; HTTP: `PATCH /nodes/{root_node_id}/tags/{tag_id}`; MCP equivalent: `flywheel_update_node_tag`): Update a tag definition.
40
42
  - `flywheel tags:delete` (mutating; scopes: `write`; HTTP: `DELETE /nodes/{root_node_id}/tags/{tag_id}`; MCP equivalent: `flywheel_delete_node_tag`): Delete a tag definition from the graph.
@@ -65,6 +67,7 @@ The families below mirror `flywheel-mcp-tool-map.md` and list the canonical CLI
65
67
  - `flywheel artifacts:list` (read; scopes: `read`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_list_artifacts`): List artifacts for a node.
66
68
  - `flywheel artifacts:get` (read; scopes: `read`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_get_artifact`): Fetch one artifact metadata record.
67
69
  - `flywheel artifacts:delete` (mutating; scopes: `write`; HTTP: `DELETE /nodes/{node_id}/artifacts/{artifact_id}`; MCP equivalent: `flywheel_delete_artifact`): Delete an artifact from a node (optimistic locking).
70
+ - `flywheel artifacts:delete-bulk` (mutating; scopes: `write`; HTTP: `POST /nodes/{node_id}/artifacts/bulk-delete`; MCP equivalent: `flywheel_bulk_delete_artifacts`): Delete multiple artifacts from one node. Requires `--yes`.
68
71
  - `flywheel artifacts:note:set` (mutating; scopes: `write`; HTTP: `PATCH /nodes/{node_id}/artifacts/{artifact_id}/note`; MCP equivalent: `flywheel_set_artifact_note`): Add, update, or clear an artifact note (optimistic locking).
69
72
 
70
73
  ### Executions
@@ -38,7 +38,9 @@ Flywheel is a graph-based system for tracking research work, decisions, and evid
38
38
  - `flywheel_get_node_sharing` (read; scopes: `read`; HTTP: `tool-mediated`; full-surface only): Get node sharing for one node (owner/collaborators/visibility).
39
39
  - `flywheel_set_sharing_for_node` (mutating; scopes: `write`; HTTP: `tool-mediated`; full-surface only): Set sharing for one owned node (collaborators/private-unlisted-public visibility).
40
40
  - `flywheel_set_sharing_for_nodes` (mutating; scopes: `write`; HTTP: `POST /nodes/access-policy/bulk`; full-surface only): Apply one sharing configuration across multiple owned nodes in bulk.
41
- - `flywheel_get_node` (read; scopes: `read`; HTTP: `tool-mediated`; core surface): Get one node by node_id.
41
+ - `flywheel_get_node` (read; scopes: `read`; HTTP: `tool-mediated`; core surface): Get one node by node_id. Relationship arrays are not guaranteed complete; use relationship paging tools for traversal.
42
+ - `flywheel_get_node_children` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/children`; core surface): Page direct visible children with `first`, `after`, and `projection`.
43
+ - `flywheel_get_node_parents` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/parents`; core surface): Page direct visible parents with `first`, `after`, and `projection`.
42
44
  - `flywheel_create_node_tag` (mutating; scopes: `write`; HTTP: `POST /nodes/{root_node_id}/tags`; full-surface only): Create one graph tag from a root node. `track_history` is effective only when `one_only=true`; when `one_only=false`, the effective track_history=false.
43
45
  - `flywheel_update_node_tag` (mutating; scopes: `write`; HTTP: `PATCH /nodes/{root_node_id}/tags/{tag_id}`; full-surface only): Update one graph tag from a root node.
44
46
  - `flywheel_delete_node_tag` (mutating; scopes: `write`; HTTP: `DELETE /nodes/{root_node_id}/tags/{tag_id}`; full-surface only): Delete one graph tag from a root node.
@@ -69,6 +71,7 @@ Flywheel is a graph-based system for tracking research work, decisions, and evid
69
71
  - `flywheel_list_artifacts` (read; scopes: `read`; HTTP: `tool-mediated`; core surface): List node artifacts.
70
72
  - `flywheel_get_artifact` (read; scopes: `read`; HTTP: `tool-mediated`; core surface): Get one artifact by id.
71
73
  - `flywheel_delete_artifact` (mutating; scopes: `write`; HTTP: `DELETE /nodes/{node_id}/artifacts/{artifact_id}`; core surface): Delete one artifact by id with optimistic locking.
74
+ - `flywheel_bulk_delete_artifacts` (mutating; scopes: `write`; HTTP: `POST /nodes/{node_id}/artifacts/bulk-delete`; core surface): Delete multiple artifacts from one node by explicit artifact IDs with optimistic locking.
72
75
  - `flywheel_set_artifact_note` (mutating; scopes: `write`; HTTP: `PATCH /nodes/{node_id}/artifacts/{artifact_id}/note`; core surface): Set or clear one artifact note with optimistic locking.
73
76
 
74
77
  ### Executions
@@ -26,6 +26,13 @@ Canonical reference for Flywheel MCP public interfaces and contract pointers.
26
26
  - Approval sessions and compute grants are distinct entities; approvals are session-scoped bindings.
27
27
  - Campaign projections are derived from root config and attempt submission JSON artifacts.
28
28
 
29
+ Node detail reads are cardinality-safe: `flywheel_get_node` / `GET /nodes/{node_id}`
30
+ return node fields plus `has_children` / `has_parents` presence booleans, but do
31
+ not guarantee complete `incoming_ids` or `outgoing_ids` arrays. Use
32
+ `flywheel_get_node_children` / `GET /nodes/{node_id}/children` and
33
+ `flywheel_get_node_parents` / `GET /nodes/{node_id}/parents` for complete
34
+ direct-neighbor traversal.
35
+
29
36
  ## MCP Tool Surface
30
37
 
31
38
  ### Discovery and sharing
@@ -42,6 +49,8 @@ Canonical reference for Flywheel MCP public interfaces and contract pointers.
42
49
  - `flywheel_set_sharing_for_node` (mutating; scopes: `write`; full-surface only; binding: `operation`)
43
50
  - `flywheel_set_sharing_for_nodes` (mutating; scopes: `write`; full-surface only; binding: `operation`)
44
51
  - `flywheel_get_node` (read; scopes: `read`; core surface; binding: `operation`)
52
+ - `flywheel_get_node_children` (read; scopes: `read`; core surface; binding: `operation`)
53
+ - `flywheel_get_node_parents` (read; scopes: `read`; core surface; binding: `operation`)
45
54
  - `flywheel_create_node_tag` (mutating; scopes: `write`; full-surface only; binding: `operation`)
46
55
  - `flywheel_update_node_tag` (mutating; scopes: `write`; full-surface only; binding: `operation`)
47
56
  - `flywheel_delete_node_tag` (mutating; scopes: `write`; full-surface only; binding: `operation`)
@@ -72,6 +81,7 @@ Canonical reference for Flywheel MCP public interfaces and contract pointers.
72
81
  - `flywheel_list_artifacts` (read; scopes: `read`; core surface; binding: `operation`)
73
82
  - `flywheel_get_artifact` (read; scopes: `read`; core surface; binding: `operation`)
74
83
  - `flywheel_delete_artifact` (mutating; scopes: `write`; core surface; binding: `operation`)
84
+ - `flywheel_bulk_delete_artifacts` (mutating; scopes: `write`; core surface; binding: `operation`)
75
85
  - `flywheel_set_artifact_note` (mutating; scopes: `write`; core surface; binding: `operation`)
76
86
 
77
87
  ### Executions
@@ -158,6 +168,7 @@ Canonical reference for Flywheel MCP public interfaces and contract pointers.
158
168
  - `tool-mediated` -> `flywheel_list_artifacts`
159
169
  - `tool-mediated` -> `flywheel_get_artifact`
160
170
  - `DELETE /nodes/{node_id}/artifacts/{artifact_id}` -> `flywheel_delete_artifact`
171
+ - `POST /nodes/{node_id}/artifacts/bulk-delete` -> `flywheel_bulk_delete_artifacts`
161
172
  - `PATCH /nodes/{node_id}/artifacts/{artifact_id}/note` -> `flywheel_set_artifact_note`
162
173
 
163
174
  ### Executions
@@ -34,7 +34,9 @@ The families below mirror `flywheel-mcp-tool-map.md` and list the canonical CLI
34
34
  - `flywheel nodes:sharing:get` (read; scopes: `read`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_get_node_sharing`): Get sharing (access policy) for a node.
35
35
  - `flywheel nodes:sharing:set` (mutating; scopes: `write`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_set_sharing_for_node`): Replace sharing (access policy) for a node.
36
36
  - `flywheel nodes:sharing:set-bulk` (mutating; scopes: `write`; HTTP: `POST /nodes/access-policy/bulk`; MCP equivalent: `flywheel_set_sharing_for_nodes`): Apply one sharing policy to multiple nodes.
37
- - `flywheel nodes:get` (read; scopes: `read`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_get_node`): Fetch one node by identifier.
37
+ - `flywheel nodes:get` (read; scopes: `read`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_get_node`): Fetch one node by identifier. Relationship arrays are not guaranteed complete; use relationship paging commands for traversal.
38
+ - `flywheel nodes:children` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/children`; MCP equivalent: `flywheel_get_node_children`): Page direct visible children with `--first`, `--after`, and `--projection`.
39
+ - `flywheel nodes:parents` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/parents`; MCP equivalent: `flywheel_get_node_parents`): Page direct visible parents with `--first`, `--after`, and `--projection`.
38
40
  - `flywheel tags:create` (mutating; scopes: `write`; HTTP: `POST /nodes/{root_node_id}/tags`; MCP equivalent: `flywheel_create_node_tag`): Create a reusable tag on a graph root.
39
41
  - `flywheel tags:update` (mutating; scopes: `write`; HTTP: `PATCH /nodes/{root_node_id}/tags/{tag_id}`; MCP equivalent: `flywheel_update_node_tag`): Update a tag definition.
40
42
  - `flywheel tags:delete` (mutating; scopes: `write`; HTTP: `DELETE /nodes/{root_node_id}/tags/{tag_id}`; MCP equivalent: `flywheel_delete_node_tag`): Delete a tag definition from the graph.
@@ -65,6 +67,7 @@ The families below mirror `flywheel-mcp-tool-map.md` and list the canonical CLI
65
67
  - `flywheel artifacts:list` (read; scopes: `read`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_list_artifacts`): List artifacts for a node.
66
68
  - `flywheel artifacts:get` (read; scopes: `read`; HTTP: `tool-mediated`; MCP equivalent: `flywheel_get_artifact`): Fetch one artifact metadata record.
67
69
  - `flywheel artifacts:delete` (mutating; scopes: `write`; HTTP: `DELETE /nodes/{node_id}/artifacts/{artifact_id}`; MCP equivalent: `flywheel_delete_artifact`): Delete an artifact from a node (optimistic locking).
70
+ - `flywheel artifacts:delete-bulk` (mutating; scopes: `write`; HTTP: `POST /nodes/{node_id}/artifacts/bulk-delete`; MCP equivalent: `flywheel_bulk_delete_artifacts`): Delete multiple artifacts from one node. Requires `--yes`.
68
71
  - `flywheel artifacts:note:set` (mutating; scopes: `write`; HTTP: `PATCH /nodes/{node_id}/artifacts/{artifact_id}/note`; MCP equivalent: `flywheel_set_artifact_note`): Add, update, or clear an artifact note (optimistic locking).
69
72
 
70
73
  ### Executions
@@ -38,7 +38,9 @@ Flywheel is a graph-based system for tracking research work, decisions, and evid
38
38
  - `flywheel_get_node_sharing` (read; scopes: `read`; HTTP: `tool-mediated`; full-surface only): Get node sharing for one node (owner/collaborators/visibility).
39
39
  - `flywheel_set_sharing_for_node` (mutating; scopes: `write`; HTTP: `tool-mediated`; full-surface only): Set sharing for one owned node (collaborators/private-unlisted-public visibility).
40
40
  - `flywheel_set_sharing_for_nodes` (mutating; scopes: `write`; HTTP: `POST /nodes/access-policy/bulk`; full-surface only): Apply one sharing configuration across multiple owned nodes in bulk.
41
- - `flywheel_get_node` (read; scopes: `read`; HTTP: `tool-mediated`; core surface): Get one node by node_id.
41
+ - `flywheel_get_node` (read; scopes: `read`; HTTP: `tool-mediated`; core surface): Get one node by node_id. Relationship arrays are not guaranteed complete; use relationship paging tools for traversal.
42
+ - `flywheel_get_node_children` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/children`; core surface): Page direct visible children with `first`, `after`, and `projection`.
43
+ - `flywheel_get_node_parents` (read; scopes: `read`; HTTP: `GET /nodes/{node_id}/parents`; core surface): Page direct visible parents with `first`, `after`, and `projection`.
42
44
  - `flywheel_create_node_tag` (mutating; scopes: `write`; HTTP: `POST /nodes/{root_node_id}/tags`; full-surface only): Create one graph tag from a root node. `track_history` is effective only when `one_only=true`; when `one_only=false`, the effective track_history=false.
43
45
  - `flywheel_update_node_tag` (mutating; scopes: `write`; HTTP: `PATCH /nodes/{root_node_id}/tags/{tag_id}`; full-surface only): Update one graph tag from a root node.
44
46
  - `flywheel_delete_node_tag` (mutating; scopes: `write`; HTTP: `DELETE /nodes/{root_node_id}/tags/{tag_id}`; full-surface only): Delete one graph tag from a root node.
@@ -69,6 +71,7 @@ Flywheel is a graph-based system for tracking research work, decisions, and evid
69
71
  - `flywheel_list_artifacts` (read; scopes: `read`; HTTP: `tool-mediated`; core surface): List node artifacts.
70
72
  - `flywheel_get_artifact` (read; scopes: `read`; HTTP: `tool-mediated`; core surface): Get one artifact by id.
71
73
  - `flywheel_delete_artifact` (mutating; scopes: `write`; HTTP: `DELETE /nodes/{node_id}/artifacts/{artifact_id}`; core surface): Delete one artifact by id with optimistic locking.
74
+ - `flywheel_bulk_delete_artifacts` (mutating; scopes: `write`; HTTP: `POST /nodes/{node_id}/artifacts/bulk-delete`; core surface): Delete multiple artifacts from one node by explicit artifact IDs with optimistic locking.
72
75
  - `flywheel_set_artifact_note` (mutating; scopes: `write`; HTTP: `PATCH /nodes/{node_id}/artifacts/{artifact_id}/note`; core surface): Set or clear one artifact note with optimistic locking.
73
76
 
74
77
  ### Executions
@@ -3,6 +3,8 @@
3
3
  "auth:login",
4
4
  "nodes:list",
5
5
  "nodes:get",
6
+ "nodes:children",
7
+ "nodes:parents",
6
8
  "nodes:commit-new",
7
9
  "nodes:stage:lease:acquire",
8
10
  "nodes:commit",
@@ -43,6 +45,7 @@
43
45
  "artifacts:upload:finalize",
44
46
  "artifacts:upload",
45
47
  "artifacts:delete",
48
+ "artifacts:delete-bulk",
46
49
  "artifacts:note:set",
47
50
  "hooks:list",
48
51
  "hooks:create",
@@ -0,0 +1,2 @@
1
+ import type { CommandHandler } from './types.js';
2
+ export declare const artifactsDeleteBulkCommand: CommandHandler;
@@ -0,0 +1,22 @@
1
+ import { CliUsageError } from '../errors.js';
2
+ import { requireDestructiveConfirmation } from './destructive-confirmation.js';
3
+ import { requiredInt, requiredString } from './utils.js';
4
+ export const artifactsDeleteBulkCommand = async (context) => {
5
+ const nodeId = requiredString(context.params, 'node_id');
6
+ const artifactIds = requiredString(context.params, 'artifact_ids')
7
+ .split(',')
8
+ .map((value) => value.trim())
9
+ .filter(Boolean);
10
+ if (artifactIds.length === 0) {
11
+ throw new CliUsageError('artifact_ids must contain at least one artifact ID');
12
+ }
13
+ const expectedRevision = requiredInt(context.params, 'expected_revision');
14
+ requireDestructiveConfirmation(context, 'artifacts:delete-bulk');
15
+ return context.requestJson('POST', `/nodes/${encodeURIComponent(nodeId)}/artifacts/bulk-delete`, {
16
+ body: {
17
+ artifact_ids: artifactIds,
18
+ expected_revision: expectedRevision,
19
+ },
20
+ });
21
+ };
22
+ //# sourceMappingURL=artifacts-delete-bulk.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"artifacts-delete-bulk.js","sourceRoot":"","sources":["../../src/commands/artifacts-delete-bulk.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAC7C,OAAO,EAAE,8BAA8B,EAAE,MAAM,+BAA+B,CAAC;AAE/E,OAAO,EAAE,WAAW,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAEzD,MAAM,CAAC,MAAM,0BAA0B,GAAmB,KAAK,EAAE,OAAO,EAAE,EAAE;IAC1E,MAAM,MAAM,GAAG,cAAc,CAAC,OAAO,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC;IACzD,MAAM,WAAW,GAAG,cAAc,CAAC,OAAO,CAAC,MAAM,EAAE,cAAc,CAAC;SAC/D,KAAK,CAAC,GAAG,CAAC;SACV,GAAG,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,IAAI,EAAE,CAAC;SAC5B,MAAM,CAAC,OAAO,CAAC,CAAC;IACnB,IAAI,WAAW,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;QAC7B,MAAM,IAAI,aAAa,CAAC,oDAAoD,CAAC,CAAC;IAChF,CAAC;IACD,MAAM,gBAAgB,GAAG,WAAW,CAAC,OAAO,CAAC,MAAM,EAAE,mBAAmB,CAAC,CAAC;IAC1E,8BAA8B,CAAC,OAAO,EAAE,uBAAuB,CAAC,CAAC;IACjE,OAAO,OAAO,CAAC,WAAW,CACxB,MAAM,EACN,UAAU,kBAAkB,CAAC,MAAM,CAAC,wBAAwB,EAC5D;QACE,IAAI,EAAE;YACJ,YAAY,EAAE,WAAW;YACzB,iBAAiB,EAAE,gBAAgB;SACpC;KACF,CACF,CAAC;AACJ,CAAC,CAAC"}
@@ -4,11 +4,13 @@ import { authLoginCommand } from './auth-login.js';
4
4
  import { authStatusCommand } from './auth-status.js';
5
5
  import { computeStatusCommand } from './compute-status.js';
6
6
  import { exportSubgraphCommand } from './export-subgraph.js';
7
+ import { nodesChildrenCommand } from './nodes-children.js';
7
8
  import { nodesCommitCommand } from './nodes-commit.js';
8
9
  import { nodesCommitNewCommand } from './nodes-commit-new.js';
9
10
  import { nodesDeleteCommand } from './nodes-delete.js';
10
11
  import { nodesGetCommand } from './nodes-get.js';
11
12
  import { nodesListCommand } from './nodes-list.js';
13
+ import { nodesParentsCommand } from './nodes-parents.js';
12
14
  import { nodesRenderTreeCommand } from './nodes-render-tree.js';
13
15
  import { nodesStageLeaseAcquireCommand } from './nodes-stage-lease-acquire.js';
14
16
  import { profileListCommand } from './profile-list.js';
@@ -16,5 +18,5 @@ import { profileShowCommand } from './profile-show.js';
16
18
  import { profileSetCommand } from './profile-set.js';
17
19
  import { profileUnsetCommand } from './profile-unset.js';
18
20
  import type { CommandHandler } from './types.js';
19
- export { artifactsGetCommand, artifactsListCommand, authLoginCommand, authStatusCommand, computeStatusCommand, exportSubgraphCommand, nodesCommitCommand, nodesCommitNewCommand, nodesDeleteCommand, nodesGetCommand, nodesListCommand, nodesRenderTreeCommand, nodesStageLeaseAcquireCommand, profileListCommand, profileShowCommand, profileSetCommand, profileUnsetCommand, };
21
+ export { artifactsGetCommand, artifactsListCommand, authLoginCommand, authStatusCommand, computeStatusCommand, exportSubgraphCommand, nodesChildrenCommand, nodesCommitCommand, nodesCommitNewCommand, nodesDeleteCommand, nodesGetCommand, nodesListCommand, nodesParentsCommand, nodesRenderTreeCommand, nodesStageLeaseAcquireCommand, profileListCommand, profileShowCommand, profileSetCommand, profileUnsetCommand, };
20
22
  export declare const MVP_COMMAND_HANDLERS: Record<string, CommandHandler>;
@@ -7,11 +7,13 @@ import { adminGraphsExportCommand } from './admin-graphs-export.js';
7
7
  import { adminGraphsExportStreamCommand } from './admin-graphs-export-stream.js';
8
8
  import { adminGraphsListCommand } from './admin-graphs-list.js';
9
9
  import { exportSubgraphCommand } from './export-subgraph.js';
10
+ import { nodesChildrenCommand } from './nodes-children.js';
10
11
  import { nodesCommitCommand } from './nodes-commit.js';
11
12
  import { nodesCommitNewCommand } from './nodes-commit-new.js';
12
13
  import { nodesDeleteCommand } from './nodes-delete.js';
13
14
  import { nodesGetCommand } from './nodes-get.js';
14
15
  import { nodesListCommand } from './nodes-list.js';
16
+ import { nodesParentsCommand } from './nodes-parents.js';
15
17
  import { nodesRenderTreeCommand } from './nodes-render-tree.js';
16
18
  import { nodesStageLeaseAcquireCommand } from './nodes-stage-lease-acquire.js';
17
19
  import { profileListCommand } from './profile-list.js';
@@ -45,6 +47,7 @@ import { nodesCreateCommand } from './nodes-create.js';
45
47
  import { artifactsUploadPrepareCommand } from './artifacts-upload-prepare.js';
46
48
  import { artifactsUploadFinalizeCommand } from './artifacts-upload-finalize.js';
47
49
  import { artifactsUploadCommand } from './artifacts-upload.js';
50
+ import { artifactsDeleteBulkCommand } from './artifacts-delete-bulk.js';
48
51
  import { artifactsDeleteCommand } from './artifacts-delete.js';
49
52
  import { artifactsNoteSetCommand } from './artifacts-note-set.js';
50
53
  import { hooksListCommand } from './hooks-list.js';
@@ -127,12 +130,14 @@ import { apiKeysRotateCommand } from './api-keys-rotate.js';
127
130
  import { authKeychainSetCommand } from './auth-keychain-set.js';
128
131
  import { authKeychainClearCommand } from './auth-keychain-clear.js';
129
132
  import { envSwitchCommand, envListCommand } from './env.js';
130
- export { artifactsGetCommand, artifactsListCommand, authLoginCommand, authStatusCommand, computeStatusCommand, exportSubgraphCommand, nodesCommitCommand, nodesCommitNewCommand, nodesDeleteCommand, nodesGetCommand, nodesListCommand, nodesRenderTreeCommand, nodesStageLeaseAcquireCommand, profileListCommand, profileShowCommand, profileSetCommand, profileUnsetCommand, };
133
+ export { artifactsGetCommand, artifactsListCommand, authLoginCommand, authStatusCommand, computeStatusCommand, exportSubgraphCommand, nodesChildrenCommand, nodesCommitCommand, nodesCommitNewCommand, nodesDeleteCommand, nodesGetCommand, nodesListCommand, nodesParentsCommand, nodesRenderTreeCommand, nodesStageLeaseAcquireCommand, profileListCommand, profileShowCommand, profileSetCommand, profileUnsetCommand, };
131
134
  export const MVP_COMMAND_HANDLERS = {
132
135
  'auth:status': authStatusCommand,
133
136
  'auth:login': authLoginCommand,
134
137
  'nodes:list': nodesListCommand,
135
138
  'nodes:get': nodesGetCommand,
139
+ 'nodes:children': nodesChildrenCommand,
140
+ 'nodes:parents': nodesParentsCommand,
136
141
  'nodes:commit-new': nodesCommitNewCommand,
137
142
  'nodes:stage:lease:acquire': nodesStageLeaseAcquireCommand,
138
143
  'nodes:commit': nodesCommitCommand,
@@ -173,6 +178,7 @@ export const MVP_COMMAND_HANDLERS = {
173
178
  'artifacts:upload:prepare': artifactsUploadPrepareCommand,
174
179
  'artifacts:upload:finalize': artifactsUploadFinalizeCommand,
175
180
  'artifacts:upload': artifactsUploadCommand,
181
+ 'artifacts:delete-bulk': artifactsDeleteBulkCommand,
176
182
  'artifacts:delete': artifactsDeleteCommand,
177
183
  'artifacts:note:set': artifactsNoteSetCommand,
178
184
  'hooks:list': hooksListCommand,
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/commands/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/commands/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ import type { CommandHandler } from './types.js';
2
+ export declare const nodesChildrenCommand: CommandHandler;
@@ -0,0 +1,8 @@
1
+ import { queryFromParams, requiredString } from './utils.js';
2
+ export const nodesChildrenCommand = async (context) => {
3
+ const nodeId = requiredString(context.params, 'node_id');
4
+ return context.requestJson('GET', `/nodes/${encodeURIComponent(nodeId)}/children`, {
5
+ query: queryFromParams(context.params, ['node_id']),
6
+ });
7
+ };
8
+ //# sourceMappingURL=nodes-children.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"nodes-children.js","sourceRoot":"","sources":["../../src/commands/nodes-children.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAE7D,MAAM,CAAC,MAAM,oBAAoB,GAAmB,KAAK,EAAE,OAAO,EAAE,EAAE;IACpE,MAAM,MAAM,GAAG,cAAc,CAAC,OAAO,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC;IACzD,OAAO,OAAO,CAAC,WAAW,CACxB,KAAK,EACL,UAAU,kBAAkB,CAAC,MAAM,CAAC,WAAW,EAC/C;QACE,KAAK,EAAE,eAAe,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,SAAS,CAAC,CAAC;KACpD,CACF,CAAC;AACJ,CAAC,CAAC"}
@@ -0,0 +1,2 @@
1
+ import type { CommandHandler } from './types.js';
2
+ export declare const nodesParentsCommand: CommandHandler;
@@ -0,0 +1,8 @@
1
+ import { queryFromParams, requiredString } from './utils.js';
2
+ export const nodesParentsCommand = async (context) => {
3
+ const nodeId = requiredString(context.params, 'node_id');
4
+ return context.requestJson('GET', `/nodes/${encodeURIComponent(nodeId)}/parents`, {
5
+ query: queryFromParams(context.params, ['node_id']),
6
+ });
7
+ };
8
+ //# sourceMappingURL=nodes-parents.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"nodes-parents.js","sourceRoot":"","sources":["../../src/commands/nodes-parents.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAE7D,MAAM,CAAC,MAAM,mBAAmB,GAAmB,KAAK,EAAE,OAAO,EAAE,EAAE;IACnE,MAAM,MAAM,GAAG,cAAc,CAAC,OAAO,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC;IACzD,OAAO,OAAO,CAAC,WAAW,CACxB,KAAK,EACL,UAAU,kBAAkB,CAAC,MAAM,CAAC,UAAU,EAC9C;QACE,KAAK,EAAE,eAAe,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,SAAS,CAAC,CAAC;KACpD,CACF,CAAC;AACJ,CAAC,CAAC"}
@@ -93,6 +93,30 @@ export const ARTIFACTS_COMMANDS = [
93
93
  ],
94
94
  related: ['artifacts:list'],
95
95
  },
96
+ {
97
+ name: 'artifacts:delete-bulk',
98
+ group: 'artifacts-files',
99
+ summary: 'Delete multiple artifacts from one node.',
100
+ endpoints: ['POST /nodes/{node_id}/artifacts/bulk-delete'],
101
+ required: [
102
+ { name: 'node_id', type: 'string', description: 'Owning node.' },
103
+ {
104
+ name: 'artifact_ids',
105
+ type: 'string',
106
+ description: 'Comma-separated artifact IDs.',
107
+ },
108
+ { name: 'expected_revision', type: 'integer', description: 'Optimistic lock.' },
109
+ { name: 'yes', type: 'boolean', description: 'Confirm destructive deletion.' },
110
+ ],
111
+ optional: [],
112
+ examples: [
113
+ {
114
+ description: 'Delete multiple artifacts.',
115
+ invocation: 'flywheel artifacts:delete-bulk --node_id n --artifact_ids a,b --expected_revision 7 --yes',
116
+ },
117
+ ],
118
+ related: ['artifacts:list', 'artifacts:delete'],
119
+ },
96
120
  {
97
121
  name: 'artifacts:note:set',
98
122
  group: 'artifacts-files',
@@ -1 +1 @@
1
- {"version":3,"file":"artifacts.js","sourceRoot":"","sources":["../../../src/commands/registry/artifacts.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"artifacts.js","sourceRoot":"","sources":["../../../src/commands/registry/artifacts.ts"],"names":[],"mappings":"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"}
@@ -126,7 +126,7 @@ const CORE_MVP_COMMANDS = [
126
126
  {
127
127
  name: 'nodes:get',
128
128
  group: 'nodes-graph',
129
- summary: 'Fetch one node by identifier.',
129
+ summary: 'Fetch one node by identifier. Use relationship paging commands for complete direct-neighbor traversal.',
130
130
  endpoints: ['GET /nodes/{node_id}'],
131
131
  required: [
132
132
  { name: 'node_id', type: 'string', description: 'Target node identifier.' },
@@ -135,7 +135,7 @@ const CORE_MVP_COMMANDS = [
135
135
  {
136
136
  name: 'projection',
137
137
  type: 'string',
138
- description: 'Response projection (e.g. core, topology).',
138
+ description: 'Response projection (core, topology, or full); topology is lightweight metadata and does not guarantee complete relationship arrays.',
139
139
  },
140
140
  ],
141
141
  examples: [
@@ -148,7 +148,85 @@ const CORE_MVP_COMMANDS = [
148
148
  invocation: 'flywheel nodes:get --node_id n_abc --projection topology --format=tsv',
149
149
  },
150
150
  ],
151
- related: ['nodes:list', 'nodes:render:tree'],
151
+ related: ['nodes:list', 'nodes:children', 'nodes:parents', 'nodes:render:tree'],
152
+ },
153
+ {
154
+ name: 'nodes:children',
155
+ group: 'nodes-graph',
156
+ summary: 'Page direct visible children for one node.',
157
+ endpoints: ['GET /nodes/{node_id}/children'],
158
+ required: [
159
+ { name: 'node_id', type: 'string', description: 'Target node identifier.' },
160
+ ],
161
+ optional: [
162
+ {
163
+ name: 'first',
164
+ type: 'integer',
165
+ description: 'Maximum edges to return (server clamps to 1..500).',
166
+ default: '100',
167
+ },
168
+ {
169
+ name: 'after',
170
+ type: 'string',
171
+ description: 'Opaque end_cursor from a previous page.',
172
+ },
173
+ {
174
+ name: 'projection',
175
+ type: 'string',
176
+ description: 'Node payload projection for each edge (topology or core).',
177
+ default: 'topology',
178
+ },
179
+ ],
180
+ examples: [
181
+ {
182
+ description: 'Read the first page of children.',
183
+ invocation: 'flywheel nodes:children --node_id n_abc --first 100',
184
+ },
185
+ {
186
+ description: 'Continue from a previous page cursor.',
187
+ invocation: 'flywheel nodes:children --node_id n_abc --after cursor_abc --projection core',
188
+ },
189
+ ],
190
+ related: ['nodes:get', 'nodes:parents', 'nodes:render:tree'],
191
+ },
192
+ {
193
+ name: 'nodes:parents',
194
+ group: 'nodes-graph',
195
+ summary: 'Page direct visible parents for one node.',
196
+ endpoints: ['GET /nodes/{node_id}/parents'],
197
+ required: [
198
+ { name: 'node_id', type: 'string', description: 'Target node identifier.' },
199
+ ],
200
+ optional: [
201
+ {
202
+ name: 'first',
203
+ type: 'integer',
204
+ description: 'Maximum edges to return (server clamps to 1..500).',
205
+ default: '100',
206
+ },
207
+ {
208
+ name: 'after',
209
+ type: 'string',
210
+ description: 'Opaque end_cursor from a previous page.',
211
+ },
212
+ {
213
+ name: 'projection',
214
+ type: 'string',
215
+ description: 'Node payload projection for each edge (topology or core).',
216
+ default: 'topology',
217
+ },
218
+ ],
219
+ examples: [
220
+ {
221
+ description: 'Read the first page of parents.',
222
+ invocation: 'flywheel nodes:parents --node_id n_abc --first 100',
223
+ },
224
+ {
225
+ description: 'Continue from a previous page cursor.',
226
+ invocation: 'flywheel nodes:parents --node_id n_abc --after cursor_abc --projection core',
227
+ },
228
+ ],
229
+ related: ['nodes:get', 'nodes:children', 'nodes:render:tree'],
152
230
  },
153
231
  {
154
232
  name: 'nodes:commit-new',
@@ -1 +1 @@
1
- {"version":3,"file":"registry.js","sourceRoot":"","sources":["../../src/commands/registry.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"registry.js","sourceRoot":"","sources":["../../src/commands/registry.ts"],"names":[],"mappings":"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"}
@@ -1,5 +1,5 @@
1
1
  {
2
- "sourceCommit": "9656cc7c05f2de8c4535f5293ad36e77c91d6714",
2
+ "sourceCommit": "6176e2ddcfc2506731c77fe577fe991e83d392a5",
3
3
  "files": [
4
4
  "auth/active-key-id.d.ts",
5
5
  "auth/active-key-id.js",
@@ -115,6 +115,9 @@
115
115
  "commands/approval-sessions-list.d.ts",
116
116
  "commands/approval-sessions-list.js",
117
117
  "commands/approval-sessions-list.js.map",
118
+ "commands/artifacts-delete-bulk.d.ts",
119
+ "commands/artifacts-delete-bulk.js",
120
+ "commands/artifacts-delete-bulk.js.map",
118
121
  "commands/artifacts-delete.d.ts",
119
122
  "commands/artifacts-delete.js",
120
123
  "commands/artifacts-delete.js.map",
@@ -352,6 +355,9 @@
352
355
  "commands/nodes-branch.d.ts",
353
356
  "commands/nodes-branch.js",
354
357
  "commands/nodes-branch.js.map",
358
+ "commands/nodes-children.d.ts",
359
+ "commands/nodes-children.js",
360
+ "commands/nodes-children.js.map",
355
361
  "commands/nodes-commit-new.d.ts",
356
362
  "commands/nodes-commit-new.js",
357
363
  "commands/nodes-commit-new.js.map",
@@ -379,6 +385,9 @@
379
385
  "commands/nodes-merge.d.ts",
380
386
  "commands/nodes-merge.js",
381
387
  "commands/nodes-merge.js.map",
388
+ "commands/nodes-parents.d.ts",
389
+ "commands/nodes-parents.js",
390
+ "commands/nodes-parents.js.map",
382
391
  "commands/nodes-remove-parent.d.ts",
383
392
  "commands/nodes-remove-parent.js",
384
393
  "commands/nodes-remove-parent.js.map",