@paradigma-inc/flywheel 0.1.10 → 0.1.12

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 (34) hide show
  1. package/package.json +1 -1
  2. package/skills/flywheel/SKILL.md +3 -3
  3. package/skills/flywheel/example-workflows/organizing-exploring-and-iterating-on-a-research-topic.md +8 -8
  4. package/skills/flywheel/example-workflows/reproducing-papers-on-a-budget.md +8 -8
  5. package/skills/flywheel/getting-started/flywheel-tutorial-overview.md +1 -1
  6. package/skills/flywheel/references/experiment-design-protocol.md +204 -0
  7. package/skills/flywheel/references/flywheel-mcp-tool-map.md +160 -0
  8. package/skills/flywheel/web-ui/flywheel-webui-map.md +1 -1
  9. package/skills/flywheel-auto/SKILL.md +156 -0
  10. package/skills/flywheel-auto/agents/openai.yaml +12 -0
  11. package/skills/flywheel-auto/evals/evals.json +20 -0
  12. package/skills/flywheel-auto/references/ARTIFACTS.md +218 -0
  13. package/skills/flywheel-auto/references/INTERFACES.md +201 -0
  14. package/skills/{flywheel/reference → flywheel-auto/references}/experiment-design-protocol.md +9 -5
  15. package/skills/flywheel-lookahead/SKILL.md +130 -0
  16. package/skills/flywheel-lookahead/agents/openai.yaml +12 -0
  17. package/skills/flywheel-lookahead/evals/evals.json +20 -0
  18. package/skills/flywheel-lookahead/references/ARTIFACTS.md +218 -0
  19. package/skills/flywheel-lookahead/references/INTERFACES.md +201 -0
  20. package/skills/flywheel-lookahead/references/flywheel-mcp-tool-map.md +160 -0
  21. package/skills/flywheel-reproduce/SKILL.md +212 -0
  22. package/skills/flywheel-reproduce/agents/openai.yaml +12 -0
  23. package/skills/flywheel-reproduce/evals/evals.json +20 -0
  24. package/skills/flywheel-reproduce/references/ARTIFACTS.md +218 -0
  25. package/skills/flywheel-reproduce/references/INTERFACES.md +201 -0
  26. package/skills/flywheel-reproduce/references/experiment-design-protocol.md +204 -0
  27. package/skills/flywheel-reproduce/references/flywheel-mcp-tool-map.md +160 -0
  28. package/skills/flywheel-to-graph/SKILL.md +187 -0
  29. package/skills/flywheel-to-graph/agents/openai.yaml +12 -0
  30. package/skills/flywheel-to-graph/evals/evals.json +20 -0
  31. package/skills/flywheel-to-graph/references/ARTIFACTS.md +218 -0
  32. package/skills/flywheel-to-graph/references/INTERFACES.md +201 -0
  33. package/skills/flywheel-to-graph/references/flywheel-mcp-tool-map.md +160 -0
  34. /package/skills/{flywheel/reference → flywheel-auto/references}/flywheel-mcp-tool-map.md +0 -0
