@paradigma-inc/flywheel 0.1.111 → 0.1.134
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/README.md +79 -13
- package/package.json +14 -6
- package/skills/flywheel/SKILL.md +9 -6
- package/skills/flywheel/example-workflows/organizing-exploring-and-iterating-on-a-research-topic.md +38 -46
- package/skills/flywheel/example-workflows/reproducing-papers-on-a-budget.md +34 -36
- package/skills/flywheel/getting-started/flywheel-quickstart.md +2 -5
- package/skills/flywheel/getting-started/flywheel-tutorial-overview.md +1 -1
- package/skills/flywheel/references/INTERFACES.md +2 -2
- package/skills/flywheel/references/experiment-design-protocol.md +32 -25
- package/skills/flywheel/references/flywheel-cli-tool-map.md +120 -76
- package/skills/flywheel/references/flywheel-mcp-tool-map.md +42 -32
- package/skills/flywheel/setting-up-flywheel/claude-code-cli-installation.md +1 -1
- package/skills/flywheel/setting-up-flywheel/codex-cli-installation.md +1 -1
- package/skills/flywheel/setting-up-flywheel/how-can-i-get-an-authorized-client_id-for-the-oauth-flow.md +12 -4
- package/skills/flywheel/setting-up-flywheel/installation-overview.md +2 -6
- package/skills/flywheel/setting-up-flywheel/other-hosts-installation.md +53 -26
- package/skills/flywheel/setting-up-flywheel/updating-flywheel-mcp.md +34 -11
- package/skills/flywheel-auto/SKILL.md +40 -23
- package/skills/flywheel-auto/evals/evals.json +1 -1
- package/skills/flywheel-auto/references/INTERFACES.md +2 -2
- package/skills/flywheel-auto/references/experiment-design-protocol.md +31 -23
- package/skills/flywheel-auto/references/flywheel-cli-tool-map.md +172 -127
- package/skills/flywheel-auto/references/flywheel-mcp-tool-map.md +22 -24
- package/skills/flywheel-lookahead/SKILL.md +47 -28
- package/skills/flywheel-lookahead/agents/openai.yaml +1 -1
- package/skills/flywheel-lookahead/evals/evals.json +6 -6
- package/skills/flywheel-lookahead/references/INTERFACES.md +2 -2
- package/skills/flywheel-lookahead/references/flywheel-cli-tool-map.md +172 -127
- package/skills/flywheel-lookahead/references/flywheel-mcp-tool-map.md +22 -24
- package/skills/flywheel-prove/SKILL.md +2 -2
- package/skills/flywheel-prove/references/workflow.md +21 -2
- package/skills/flywheel-reproduce/SKILL.md +39 -19
- package/skills/flywheel-reproduce/evals/evals.json +1 -1
- package/skills/flywheel-reproduce/references/INTERFACES.md +2 -2
- package/skills/flywheel-reproduce/references/experiment-design-protocol.md +31 -23
- package/skills/flywheel-reproduce/references/flywheel-cli-tool-map.md +172 -127
- package/skills/flywheel-reproduce/references/flywheel-mcp-tool-map.md +22 -24
- package/skills/flywheel-to-graph/SKILL.md +37 -17
- package/skills/flywheel-to-graph/references/INTERFACES.md +2 -2
- package/skills/flywheel-to-graph/references/flywheel-cli-tool-map.md +172 -127
- package/skills/flywheel-to-graph/references/flywheel-mcp-tool-map.md +22 -24
- package/skills/flywheel-tree/references/workflow.md +6 -37
- package/src/cli.mjs +1145 -1141
- package/src/mcp-writer.mjs +413 -435
- package/src/public-command-metadata.mjs +28 -5
- package/src/runtime/delegate.mjs +2 -19
- package/src/runtime/required-runtime-commands.json +83 -28
- package/src/runtime/runtime-config.mjs +39 -60
- package/src/runtime/vendor/flywheel-cli-dist/auth/credentials.js +330 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/credentials.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/login.js +90 -139
- package/src/runtime/vendor/flywheel-cli-dist/auth/login.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/auth/profiles.js +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/auth/profiles.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/auth/secure-write.js +116 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/secure-write.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/_browser-handoff.js +36 -14
- package/src/runtime/vendor/flywheel-cli-dist/commands/_browser-handoff.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/_open-url.js +15 -6
- package/src/runtime/vendor/flywheel-cli-dist/commands/_open-url.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-create.js +256 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-create.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-delete.js +11 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-delete.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-login.js +84 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-login.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-revoke-api-key.js +17 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-revoke-api-key.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/aliases.js +3 -7
- package/src/runtime/vendor/flywheel-cli-dist/commands/aliases.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-credentials-clear.js +12 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-credentials-clear.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-credentials-set.js +29 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-credentials-set.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-login.js +12 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-login.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-status.js +46 -10
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-status.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/env.js +17 -40
- package/src/runtime/vendor/flywheel-cli-dist/commands/env.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/graph-operation-resources.js +305 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/graph-operation-resources.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/graph-operation-support.js +72 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/graph-operation-support.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/graph-operation.js +286 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/graph-operation.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/help-metadata.js +30 -5
- package/src/runtime/vendor/flywheel-cli-dist/commands/help-metadata.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/help.js +27 -12
- package/src/runtime/vendor/flywheel-cli-dist/commands/help.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/hosted-commit-replay.js +284 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/hosted-commit-replay.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/hosted-graph.js +169 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/hosted-graph.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/hosted-lineage-list.js +13 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/hosted-lineage-list.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/hosted-repository-snapshot.js +227 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/hosted-repository-snapshot.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/index.js +239 -263
- package/src/runtime/vendor/flywheel-cli-dist/commands/index.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/node-create-schema.js +25 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/node-create-schema.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-list.js +11 -9
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-list.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-set.js +38 -45
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-set.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-show.js +14 -17
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-show.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-unset.js +13 -8
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-unset.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/admin.js +237 -66
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/admin.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/auth.js +9 -9
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/auth.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/hosted.js +76 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/hosted.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/lifecycle.js +4 -138
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/lifecycle.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/profile.js +8 -13
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/profile.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/repository.js +362 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/repository.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry.js +45 -183
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/repository-edit.js +47 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/repository-edit.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/repository-operation.js +181 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/repository-operation.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/repository-output.js +163 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/repository-output.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/repository-projection.js +79 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/repository-projection.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/repository-selection.js +80 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/repository-selection.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/retired-command-names.js +78 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/retired-command-names.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/types.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/usage-spec.js +3 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/usage-spec.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/config/index.js +5 -0
- package/src/runtime/vendor/flywheel-cli-dist/config/index.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/config/io.js +139 -0
- package/src/runtime/vendor/flywheel-cli-dist/config/io.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/config/migration.js +299 -0
- package/src/runtime/vendor/flywheel-cli-dist/config/migration.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/config/model.js +214 -0
- package/src/runtime/vendor/flywheel-cli-dist/config/model.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/config/path.js +30 -0
- package/src/runtime/vendor/flywheel-cli-dist/config/path.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/credential-output.js +29 -0
- package/src/runtime/vendor/flywheel-cli-dist/credential-output.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/errors.js +1 -16
- package/src/runtime/vendor/flywheel-cli-dist/errors.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/generatedProductTelemetryContract.js +3 -3
- package/src/runtime/vendor/flywheel-cli-dist/generatedProductTelemetryContract.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/grammar/globals.js +19 -9
- package/src/runtime/vendor/flywheel-cli-dist/grammar/globals.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/grammar/parse.js +33 -4
- package/src/runtime/vendor/flywheel-cli-dist/grammar/parse.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/http/client.js +322 -302
- package/src/runtime/vendor/flywheel-cli-dist/http/client.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/http/debug.js +1 -21
- package/src/runtime/vendor/flywheel-cli-dist/http/debug.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/http/retry.js +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/http/retry.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/local/adapter.js +244 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/adapter.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/errors.js +7 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/errors.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/history.js +35 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/history.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/invariants.js +42 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/invariants.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/models/artifact-properties.js +179 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/models/artifact-properties.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/models/commits.js +152 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/models/commits.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/models/constants.js +71 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/models/constants.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/models/encoding.js +73 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/models/encoding.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/models/imported-artifact-properties.js +82 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/models/imported-artifact-properties.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/models/operations.js +345 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/models/operations.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/models/tags.js +57 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/models/tags.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/rebase/conflicts.js +149 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/rebase/conflicts.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/rebase/context.js +115 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/rebase/context.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/rebase/keys.js +44 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/rebase/keys.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/rebase/pull.js +159 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/rebase/pull.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/rebase/replay.js +346 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/rebase/replay.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/rebase/resolve.js +37 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/rebase/resolve.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/revert/inverses.js +203 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/revert/inverses.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/revert/plan.js +207 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/revert/plan.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/revert/tag-inverses.js +109 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/revert/tag-inverses.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/service/commit.js +61 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/service/commit.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/service/projection.js +46 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/service/projection.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/service/revert.js +203 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/service/revert.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/service/staging.js +44 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/service/staging.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/service/writes.js +188 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/service/writes.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/sync/cursors.js +54 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/sync/cursors.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/sync/local-pull.js +25 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/sync/local-pull.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/sync-models.js +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/domain/sync-models.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/fs/native.js +7 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/fs/native.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/fs/state.js +129 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/fs/state.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/fs/writer-lock.js +277 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/fs/writer-lock.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/bootstrap.js +183 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/bootstrap.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/context.js +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/context.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/dispatch.js +121 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/dispatch.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/doctor.js +16 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/doctor.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/identity.js +72 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/identity.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/conflicts.js +59 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/conflicts.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/core.js +125 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/core.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/history.js +129 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/history.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/index.js +31 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/index.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/maintenance.js +49 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/maintenance.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/projections.js +30 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/projections.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/shared.js +12 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/operations/shared.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/platform.js +18 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/platform.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/projection.js +125 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/projection.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/remote/clone.js +37 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/remote/clone.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/remote/pull.js +44 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/remote/pull.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/remote/purge.js +58 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/remote/purge.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/remote/push.js +118 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/remote/push.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/remote/transport.js +277 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/runtime/remote/transport.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/apply.js +132 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/apply.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/backup/archive.js +372 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/backup/archive.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/backup/backup.js +210 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/backup/backup.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/backup/restore.js +278 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/backup/restore.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/backup/retained-directory.js +192 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/backup/retained-directory.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/commits.js +114 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/commits.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/contract.js +65 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/contract.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/diagnostics-worker.js +145 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/diagnostics-worker.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/diagnostics.js +218 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/diagnostics.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/gc.js +71 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/gc.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/history-validation.js +298 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/history-validation.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/latest-values.js +121 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/latest-values.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/migrate.js +69 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/migrate.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/migration/provenance.js +49 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/migration/provenance.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/migration/steps.js +424 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/migration/steps.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/migration/versions.js +10 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/migration/versions.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/migrations/001_initial.sql +319 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/migrations/002_staged_latest_values.sql +8 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/migrations/003_remove_cli_editing_lease.sql +21 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/migrations/004_hosted_association.sql +7 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/migrations/005_artifact_properties.sql +68 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/migrations.js +12 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/migrations.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/objects.js +410 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/objects.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/projection/apply.js +77 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/projection/apply.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/projection/artifacts.js +240 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/projection/artifacts.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/projection/nodes.js +127 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/projection/nodes.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/projection/relations.js +107 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/projection/relations.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/projection/rules.js +80 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/projection/rules.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/projection/tags.js +219 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/projection/tags.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/snapshot/hosted.js +164 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/snapshot/hosted.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/snapshot/read.js +20 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/snapshot/read.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/snapshot/replace.js +41 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/snapshot/replace.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/snapshot/schema.js +22 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/snapshot/schema.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/snapshot/validate.js +188 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/snapshot/validate.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/snapshot.js +5 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/snapshot.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sqlite/connection.js +214 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sqlite/connection.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sqlite/errors.js +4 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sqlite/errors.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sqlite/rows.js +44 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sqlite/rows.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sqlite/schema.js +38 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sqlite/schema.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sqlite/store.js +284 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sqlite/store.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sqlite/verify.js +133 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sqlite/verify.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sync-commits.js +98 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sync-commits.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sync.js +161 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/sync.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/workspace-state.js +97 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/workspace-state.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/workspace.js +69 -0
- package/src/runtime/vendor/flywheel-cli-dist/local/store/workspace.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/main.js +651 -376
- package/src/runtime/vendor/flywheel-cli-dist/main.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/output/format.js +18 -11
- package/src/runtime/vendor/flywheel-cli-dist/output/format.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/prebuilds/darwin-arm64/node.napi.node +0 -0
- package/src/runtime/vendor/flywheel-cli-dist/prebuilds/darwin-x64/node.napi.node +0 -0
- package/src/runtime/vendor/flywheel-cli-dist/prebuilds/linux-arm64/node.napi.glibc.node +0 -0
- package/src/runtime/vendor/flywheel-cli-dist/prebuilds/linux-arm64/node.napi.musl.node +0 -0
- package/src/runtime/vendor/flywheel-cli-dist/prebuilds/linux-x64/node.napi.glibc.node +0 -0
- package/src/runtime/vendor/flywheel-cli-dist/prebuilds/linux-x64/node.napi.musl.node +0 -0
- package/src/runtime/vendor/manifest.json +252 -254
- package/src/setup/command.mjs +5 -0
- package/src/setup/io/patchers/json.mjs +1 -1
- package/src/setup/io/patchers/toml.mjs +3 -1
- package/src/setup/io/patchers/yaml.mjs +1 -1
- package/src/setup/modes/cli.mjs +76 -7
- package/src/setup/modes/mcp-command.mjs +802 -793
- package/src/setup/modes/mcp.mjs +7 -3
- package/src/setup/shared/prior-mode-detect.mjs +18 -21
- package/src/setup/test-seams.mjs +25 -0
- package/src/setup-auth.mjs +76 -10
- package/src/toml-lines.mjs +52 -0
- package/src/unified-cli.mjs +31 -16
- package/skills/flywheel-llm-proof-paper/scripts/__pycache__/check_paper.cpython-312.pyc +0 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/active-key-id.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/auth/baseurl.d.ts +0 -35
- package/src/runtime/vendor/flywheel-cli-dist/auth/config.d.ts +0 -34
- package/src/runtime/vendor/flywheel-cli-dist/auth/config.js +0 -92
- package/src/runtime/vendor/flywheel-cli-dist/auth/config.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/auth/fingerprint.d.ts +0 -5
- package/src/runtime/vendor/flywheel-cli-dist/auth/keychain.d.ts +0 -4
- package/src/runtime/vendor/flywheel-cli-dist/auth/keychain.js +0 -31
- package/src/runtime/vendor/flywheel-cli-dist/auth/keychain.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/auth/login.d.ts +0 -24
- package/src/runtime/vendor/flywheel-cli-dist/auth/profile.d.ts +0 -15
- package/src/runtime/vendor/flywheel-cli-dist/auth/profile.js +0 -150
- package/src/runtime/vendor/flywheel-cli-dist/auth/profile.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/auth/profiles.d.ts +0 -27
- package/src/runtime/vendor/flywheel-cli-dist/commands/_admin-auth.d.ts +0 -27
- package/src/runtime/vendor/flywheel-cli-dist/commands/_artifacts-upload-helpers.d.ts +0 -32
- package/src/runtime/vendor/flywheel-cli-dist/commands/_artifacts-upload-helpers.js +0 -213
- package/src/runtime/vendor/flywheel-cli-dist/commands/_artifacts-upload-helpers.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/_browser-handoff.d.ts +0 -21
- package/src/runtime/vendor/flywheel-cli-dist/commands/_open-url.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/_secret-param.d.ts +0 -7
- package/src/runtime/vendor/flywheel-cli-dist/commands/_stream-file-out.d.ts +0 -39
- package/src/runtime/vendor/flywheel-cli-dist/commands/_stream-writer.d.ts +0 -34
- package/src/runtime/vendor/flywheel-cli-dist/commands/_wait-polling.d.ts +0 -50
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-detach.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-emails-add.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-emails-remove.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-emails-set-primary.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-get.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-merge-preview.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-merge-proof.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-merge.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-compute-policy-get.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-compute-policy-set.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-graphs-export-stream.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-graphs-export.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-graphs-list.d.ts +0 -4
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-nodes-audit-list.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/aliases.d.ts +0 -13
- package/src/runtime/vendor/flywheel-cli-dist/commands/api-keys-create.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/api-keys-delete.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/api-keys-list.d.ts +0 -18
- package/src/runtime/vendor/flywheel-cli-dist/commands/api-keys-rotate.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/approval-sessions-expire.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/approval-sessions-heartbeat.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/approval-sessions-list.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-delete-bulk.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-delete-bulk.js +0 -22
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-delete-bulk.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-delete.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-delete.js +0 -8
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-delete.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-get.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-list.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-note-set.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-note-set.js +0 -9
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-note-set.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-upload-finalize.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-upload-finalize.js +0 -7
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-upload-finalize.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-upload-prepare.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-upload-prepare.js +0 -15
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-upload-prepare.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-upload.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-upload.js +0 -5
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-upload.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-keychain-clear.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-keychain-clear.js +0 -8
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-keychain-clear.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-keychain-set.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-keychain-set.js +0 -30
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-keychain-set.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-login.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-mode.d.ts +0 -4
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-status.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/blobs-get.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/campaign-budgets-create.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/campaign-budgets-list.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/campaign-budgets-revoke.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/campaign-budgets-update.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/campaign-snapshot.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-acquire.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-budgets.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-connection.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-funding.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-grants-list.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-grants-request-approval.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-options.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-release-all.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-release.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-status.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-balance.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-billing-portal.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-purchase.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-referral-claim.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-referral.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-subscribe.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-subscription.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-transactions.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-usage.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/destructive-confirmation.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/enums.d.ts +0 -22
- package/src/runtime/vendor/flywheel-cli-dist/commands/env.d.ts +0 -8
- package/src/runtime/vendor/flywheel-cli-dist/commands/executions-launch.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/executions-list.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/executions-terminate.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/export-history.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/export-subgraph.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/export-summary-pdf.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/export-summary-render-pdf.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/export-summary-stream.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/export-summary.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/feedback-create.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/files-list.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/github-disconnect.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/github-link.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/github-refresh-repos.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/github-status.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/graph-get.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/handler-factory.d.ts +0 -22
- package/src/runtime/vendor/flywheel-cli-dist/commands/help-format.d.ts +0 -31
- package/src/runtime/vendor/flywheel-cli-dist/commands/help-metadata.d.ts +0 -36
- package/src/runtime/vendor/flywheel-cli-dist/commands/help.d.ts +0 -17
- package/src/runtime/vendor/flywheel-cli-dist/commands/hooks-create.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/hooks-delete.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/hooks-list.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/hooks-runs-list.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/hooks-secrets-create.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/hooks-secrets-delete.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/hooks-secrets-list.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/hooks-secrets-update.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/hooks-set-enabled.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/hooks-update.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/import-subgraph.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/index.d.ts +0 -23
- package/src/runtime/vendor/flywheel-cli-dist/commands/integrations-huggingface-remove.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/integrations-huggingface-set.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/integrations-status.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/integrations-wandb-remove.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/integrations-wandb-set.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/machines-list.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-add-parent.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-add-parent.js +0 -15
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-add-parent.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-branch.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-branch.js +0 -10
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-branch.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-children.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-children.js +0 -8
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-children.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-commit-new.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-commit-new.js +0 -6
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-commit-new.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-commit.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-commit.js +0 -7
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-commit.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-create.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-create.js +0 -6
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-create.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-delete-bulk.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-delete-bulk.js +0 -16
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-delete-bulk.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-delete.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-delete.js +0 -11
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-delete.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-files.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-get.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-list.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-merge.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-merge.js +0 -33
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-merge.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-parents.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-parents.js +0 -8
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-parents.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-remove-parent.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-remove-parent.js +0 -15
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-remove-parent.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-render-ancestry.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-render-summary.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-render-tree.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-resolve-slug.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-sharing-get.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-sharing-set-bulk.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-sharing-set.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-sharing-summaries.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-stage-lease-acquire.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-stage-lease-heartbeat.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-stage-lease-release.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-list.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-set.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-show.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-unset.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/account.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/admin.d.ts +0 -8
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/api-keys.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/approval.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/artifacts.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/artifacts.js +0 -140
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/artifacts.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/auth.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/budgets.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/compute.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/credits.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/env.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/executions.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/export.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/github.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/graph.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/hooks.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/integrations.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/lifecycle.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/profile.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/resources.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/sharing.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/tagging.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/tagging.js +0 -98
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/tagging.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/updates.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry.d.ts +0 -27
- package/src/runtime/vendor/flywheel-cli-dist/commands/remote-artifacts-refresh.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/remote-artifacts-resolve.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-assign.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-assign.js +0 -25
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-assign.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-create.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-create.js +0 -25
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-create.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-delete.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-delete.js +0 -11
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-delete.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-update.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-update.js +0 -28
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-update.js.map +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/types.d.ts +0 -30
- package/src/runtime/vendor/flywheel-cli-dist/commands/updates-hide-all-active.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/updates-hide.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/updates-list.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/usage-spec.d.ts +0 -6
- package/src/runtime/vendor/flywheel-cli-dist/commands/utils.d.ts +0 -11
- package/src/runtime/vendor/flywheel-cli-dist/errors.d.ts +0 -86
- package/src/runtime/vendor/flywheel-cli-dist/exit-codes.d.ts +0 -8
- package/src/runtime/vendor/flywheel-cli-dist/generatedFeedbackContract.d.ts +0 -41
- package/src/runtime/vendor/flywheel-cli-dist/generatedProductTelemetryContract.d.ts +0 -13
- package/src/runtime/vendor/flywheel-cli-dist/grammar/globals.d.ts +0 -26
- package/src/runtime/vendor/flywheel-cli-dist/grammar/parse.d.ts +0 -17
- package/src/runtime/vendor/flywheel-cli-dist/http/client.d.ts +0 -91
- package/src/runtime/vendor/flywheel-cli-dist/http/debug.d.ts +0 -5
- package/src/runtime/vendor/flywheel-cli-dist/http/poll.d.ts +0 -18
- package/src/runtime/vendor/flywheel-cli-dist/http/retry.d.ts +0 -30
- package/src/runtime/vendor/flywheel-cli-dist/main.d.ts +0 -33
- package/src/runtime/vendor/flywheel-cli-dist/output/format.d.ts +0 -9
- package/src/runtime/vendor/flywheel-cli-dist/runtime-entry.d.ts +0 -1
- package/src/runtime/vendor/flywheel-cli-dist/version.d.ts +0 -3
- package/src/secure-write.mjs +0 -43
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ curl -fsSL https://flywheel.paradigma.inc/install | sh
|
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
Windows users running their AI coding host from WSL should open the WSL distro,
|
|
18
|
-
install Node.js
|
|
18
|
+
install Node.js 24.15+ within 24.x or 25.7+ and npm inside WSL, and run the same installer there.
|
|
19
19
|
Flywheel then writes WSL-side config, so launch the host from that same WSL
|
|
20
20
|
environment. If browser auth does not open from WSL, copy the printed approval
|
|
21
21
|
URL and setup code into your Windows browser.
|
|
@@ -202,22 +202,26 @@ Do not pass backend Fly machine hostnames (for example `*.fly.dev`) to
|
|
|
202
202
|
|
|
203
203
|
## Non-Interactive Flows
|
|
204
204
|
|
|
205
|
+
These examples select Codex explicitly. `npx --yes` confirms package execution;
|
|
206
|
+
the separate setup `--yes` disables setup prompts. Device authentication still
|
|
207
|
+
requires browser approval.
|
|
208
|
+
|
|
205
209
|
MCP setup (without bundled skill installation):
|
|
206
210
|
|
|
207
211
|
```bash
|
|
208
|
-
npx --yes @paradigma-inc/flywheel setup --mode mcp --skip-skill
|
|
212
|
+
npx --yes @paradigma-inc/flywheel setup --mode mcp --codex --yes --skip-skill
|
|
209
213
|
```
|
|
210
214
|
|
|
211
215
|
MCP setup (with bundled skill installation):
|
|
212
216
|
|
|
213
217
|
```bash
|
|
214
|
-
npx --yes @paradigma-inc/flywheel setup --mode mcp --install-skill
|
|
218
|
+
npx --yes @paradigma-inc/flywheel setup --mode mcp --codex --yes --install-skill
|
|
215
219
|
```
|
|
216
220
|
|
|
217
221
|
CLI-only bundled skill setup:
|
|
218
222
|
|
|
219
223
|
```bash
|
|
220
|
-
npx --yes @paradigma-inc/flywheel setup --mode cli
|
|
224
|
+
npx --yes @paradigma-inc/flywheel setup --mode cli --codex --yes
|
|
221
225
|
```
|
|
222
226
|
|
|
223
227
|
`--install-skill` and `--skip-skill` are mutually exclusive.
|
|
@@ -239,27 +243,80 @@ Remote/headless example:
|
|
|
239
243
|
```bash
|
|
240
244
|
npx --yes @paradigma-inc/flywheel setup \
|
|
241
245
|
--mode mcp \
|
|
246
|
+
--codex --yes \
|
|
242
247
|
--auth-mode device \
|
|
243
248
|
--skip-skill \
|
|
244
249
|
--base-url https://flywheel.paradigma.inc
|
|
245
250
|
```
|
|
246
251
|
|
|
252
|
+
For an authorized controller that already has an API key, the installed
|
|
253
|
+
`flywheel setup --mode <cli|mcp> --api-key-stdin` command accepts one private
|
|
254
|
+
stdin stream without browser/device authentication. It rejects terminal input,
|
|
255
|
+
empty or multiline values, surrounding whitespace, more than 4096 bytes, and
|
|
256
|
+
conflicts with `--api-key`, `--oauth`, or an explicit `--auth-mode`. One final LF
|
|
257
|
+
is optional. Do not capture the key in arguments, environment variables, logs,
|
|
258
|
+
or temporary files, and do not pipe it through package-download commands.
|
|
259
|
+
|
|
260
|
+
CLI mode requires a credential-consuming host such as Codex; empty or
|
|
261
|
+
skill-only selections fail rather than leaving the supplied key unused. It
|
|
262
|
+
writes the supplied key to the runtime credential file, not to an OS credential
|
|
263
|
+
store: `$XDG_CONFIG_HOME/flywheel/credentials.json` when XDG is absolute,
|
|
264
|
+
otherwise `$HOME/.config/flywheel/credentials.json` on POSIX, or
|
|
265
|
+
`%APPDATA%\Flywheel\credentials.json` on native Windows. The file contains a
|
|
266
|
+
plaintext API key and is private to the user account, but applications running
|
|
267
|
+
as that user can read it; it does not provide Keychain-style per-application
|
|
268
|
+
access controls. File storage does not change the key's server-side expiry,
|
|
269
|
+
permissions, or revocation.
|
|
270
|
+
|
|
271
|
+
CLI login/setup persists the credential before its non-secret runtime TOML. If
|
|
272
|
+
that later TOML save fails, repair the configuration path and reconcile the
|
|
273
|
+
retained credential before retrying; do not expect Flywheel to delete it or
|
|
274
|
+
issue another key automatically.
|
|
275
|
+
|
|
276
|
+
`auth:credentials:clear` removes only its local profile entry; generic
|
|
277
|
+
uninstall retains the credential file and does not revoke the key. Existing
|
|
278
|
+
keychain-only profiles must sign in once per profile (`flywheel auth:login` or
|
|
279
|
+
`flywheel auth:login --env <profile>`); setup never reads or deletes their old
|
|
280
|
+
keychain entries. Stdin-enabled MCP setup supports only Codex in the home
|
|
281
|
+
directory (`--codex`, without `--project` or other hosts). It atomically writes
|
|
282
|
+
its persistent mode-0600 config in an owner-only directory.
|
|
283
|
+
It refuses an existing different credential unless explicitly authorized with
|
|
284
|
+
`--force`. A post-rename durability failure is an uncertain commit: reconcile
|
|
285
|
+
the config and revoke that issued key before retrying. Internal staging
|
|
286
|
+
controllers should follow the `create-flywheel-accounts` and
|
|
287
|
+
`flywheel-installer` operator skills for receipt-based cleanup and installer
|
|
288
|
+
stdin ownership.
|
|
289
|
+
|
|
247
290
|
## Runtime Config Bootstrap
|
|
248
291
|
|
|
249
|
-
`setup --mode
|
|
250
|
-
|
|
251
|
-
etc.) work immediately without manual steps.
|
|
292
|
+
`setup --mode cli` provisions runtime configuration. MCP-only and skill-only
|
|
293
|
+
setup paths leave runtime configuration untouched.
|
|
252
294
|
|
|
253
|
-
On successful authentication,
|
|
295
|
+
On successful CLI-mode authentication, setup writes a versioned TOML config at:
|
|
254
296
|
|
|
255
|
-
- `FLYWHEEL_CLI_CONFIG_PATH` (when set)
|
|
256
|
-
- `$
|
|
297
|
+
- `FLYWHEEL_CLI_CONFIG_PATH` (when set; relative values resolve from the current directory)
|
|
298
|
+
- `$XDG_CONFIG_HOME/flywheel/config.toml` when XDG is absolute
|
|
299
|
+
- `$HOME/.config/flywheel/config.toml` (POSIX fallback)
|
|
300
|
+
- `%APPDATA%\Flywheel\config.toml` (native Windows)
|
|
257
301
|
|
|
258
302
|
The resolved runtime base URL always includes the `/api` suffix
|
|
259
303
|
(for example `https://flywheel.paradigma.inc/api`), matching the runtime
|
|
260
304
|
API mount point. The runtime command surface is documented in
|
|
261
305
|
`project/flywheel-cli/README.md`.
|
|
262
306
|
|
|
307
|
+
Runtime configuration stays in TOML while runtime credentials use the separate
|
|
308
|
+
credential file. `FLYWHEEL_CLI_CONFIG_PATH` changes only the TOML path; it never
|
|
309
|
+
relocates credentials. The [installation guide](../flywheel-docs/content/docs/install.mdx)
|
|
310
|
+
documents the credential schema, legacy migration and partial-state recovery,
|
|
311
|
+
ownership-aware uninstall, and the platform matrix. Native Windows supports
|
|
312
|
+
hosted commands but not local repository commands. Local repositories support
|
|
313
|
+
macOS and Linux on arm64/x64, including WSL and Alpine Linux, using the bundled
|
|
314
|
+
filesystem helper and the installed Node.js runtime.
|
|
315
|
+
|
|
316
|
+
Direct-copy `universal` and `antigravity` setup does not create
|
|
317
|
+
`skills-lock.json`; that file belongs only to hosts installed through the
|
|
318
|
+
`skills` package.
|
|
319
|
+
|
|
263
320
|
## Argument Syntax (Runtime Commands)
|
|
264
321
|
|
|
265
322
|
Runtime commands (`auth:*`, `nodes:*`, `artifacts:*`, `compute:*`,
|
|
@@ -339,9 +396,18 @@ Gemini CLI currently do). On the first MCP tool call the IDE hits
|
|
|
339
396
|
`/mcp-server`, follows the `WWW-Authenticate` hint to
|
|
340
397
|
`/.well-known/oauth-protected-resource`, reads the authorization-server
|
|
341
398
|
metadata advertising `client_id_metadata_document_supported`, and presents
|
|
342
|
-
its public HTTPS Client ID Metadata Document as `client_id`. There is no
|
|
343
|
-
registration endpoint
|
|
344
|
-
|
|
399
|
+
its public HTTPS Client ID Metadata Document as `client_id`. There is no public
|
|
400
|
+
registration endpoint and no private enrollment step. Flywheel validates the
|
|
401
|
+
exact client identity, complete redirect set, selected redirect, PKCE, and
|
|
402
|
+
requested scopes before issuing credentials after authenticated consent.
|
|
403
|
+
|
|
404
|
+
The IDE manages and persists its own access and single-use refresh credentials.
|
|
405
|
+
It should reuse a valid access credential and rotate the refresh credential
|
|
406
|
+
without opening a browser. Flywheel can also skip repeat consent when the same
|
|
407
|
+
user, exact client identity and redirect, active grant, and equal-or-narrower
|
|
408
|
+
scopes still match. A new or changed identity or redirect, scope expansion,
|
|
409
|
+
expiry, revocation, or disconnect requires consent again. No API key ever
|
|
410
|
+
touches the user's filesystem.
|
|
345
411
|
|
|
346
412
|
`--api-key` and `--oauth` are mutually exclusive; passing both produces a
|
|
347
413
|
usage error (`exit 2`).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@paradigma-inc/flywheel",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.134",
|
|
4
4
|
"description": "One-command setup for Flywheel MCP hosts",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -22,13 +22,17 @@
|
|
|
22
22
|
"@inquirer/prompts": "^8.2.0",
|
|
23
23
|
"commander": "^14.0.1",
|
|
24
24
|
"js-yaml": "^4.1.0",
|
|
25
|
-
"
|
|
25
|
+
"node-gyp-build": "4.8.4",
|
|
26
|
+
"open": "^11.0.1",
|
|
26
27
|
"ora": "^9.0.0",
|
|
27
28
|
"picocolors": "^1.1.1",
|
|
28
29
|
"semver": "^7.8.0",
|
|
29
30
|
"skills": "1.4.7",
|
|
30
|
-
"
|
|
31
|
-
"
|
|
31
|
+
"smol-toml": "1.8.0",
|
|
32
|
+
"string-width": "^8.2.2",
|
|
33
|
+
"wrap-ansi": "^10.0.1",
|
|
34
|
+
"yauzl": "3.4.0",
|
|
35
|
+
"yazl": "3.3.1"
|
|
32
36
|
},
|
|
33
37
|
"repository": {
|
|
34
38
|
"type": "git",
|
|
@@ -36,7 +40,11 @@
|
|
|
36
40
|
"directory": "project/flywheel-setup"
|
|
37
41
|
},
|
|
38
42
|
"engines": {
|
|
39
|
-
"node": ">=
|
|
43
|
+
"node": "^24.15.0 || >=25.7.0"
|
|
40
44
|
},
|
|
41
|
-
"license": "UNLICENSED"
|
|
45
|
+
"license": "UNLICENSED",
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"acorn": "^8.18.0",
|
|
48
|
+
"unbash": "file:scripts/vendor/unbash-4.0.10-patched.tgz"
|
|
49
|
+
}
|
|
42
50
|
}
|
package/skills/flywheel/SKILL.md
CHANGED
|
@@ -11,9 +11,9 @@ Use this skill to structure research work and to route setup/support questions t
|
|
|
11
11
|
|
|
12
12
|
Use this skill when the conversation is about any of the following:
|
|
13
13
|
|
|
14
|
-
- planning
|
|
14
|
+
- planning exploratory or empirical work, hypotheses, comparisons, or next-branch decisions
|
|
15
15
|
- running or interpreting empirical work in Flywheel
|
|
16
|
-
-
|
|
16
|
+
- recording research context with node titles, content, summaries, tags, or artifacts
|
|
17
17
|
- setting up, updating, authenticating, or troubleshooting Flywheel MCP
|
|
18
18
|
- configuring hooks, hook secrets, and hook-run monitoring
|
|
19
19
|
- managed compute, local hardware, campaigns, or Flywheel Web UI navigation
|
|
@@ -24,12 +24,15 @@ If the request is ambiguous, default to experiment-design guidance before platfo
|
|
|
24
24
|
|
|
25
25
|
This skill supports both Flywheel install modes:
|
|
26
26
|
|
|
27
|
-
- **`--mode mcp` install
|
|
28
|
-
- **`--mode
|
|
27
|
+
- **`--mode mcp` install on an MCP-capable host:** setup writes host-specific MCP configuration; route via [references/flywheel-mcp-tool-map.md](references/flywheel-mcp-tool-map.md) and use the host's `flywheel_<tool>` surface.
|
|
28
|
+
- **`--mode mcp` install on a skill-only host:** setup skips MCP configuration, so no `flywheel_<tool>` surface exists. Route work through a separately configured CLI, subject to the CLI caveat below.
|
|
29
|
+
- **`--mode cli` install**: route via [references/flywheel-cli-tool-map.md](references/flywheel-cli-tool-map.md); direct CLI calls take the form `flywheel <command>` (for example, `flywheel hosted:node:set`). `setup --mode cli` installs or refreshes bundled skills and writes CLI runtime TOML; it does not write an MCP host entry. If every selected host is skill-only (for example, Universal or Antigravity), setup installs only skills and skips CLI authentication and runtime configuration; do not assume the CLI is configured.
|
|
29
30
|
|
|
30
|
-
|
|
31
|
+
Running setup through `npx` configures settings and skills; it does not install a persistent `flywheel` binary. If `flywheel` is not on `PATH`, replace `flywheel` with `npx --yes @paradigma-inc/flywheel` in every CLI example below and in the linked tool map.
|
|
32
|
+
|
|
33
|
+
For CLI writes, choose the destination explicitly. Use `repo:` only for an explicit `--repo` repository, an explicitly requested `--personal` repository, or a repository found from the current directory. Local `repo:` mutations stage changes; `repo:commit` creates the local commit; `repo:push` publishes only when requested. If no valid local repository is selected, stop and ask rather than falling back to hosted storage. For an identified hosted graph, use `hosted:` mutations with `--repository-id <uuid>`; each posts a hosted commit immediately. For MCP, keep the staged body caller-local: create nodes with `flywheel_commit_new_node` using `local_temp_node_id`, `parent_ids`, and the staged payload; update existing nodes by reading, acquiring a stage lease with the observed committed revision, then calling `flywheel_commit_node` with `stage_session_id`, `base_committed_revision`, and the full staged payload. Reconcile a `409` before retrying.
|
|
31
34
|
|
|
32
|
-
|
|
35
|
+
When switching an already-configured host between modes, rerun setup with `--force` (or uninstall first) so prior-mode artifacts are reconciled explicitly.
|
|
33
36
|
|
|
34
37
|
## Workflow
|
|
35
38
|
|
package/skills/flywheel/example-workflows/organizing-exploring-and-iterating-on-a-research-topic.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Organizing, Exploring, and Iterating on a Research Topic
|
|
2
2
|
|
|
3
|
-
> The tool lists below
|
|
3
|
+
> The tool lists below use canonical Flywheel MCP names from the current [Flywheel MCP tool map](../references/flywheel-mcp-tool-map.md). Host wrappers vary; use the exposed canonical tool. `flywheel_commit_new_node` takes caller-local `local_temp_node_id`, `parent_ids`, and a staged payload without a lease. Every `flywheel_commit_node` reference means the existing-node flow: read, acquire a lease with a caller `stage_session_id` and observed committed revision, then commit the full staged payload with `stage_session_id` and `base_committed_revision`.
|
|
4
4
|
|
|
5
5
|
## Image Description
|
|
6
6
|
|
|
@@ -34,11 +34,10 @@ A clean Flywheel graph screenshot on a white canvas. Near the upper-right is a b
|
|
|
34
34
|
|
|
35
35
|
### Likely Flywheel MCP tools for this step
|
|
36
36
|
|
|
37
|
-
- `
|
|
38
|
-
- `
|
|
39
|
-
- `
|
|
40
|
-
- `
|
|
41
|
-
- `mcp__flywheel__flywheel_commit_node` to persist the initial structure.
|
|
37
|
+
- `flywheel_commit_new_node` to create the root `scheduled muon` graph.
|
|
38
|
+
- `flywheel_commit_node` to describe the overall research question and first branch.
|
|
39
|
+
- `flywheel_branch_node` to split the root into experiment branches.
|
|
40
|
+
- `flywheel_get_node_tree` to inspect the DAG as it starts to fill out.
|
|
42
41
|
|
|
43
42
|
---
|
|
44
43
|
|
|
@@ -54,9 +53,8 @@ as you all know, liches are known for obsessing over muon. i make no exception.
|
|
|
54
53
|
|
|
55
54
|
### Likely Flywheel MCP tools for this step
|
|
56
55
|
|
|
57
|
-
- `
|
|
58
|
-
- `
|
|
59
|
-
- `mcp__flywheel__flywheel_commit_node` to preserve that observation as a traceable node.
|
|
56
|
+
- `flywheel_branch_node` to open an insight branch for the core muon observation.
|
|
57
|
+
- `flywheel_commit_node` to record the singular-value flattening concern as an explicit insight or hypothesis.
|
|
60
58
|
|
|
61
59
|
---
|
|
62
60
|
|
|
@@ -72,9 +70,8 @@ in my mind, there must have been a "softer" way to interpolate between nesterov
|
|
|
72
70
|
|
|
73
71
|
### Likely Flywheel MCP tools for this step
|
|
74
72
|
|
|
75
|
-
- `
|
|
76
|
-
- `
|
|
77
|
-
- `mcp__flywheel__flywheel_commit_node` to save the refined hypothesis before experimenting.
|
|
73
|
+
- `flywheel_branch_node` to fork a new hypothesis branch from the original muon observation.
|
|
74
|
+
- `flywheel_commit_node` to capture the "softer interpolation" idea between SGD and muon.
|
|
78
75
|
|
|
79
76
|
---
|
|
80
77
|
|
|
@@ -90,10 +87,9 @@ so, i decided to spin up my MCP host and do a bunch of experiments. as usual, it
|
|
|
90
87
|
|
|
91
88
|
### Likely Flywheel MCP tools for this step
|
|
92
89
|
|
|
93
|
-
- `
|
|
94
|
-
- `
|
|
95
|
-
- `
|
|
96
|
-
- `mcp__flywheel__flywheel_commit_node` to keep the graph auditable as new work is added.
|
|
90
|
+
- `flywheel_commit_new_node` or `flywheel_branch_node` to turn scattered runs into explicit branches instead of an untracked run log.
|
|
91
|
+
- `flywheel_list_nodes` to enumerate existing branches and runs.
|
|
92
|
+
- `flywheel_get_node_tree` to inspect the structure of the experiment graph.
|
|
97
93
|
|
|
98
94
|
---
|
|
99
95
|
|
|
@@ -109,11 +105,10 @@ then, [@thelokasiffers](https://x.com/thelokasiffers) released an early version
|
|
|
109
105
|
|
|
110
106
|
### Likely Flywheel MCP tools for this step
|
|
111
107
|
|
|
112
|
-
- `
|
|
113
|
-
- `
|
|
114
|
-
- `
|
|
115
|
-
- `
|
|
116
|
-
- `mcp__flywheel__flywheel_commit_node` to preserve the graph state.
|
|
108
|
+
- `flywheel_commit_new_node` to create the root node if it did not already exist.
|
|
109
|
+
- `flywheel_branch_node` to fan the work into separate experiment branches.
|
|
110
|
+
- `flywheel_get_node_tree` to inspect the resulting DAG layout.
|
|
111
|
+
- `flywheel_summarize_node_tree` to quickly understand branch progress and outcomes.
|
|
117
112
|
|
|
118
113
|
### Image Description
|
|
119
114
|
|
|
@@ -135,9 +130,8 @@ what i did was pretty simple: i started discussing with the models my intuition:
|
|
|
135
130
|
|
|
136
131
|
### Likely Flywheel MCP tools for this step
|
|
137
132
|
|
|
138
|
-
- `
|
|
139
|
-
- `
|
|
140
|
-
- `mcp__flywheel__flywheel_commit_node` to save the idea before turning it into experiments.
|
|
133
|
+
- `flywheel_branch_node` to create an insight branch for the `US^pV^T` intuition.
|
|
134
|
+
- `flywheel_commit_node` to store the proposed fractional-power formulation.
|
|
141
135
|
|
|
142
136
|
---
|
|
143
137
|
|
|
@@ -153,9 +147,8 @@ then i realized: if we use NS to have an iteration that approximates powers of -
|
|
|
153
147
|
|
|
154
148
|
### Likely Flywheel MCP tools for this step
|
|
155
149
|
|
|
156
|
-
- `
|
|
157
|
-
- `
|
|
158
|
-
- `mcp__flywheel__flywheel_commit_node` to preserve the new line of attack.
|
|
150
|
+
- `flywheel_branch_node` to open a follow-up hypothesis branch around polynomial approximations.
|
|
151
|
+
- `flywheel_commit_node` to record the new approximation strategy.
|
|
159
152
|
|
|
160
153
|
---
|
|
161
154
|
|
|
@@ -171,11 +164,11 @@ at this point i started testing this out, would i get really the right spectra?
|
|
|
171
164
|
|
|
172
165
|
### Likely Flywheel MCP tools for this step
|
|
173
166
|
|
|
174
|
-
- `
|
|
175
|
-
- `
|
|
176
|
-
- `
|
|
177
|
-
- `
|
|
178
|
-
- `
|
|
167
|
+
- `flywheel_branch_node` to create the empirical branch for the spectra sanity check.
|
|
168
|
+
- `flywheel_commit_node` to record the hypothesis and evaluation criteria.
|
|
169
|
+
- `flywheel_request_compute_grant_approval`, `flywheel_compute_acquire`, `flywheel_compute_status`, and `flywheel_compute_connection` to run the experiments on managed compute.
|
|
170
|
+
- `flywheel_prepare_artifact_uploads`, raw upload to the returned signed URLs, and `flywheel_finalize_artifact_uploads` to attach the singular-value plot as an artifact.
|
|
171
|
+
- `flywheel_commit_node` to mark the empirical step as completed.
|
|
179
172
|
|
|
180
173
|
### Image Description
|
|
181
174
|
|
|
@@ -197,9 +190,8 @@ at this point, quite a few things were in question, what would happen if i train
|
|
|
197
190
|
|
|
198
191
|
### Likely Flywheel MCP tools for this step
|
|
199
192
|
|
|
200
|
-
- `
|
|
201
|
-
- `
|
|
202
|
-
- `mcp__flywheel__flywheel_commit_node` to preserve the question before launching more runs.
|
|
193
|
+
- `flywheel_branch_node` to fork a new investigation around schedule design.
|
|
194
|
+
- `flywheel_commit_node` to record the competing schedule hypotheses.
|
|
203
195
|
|
|
204
196
|
---
|
|
205
197
|
|
|
@@ -215,13 +207,13 @@ but which way should we schedule? not clear. is it sgd first or muon first? how
|
|
|
215
207
|
|
|
216
208
|
### Likely Flywheel MCP tools for this step
|
|
217
209
|
|
|
218
|
-
- `
|
|
219
|
-
- `
|
|
220
|
-
- `
|
|
221
|
-
- `
|
|
222
|
-
- `
|
|
223
|
-
- `
|
|
224
|
-
- `
|
|
210
|
+
- `flywheel_branch_node` to split the root into separate schedule and learning-rate branches.
|
|
211
|
+
- `flywheel_commit_node` to encode the hypotheses and sweep definitions.
|
|
212
|
+
- `flywheel_request_compute_grant_approval` and `flywheel_list_compute_grants` to secure spend before launch.
|
|
213
|
+
- `flywheel_compute_acquire`, `flywheel_compute_status`, and `flywheel_compute_connection` to provision GPUs and keep them available to the agent.
|
|
214
|
+
- `flywheel_prepare_artifact_uploads`, raw upload to the returned signed URLs, and `flywheel_finalize_artifact_uploads` to attach result plots and cards as branches finish.
|
|
215
|
+
- `flywheel_get_node_tree` or `flywheel_list_executions` to monitor the graph as the runs progress.
|
|
216
|
+
- `flywheel_commit_node` to finalize each completed empirical branch.
|
|
225
217
|
|
|
226
218
|
### Image Description
|
|
227
219
|
|
|
@@ -249,7 +241,7 @@ i won't spoil for you how this ends. because this will soon be a public graph in
|
|
|
249
241
|
|
|
250
242
|
### Likely Flywheel MCP tools for this step
|
|
251
243
|
|
|
252
|
-
- `
|
|
253
|
-
- `
|
|
254
|
-
- `
|
|
255
|
-
- `
|
|
244
|
+
- `flywheel_get_node_sharing` to inspect the current sharing state before changing it.
|
|
245
|
+
- `flywheel_set_sharing_for_node` or `flywheel_set_sharing_for_nodes` to share the graph with co-authors or make it public.
|
|
246
|
+
- `flywheel_get_node_sharing` again to verify that the sharing settings are correct.
|
|
247
|
+
- `flywheel_export_summary` or `flywheel_export_subgraph` to package the graph for outside review or reuse.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Reproducing Papers on a Budget
|
|
2
2
|
|
|
3
|
-
> The tool lists below
|
|
3
|
+
> The tool lists below use canonical Flywheel MCP names from the current [Flywheel MCP tool map](../references/flywheel-mcp-tool-map.md). Host wrappers vary; use the exposed canonical tool. `flywheel_commit_new_node` takes caller-local `local_temp_node_id`, `parent_ids`, and a staged payload without a lease. Every `flywheel_commit_node` reference means the existing-node flow: read, acquire a lease with a caller `stage_session_id` and observed committed revision, then commit the full staged payload with `stage_session_id` and `base_committed_revision`.
|
|
4
4
|
|
|
5
5
|
## [@tensorqt](https://x.com/tensorqt) · [13 Mar 2026, 9:34 pm](https://x.com/tensorqt/status/2032555892399305171)
|
|
6
6
|
|
|
@@ -8,11 +8,10 @@ A really interesting way of using Flywheel is to reproduce papers on a budget: I
|
|
|
8
8
|
|
|
9
9
|
### Likely Flywheel MCP tools for this step
|
|
10
10
|
|
|
11
|
-
- `
|
|
12
|
-
- `
|
|
13
|
-
- `
|
|
14
|
-
- `
|
|
15
|
-
- `mcp__flywheel__flywheel_commit_node` to persist the planned graph structure.
|
|
11
|
+
- `flywheel_commit_new_node` to create the root reproduction graph or first node for the paper.
|
|
12
|
+
- `flywheel_branch_node` to split the paper into parallel validation branches.
|
|
13
|
+
- `flywheel_commit_node` to capture the paper claim, reproduction plan, and budget constraint.
|
|
14
|
+
- `flywheel_request_compute_grant_approval` to enforce the "$10 max" spend before managed compute starts.
|
|
16
15
|
|
|
17
16
|
### Image Description
|
|
18
17
|
|
|
@@ -38,11 +37,11 @@ The model decides to play it safe: it starts by showing self-attention correlati
|
|
|
38
37
|
|
|
39
38
|
### Likely Flywheel MCP tools for this step
|
|
40
39
|
|
|
41
|
-
- `
|
|
42
|
-
- `
|
|
43
|
-
- `
|
|
44
|
-
- `
|
|
45
|
-
- `
|
|
40
|
+
- `flywheel_branch_node` to open the first empirical branch for the baseline correlation check.
|
|
41
|
+
- `flywheel_commit_node` to record the hypothesis and experiment setup.
|
|
42
|
+
- `flywheel_compute_acquire`, `flywheel_compute_status`, and `flywheel_compute_connection` to provision and use the small A10 GPU.
|
|
43
|
+
- `flywheel_prepare_artifact_uploads`, raw upload to the returned signed URLs, and `flywheel_finalize_artifact_uploads` to attach `attn_similarity_by_layer.png`.
|
|
44
|
+
- `flywheel_commit_node` to mark the step as a completed empirical result.
|
|
46
45
|
|
|
47
46
|
### Image Description
|
|
48
47
|
|
|
@@ -58,11 +57,11 @@ Step two is analogous: orthogonality before and after XSA.
|
|
|
58
57
|
|
|
59
58
|
### Likely Flywheel MCP tools for this step
|
|
60
59
|
|
|
61
|
-
- `
|
|
62
|
-
- `
|
|
63
|
-
- `
|
|
64
|
-
- `
|
|
65
|
-
- `
|
|
60
|
+
- `flywheel_branch_node` to create the next experimental branch.
|
|
61
|
+
- `flywheel_commit_node` to record the orthogonality hypothesis for XSA.
|
|
62
|
+
- `flywheel_compute_acquire`, `flywheel_compute_status`, and `flywheel_compute_connection` to run the projection check.
|
|
63
|
+
- `flywheel_prepare_artifact_uploads`, raw upload to the returned signed URLs, and `flywheel_finalize_artifact_uploads` to attach `orthogonality_by_layer.png`.
|
|
64
|
+
- `flywheel_commit_node` to finalize the branch.
|
|
66
65
|
|
|
67
66
|
### Image Description
|
|
68
67
|
|
|
@@ -78,11 +77,11 @@ Then, it moves to overhead of the orthogonal projection.
|
|
|
78
77
|
|
|
79
78
|
### Likely Flywheel MCP tools for this step
|
|
80
79
|
|
|
81
|
-
- `
|
|
82
|
-
- `
|
|
83
|
-
- `
|
|
84
|
-
- `
|
|
85
|
-
- `
|
|
80
|
+
- `flywheel_branch_node` to fork an efficiency-comparison branch.
|
|
81
|
+
- `flywheel_commit_node` to define the runtime and VRAM hypothesis.
|
|
82
|
+
- `flywheel_compute_acquire`, `flywheel_compute_status`, and `flywheel_compute_connection` to run the matched SA vs XSA benchmark.
|
|
83
|
+
- `flywheel_prepare_artifact_uploads`, raw upload to the returned signed URLs, and `flywheel_finalize_artifact_uploads` to attach `efficiency_comparison.png`.
|
|
84
|
+
- `flywheel_commit_node` to finalize the overhead measurement.
|
|
86
85
|
|
|
87
86
|
### Image Description
|
|
88
87
|
|
|
@@ -98,11 +97,11 @@ Up to now, no trouble. The agent then decides to train a 50M parameter model wit
|
|
|
98
97
|
|
|
99
98
|
### Likely Flywheel MCP tools for this step
|
|
100
99
|
|
|
101
|
-
- `
|
|
102
|
-
- `
|
|
103
|
-
- `
|
|
104
|
-
- `
|
|
105
|
-
- `
|
|
100
|
+
- `flywheel_branch_node` to create the larger training branch.
|
|
101
|
+
- `flywheel_commit_node` to record the 50M-parameter comparison and evaluation criteria.
|
|
102
|
+
- `flywheel_compute_acquire`, `flywheel_compute_status`, and `flywheel_compute_connection` to run the longer training jobs.
|
|
103
|
+
- `flywheel_prepare_artifact_uploads`, raw upload to the returned signed URLs, and `flywheel_finalize_artifact_uploads` to attach `run_metrics.csv` and `quality_pairs.csv`.
|
|
104
|
+
- `flywheel_commit_node` to record that the empirical result did not reproduce the expected gain.
|
|
106
105
|
|
|
107
106
|
### Image Description
|
|
108
107
|
|
|
@@ -118,11 +117,10 @@ Also, across sequence length, the trend seems to worsen.
|
|
|
118
117
|
|
|
119
118
|
### Likely Flywheel MCP tools for this step
|
|
120
119
|
|
|
121
|
-
- `
|
|
122
|
-
- `
|
|
123
|
-
- `
|
|
124
|
-
- `
|
|
125
|
-
- `mcp__flywheel__flywheel_commit_node` to persist the analysis.
|
|
120
|
+
- `flywheel_branch_node` to spin off an analysis branch for context length.
|
|
121
|
+
- `flywheel_get_node` and `flywheel_list_artifacts` to gather results from the completed training branches.
|
|
122
|
+
- `flywheel_commit_node` to record the interpretation that the delta worsens at longer context.
|
|
123
|
+
- `flywheel_prepare_artifact_uploads`, raw upload to the returned signed URLs, and `flywheel_finalize_artifact_uploads` to attach `length_trend.png`.
|
|
126
124
|
|
|
127
125
|
### Image Description
|
|
128
126
|
|
|
@@ -138,11 +136,11 @@ At the same time, baseline seems to also win the LR sweeps.
|
|
|
138
136
|
|
|
139
137
|
### Likely Flywheel MCP tools for this step
|
|
140
138
|
|
|
141
|
-
- `
|
|
142
|
-
- `
|
|
143
|
-
- `
|
|
144
|
-
- `
|
|
145
|
-
- `
|
|
139
|
+
- `flywheel_branch_node` to create a robustness branch for LR sweeps and sink-style perturbations.
|
|
140
|
+
- `flywheel_commit_node` to capture the robustness hypothesis.
|
|
141
|
+
- `flywheel_compute_acquire`, `flywheel_compute_status`, and `flywheel_compute_connection` to run the compact sweep experiments.
|
|
142
|
+
- `flywheel_prepare_artifact_uploads`, raw upload to the returned signed URLs, and `flywheel_finalize_artifact_uploads` to attach `robustness_deltas.png`.
|
|
143
|
+
- `flywheel_commit_node` to finalize the robustness verdict.
|
|
146
144
|
|
|
147
145
|
### Image Description
|
|
148
146
|
|
|
@@ -13,11 +13,8 @@ npx --yes @paradigma-inc/flywheel uninstall
|
|
|
13
13
|
npx --yes @paradigma-inc/flywheel setup --mode mcp
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
-
If your previous install used a server name different from `flywheel`,
|
|
16
|
+
If your previous install used a server name different from `flywheel`, use the matching host's selected-entry cleanup command in the [host installation guides](../setting-up-flywheel/); it must include both the host selector and `--name "<old-name>"`.
|
|
17
17
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
- URL: `https://flywheel.paradigma.inc/mcp-server`
|
|
21
|
-
- Header: `Authorization: Bearer <YOUR_MCP_API_KEY>`
|
|
18
|
+
For manual configuration, see [Other MCP hosts](../setting-up-flywheel/other-hosts-installation.md). It documents the supported current Codex TOML form; use `setup --mode mcp --<host>` for the other supported hosts rather than guessing a host-config shape.
|
|
22
19
|
|
|
23
20
|
For hosts that support MCP OAuth connector installs, you can also use the host-native OAuth connector flow with `https://flywheel.paradigma.inc/mcp-server`.
|
|
@@ -26,6 +26,6 @@ While in SWE we use git to manage changes to code, in research we are interested
|
|
|
26
26
|
- [Credits and billing](../compute/credits-and-billing.md)
|
|
27
27
|
- [Using local hardware with Flywheel](../usage-and-workflows/using-local-hardware-with-flywheel.md)
|
|
28
28
|
- [Participating in a Campaign](../campaigns/participating-in-a-campaign.md)
|
|
29
|
-
- [OAuth
|
|
29
|
+
- [OAuth Client ID Metadata FAQ](../setting-up-flywheel/how-can-i-get-an-authorized-client_id-for-the-oauth-flow.md)
|
|
30
30
|
- [Flywheel MCP tool map](../references/flywheel-mcp-tool-map.md)
|
|
31
31
|
- [Example workflows](../example-workflows/)
|
|
@@ -58,7 +58,7 @@ 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
|
-
- `
|
|
61
|
+
- `flywheel_admin_nodes_audit_list` (admin-only read; scopes: `read`; full-surface only; binding: `operation`)
|
|
62
62
|
|
|
63
63
|
### Node stage and commit
|
|
64
64
|
|
|
@@ -145,7 +145,7 @@ direct-neighbor traversal.
|
|
|
145
145
|
- `GET /nodes/{node_id}/tree` -> `flywheel_get_node_tree`
|
|
146
146
|
- `GET /nodes/{node_id}/ancestry` -> `flywheel_get_node_ancestry`
|
|
147
147
|
- `GET /nodes/{node_id}/campaign/snapshot` -> `flywheel_get_campaign_snapshot`
|
|
148
|
-
- `GET /nodes/{node_id}/audit` -> `
|
|
148
|
+
- `GET /admin/nodes/{node_id}/audit` -> `flywheel_admin_nodes_audit_list` (admin only)
|
|
149
149
|
|
|
150
150
|
### Node stage and commit
|
|
151
151
|
|