@@ -0,0 +1,160 @@
1
+ # Flywheel MCP Tool Map
2
+
3
+ This reference describes the Flywheel MCP tool families and the common runtime
4
+ contract expected by the public Flywheel skill.
5
+
6
+ Use it as a routing guide, not as a session snapshot. Always verify the exact
7
+ tool surface exposed by your current MCP host before executing critical flows.
8
+
9
+ ## Core Contract Expectations
10
+
11
+ - Node lifecycle and graph-mutation flows use optimistic locking
12
+ (`expected_revision`).
13
+ - Node commits require `kind`, `outcome`, and `summary`.
14
+ - `kind` is typically `insight` or `empirical`.
15
+ - `insight` commits require non-empty `insights`.
16
+ - `empirical` commits require a non-empty `hypothesis`; completed empirical
17
+ commits also require artifacts or a `no_artifacts_reason`.
18
+ - Artifact publish is a two-step flow:
19
+ prepare upload, upload raw bytes to returned signed URLs, then finalize
20
+ the upload batch.
21
+
22
+ ## Tool Families
23
+
24
+ ### Session, Auth, and Contract
25
+
26
+ - `mcp__flywheel__flywheel_auth_status`
27
+ - `mcp__flywheel__flywheel_get_contract`
28
+ - `mcp__flywheel__flywheel_get_contract_section`
29
+ - `mcp__flywheel__flywheel_get_credits_balance`
30
+
31
+ ### Node Discovery and Read
32
+
33
+ - `mcp__flywheel__flywheel_list_nodes`
34
+ - `mcp__flywheel__flywheel_get_node`
35
+ - `mcp__flywheel__flywheel_get_node_tree`
36
+ - `mcp__flywheel__flywheel_get_node_ancestry`
37
+ - `mcp__flywheel__flywheel_summarize_node_tree`
38
+ - `mcp__flywheel__flywheel_get_campaign_snapshot`
39
+ - `mcp__flywheel__flywheel_list_audit`
40
+
41
+ ### Node Mutation, Branching, and Commit
42
+
43
+ - `mcp__flywheel__flywheel_stage_node_create`
44
+ - `mcp__flywheel__flywheel_stage_node_update`
45
+ - `mcp__flywheel__flywheel_commit_node`
46
+ - `mcp__flywheel__flywheel_branch_node`
47
+ - `mcp__flywheel__flywheel_merge_nodes`
48
+ - `mcp__flywheel__flywheel_add_parent`
49
+ - `mcp__flywheel__flywheel_remove_parent`
50
+ - `mcp__flywheel__flywheel_delete_node`
51
+ - `mcp__flywheel__flywheel_bulk_delete_nodes`
52
+
53
+ ### Access Policy and Collaboration
54
+
55
+ - `mcp__flywheel__flywheel_get_node_sharing`
56
+ - `mcp__flywheel__flywheel_set_sharing_for_node`
57
+ - `mcp__flywheel__flywheel_set_sharing_for_nodes`
58
+
59
+ ### Tags and Graph Annotation
60
+
61
+ - `mcp__flywheel__flywheel_create_node_tag`
62
+ - `mcp__flywheel__flywheel_update_node_tag`
63
+ - `mcp__flywheel__flywheel_delete_node_tag`
64
+ - `mcp__flywheel__flywheel_set_node_tag_assignments`
65
+
66
+ ### Artifacts
67
+
68
+ - `mcp__flywheel__flywheel_list_artifacts`
69
+ - `mcp__flywheel__flywheel_get_artifact`
70
+ - `mcp__flywheel__flywheel_get_artifact_preview`
71
+ - `mcp__flywheel__flywheel_prepare_artifact_uploads`
72
+ - `mcp__flywheel__flywheel_finalize_artifact_uploads`
73
+ - `mcp__flywheel__flywheel_set_artifact_note`
74
+ - `mcp__flywheel__flywheel_delete_artifact`
75
+
76
+ Common artifact types include:
77
+ `text`, `table`, `json`, `image`, `banner`, `html`, `plotly_html`, `vega`,
78
+ `checkpoint`, and `diff_carousel`.
79
+
80
+ ### Export and Import
81
+
82
+ - `mcp__flywheel__flywheel_export_subgraph`
83
+ - `mcp__flywheel__flywheel_import_subgraph`
84
+ - `mcp__flywheel__flywheel_export_summary`
85
+ - `mcp__flywheel__flywheel_export_summary_stream`
86
+ - `mcp__flywheel__flywheel_export_summary_pdf`
87
+ - `mcp__flywheel__flywheel_export_summary_render_pdf`
88
+
89
+ ### Executions
90
+
91
+ - `mcp__flywheel__flywheel_launch_execution`
92
+ - `mcp__flywheel__flywheel_list_executions`
93
+ - `mcp__flywheel__flywheel_terminate_execution`
94
+
95
+ ### Managed Compute
96
+
97
+ - `mcp__flywheel__flywheel_approval_session_heartbeat`
98
+ - `mcp__flywheel__flywheel_list_approval_sessions`
99
+ - `mcp__flywheel__flywheel_expire_approval_session`
100
+ - `mcp__flywheel__flywheel_request_compute_grant_approval`
101
+ - `mcp__flywheel__flywheel_list_compute_grants`
102
+ - `mcp__flywheel__flywheel_compute_list_options`
103
+ - `mcp__flywheel__flywheel_compute_acquire`
104
+ - `mcp__flywheel__flywheel_compute_status`
105
+ - `mcp__flywheel__flywheel_compute_connection`
106
+ - `mcp__flywheel__flywheel_compute_release`
107
+ - `mcp__flywheel__flywheel_compute_release_all`
108
+
109
+ ### Campaign Budgets (Organizer Flows)
110
+
111
+ - `mcp__flywheel__flywheel_list_campaign_budgets`
112
+ - `mcp__flywheel__flywheel_create_campaign_budget`
113
+ - `mcp__flywheel__flywheel_update_campaign_budget`
114
+ - `mcp__flywheel__flywheel_revoke_campaign_budget`
115
+
116
+ ### Migration Helpers
117
+
118
+ Some installations may expose migration-only helper tools with hashed names.
119
+ Treat these as specialized one-off tools, not part of day-to-day research
120
+ workflows.
121
+
122
+ ## Practical Tool Sequences
123
+
124
+ ### Insight Node Flow
125
+
126
+ 1. `mcp__flywheel__flywheel_stage_node_create`
127
+ 2. `mcp__flywheel__flywheel_stage_node_update`
128
+ 3. `mcp__flywheel__flywheel_commit_node`
129
+
130
+ ### Empirical Node With Artifacts
131
+
132
+ 1. `mcp__flywheel__flywheel_stage_node_create`
133
+ 2. `mcp__flywheel__flywheel_stage_node_update`
134
+ 3. Run experiment or compute steps
135
+ 4. `mcp__flywheel__flywheel_prepare_artifact_uploads`
136
+ 5. Upload artifact bytes to signed URLs
137
+ 6. `mcp__flywheel__flywheel_finalize_artifact_uploads`
138
+ 7. `mcp__flywheel__flywheel_commit_node`
139
+
140
+ ### Managed Compute Flow
141
+
142
+ 1. `mcp__flywheel__flywheel_approval_session_heartbeat`
143
+ 2. `mcp__flywheel__flywheel_request_compute_grant_approval`
144
+ 3. `mcp__flywheel__flywheel_list_compute_grants` (if needed)
145
+ 4. `mcp__flywheel__flywheel_compute_acquire`
146
+ 5. `mcp__flywheel__flywheel_compute_status` until ready
147
+ 6. `mcp__flywheel__flywheel_compute_connection`
148
+ 7. `mcp__flywheel__flywheel_compute_release` (or `..._release_all`)
149
+
150
+ ### Share a Graph With Collaborators
151
+
152
+ 1. `mcp__flywheel__flywheel_get_node_sharing`
153
+ 2. `mcp__flywheel__flywheel_set_sharing_for_node` (or `..._for_nodes`)
154
+ 3. `mcp__flywheel__flywheel_export_summary` or `..._export_subgraph` for handoff
155
+
156
+ ## Safety Notes
157
+
158
+ - Prefer `get_contract` before implementing strict assumptions in automation.
159
+ - Avoid call-order assumptions not mandated by contract.
160
+ - Keep checks bounded: list/read first, then mutate only the intended nodes.