@paradigma-inc/flywheel 0.1.115 → 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 +67 -10
- 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/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/installation-overview.md +2 -6
- package/skills/flywheel/setting-up-flywheel/other-hosts-installation.md +45 -25
- 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 +80 -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/admin-test-users-create.js +248 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-create.js.map +1 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-login.js +65 -1
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-login.js.map +1 -1
- 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 +21 -51
- 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 +34 -3
- 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 -304
- 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 +246 -257
- 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 -35
- 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/admin-test-users-create.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-delete.d.ts +0 -2
- package/src/runtime/vendor/flywheel-cli-dist/commands/admin-test-users-login.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
|
@@ -0,0 +1,362 @@
|
|
|
1
|
+
import { NODE_CREATE_SCHEMA_TEXT } from "../node-create-schema.js";
|
|
2
|
+
const param = (name, description, choices) => ({
|
|
3
|
+
name,
|
|
4
|
+
type: "string",
|
|
5
|
+
description,
|
|
6
|
+
...(choices ? { choices } : {}),
|
|
7
|
+
});
|
|
8
|
+
const booleanParam = (name, description) => ({
|
|
9
|
+
name,
|
|
10
|
+
type: "boolean",
|
|
11
|
+
description,
|
|
12
|
+
});
|
|
13
|
+
const integerParam = (name, description) => ({
|
|
14
|
+
name,
|
|
15
|
+
type: "integer",
|
|
16
|
+
description,
|
|
17
|
+
});
|
|
18
|
+
const REPO = param("repo", "Local repository filesystem path.");
|
|
19
|
+
const PERSONAL = booleanParam("personal", "Use the configured personal repository.");
|
|
20
|
+
const AT_HEAD = param("at_head", "Pinned local commit ID; required with --after.");
|
|
21
|
+
const AFTER = param("after", "Continuation cursor bound to --at_head.");
|
|
22
|
+
const LOG_AFTER = param("after", "Continuation cursor.");
|
|
23
|
+
const projectionSpecs = [
|
|
24
|
+
[
|
|
25
|
+
"repo:node:get",
|
|
26
|
+
"node_id",
|
|
27
|
+
"Read one node from the pinned local projection.",
|
|
28
|
+
"GET /v1/repositories/{repository_id}/nodes/{node_id}",
|
|
29
|
+
],
|
|
30
|
+
[
|
|
31
|
+
"repo:tag:list",
|
|
32
|
+
"scope_node_id",
|
|
33
|
+
"List tags and holder digests at a pinned local head.",
|
|
34
|
+
"GET /v1/repositories/{repository_id}/tags",
|
|
35
|
+
],
|
|
36
|
+
[
|
|
37
|
+
"repo:lineage:list",
|
|
38
|
+
"node_id",
|
|
39
|
+
"List lineage relations at a pinned local head.",
|
|
40
|
+
"GET /v1/repositories/{repository_id}/lineage",
|
|
41
|
+
],
|
|
42
|
+
[
|
|
43
|
+
"repo:node-artifact:list",
|
|
44
|
+
"node_id",
|
|
45
|
+
"List node artifact references at a pinned local head.",
|
|
46
|
+
"GET /v1/repositories/{repository_id}/nodes/{node_id}/artifacts",
|
|
47
|
+
],
|
|
48
|
+
[
|
|
49
|
+
"repo:edge-artifact:list",
|
|
50
|
+
"edge_id",
|
|
51
|
+
"List edge artifact references at a pinned local head.",
|
|
52
|
+
"GET /v1/repositories/{repository_id}/edges/{edge_id}/artifacts",
|
|
53
|
+
],
|
|
54
|
+
[
|
|
55
|
+
"repo:artifact:get",
|
|
56
|
+
"artifact_id",
|
|
57
|
+
"Read one artifact and its references at a pinned local head.",
|
|
58
|
+
"GET /v1/repositories/{repository_id}/artifacts/{artifact_id}",
|
|
59
|
+
],
|
|
60
|
+
[
|
|
61
|
+
"repo:containment:get",
|
|
62
|
+
"child_node_id",
|
|
63
|
+
"Read active containment for one child.",
|
|
64
|
+
"GET /v1/repositories/{repository_id}/nodes/{child_node_id}/container",
|
|
65
|
+
],
|
|
66
|
+
[
|
|
67
|
+
"repo:containment:list",
|
|
68
|
+
"container_node_id",
|
|
69
|
+
"List active contained nodes.",
|
|
70
|
+
"GET /v1/repositories/{repository_id}/nodes/{container_node_id}/contained",
|
|
71
|
+
],
|
|
72
|
+
[
|
|
73
|
+
"repo:edge:list",
|
|
74
|
+
"graph_node_id",
|
|
75
|
+
"List semantic edges in one graph.",
|
|
76
|
+
"GET /v1/repositories/{repository_id}/nodes/{graph_node_id}/edges",
|
|
77
|
+
],
|
|
78
|
+
[
|
|
79
|
+
"repo:edge:get",
|
|
80
|
+
"edge_id",
|
|
81
|
+
"Read one semantic edge.",
|
|
82
|
+
"GET /v1/repositories/{repository_id}/edges/{edge_id}",
|
|
83
|
+
],
|
|
84
|
+
];
|
|
85
|
+
const PROJECTION_COMMANDS = projectionSpecs.map(([name, targetName, summary, endpoint]) => {
|
|
86
|
+
const target = param(targetName, `${targetName} UUID.`);
|
|
87
|
+
const collection = name.endsWith(":list");
|
|
88
|
+
return {
|
|
89
|
+
name,
|
|
90
|
+
group: "repo-workflow",
|
|
91
|
+
summary,
|
|
92
|
+
endpoints: [endpoint],
|
|
93
|
+
required: [target],
|
|
94
|
+
optional: [
|
|
95
|
+
REPO,
|
|
96
|
+
PERSONAL,
|
|
97
|
+
...(collection ? [AT_HEAD, AFTER] : [AT_HEAD]),
|
|
98
|
+
],
|
|
99
|
+
positionals: [target],
|
|
100
|
+
examples: [
|
|
101
|
+
{
|
|
102
|
+
description: summary,
|
|
103
|
+
invocation: `flywheel ${name} <${targetName}> --repo <path> --json`,
|
|
104
|
+
},
|
|
105
|
+
],
|
|
106
|
+
related: [],
|
|
107
|
+
};
|
|
108
|
+
});
|
|
109
|
+
function operation(name, summary, endpoint, options = {}) {
|
|
110
|
+
const required = [...(options.required ?? [])];
|
|
111
|
+
const repositorySelectors = options.repo === false ? [] : [REPO, PERSONAL];
|
|
112
|
+
const positionals = options.positionals ?? [];
|
|
113
|
+
const positionalNames = new Set(positionals.map((parameter) => parameter.name));
|
|
114
|
+
const requiredNames = new Set(required.map((parameter) => parameter.name));
|
|
115
|
+
const exampleArguments = [
|
|
116
|
+
...positionals
|
|
117
|
+
.filter((parameter) => requiredNames.has(parameter.name))
|
|
118
|
+
.map((parameter) => `<${parameter.name}>`),
|
|
119
|
+
...required
|
|
120
|
+
.filter((parameter) => !positionalNames.has(parameter.name))
|
|
121
|
+
.map((parameter) => parameter.type === "boolean"
|
|
122
|
+
? `--${parameter.name}`
|
|
123
|
+
: `--${parameter.name}=<${parameter.name}>`),
|
|
124
|
+
"--format=json",
|
|
125
|
+
];
|
|
126
|
+
return {
|
|
127
|
+
name,
|
|
128
|
+
group: "repo-workflow",
|
|
129
|
+
summary,
|
|
130
|
+
endpoints: [endpoint],
|
|
131
|
+
required,
|
|
132
|
+
optional: [...repositorySelectors, ...(options.optional ?? [])],
|
|
133
|
+
positionals: options.positionals,
|
|
134
|
+
examples: [
|
|
135
|
+
{
|
|
136
|
+
description: summary,
|
|
137
|
+
invocation: [`flywheel ${name}`, ...exampleArguments].join(" "),
|
|
138
|
+
},
|
|
139
|
+
],
|
|
140
|
+
related: [],
|
|
141
|
+
};
|
|
142
|
+
}
|
|
143
|
+
const directory = param("directory", "Target repository directory.");
|
|
144
|
+
const repositoryId = param("repository_id", "Hosted repository UUID.");
|
|
145
|
+
const archive = param("archive", "Verified Flywheel backup archive.");
|
|
146
|
+
const emptyDirectory = param("empty_directory", "Absent or empty restore target.");
|
|
147
|
+
const commitId = param("commit_id", "Canonical commit ID.");
|
|
148
|
+
const nodeId = param("node_id", "Node UUID.");
|
|
149
|
+
const conflictId = param("conflict_id", "Conflict UUID.");
|
|
150
|
+
const rebaseId = param("rebase_id", "Rebase UUID returned by pull or conflict reads.");
|
|
151
|
+
const OPERATION_COMMANDS = [
|
|
152
|
+
{
|
|
153
|
+
...operation("repo:init", "Initialize or adopt a personal/project repository; report the retained bootstrap lock.", "stdio bootstrap", {
|
|
154
|
+
repo: false,
|
|
155
|
+
optional: [directory, PERSONAL],
|
|
156
|
+
positionals: [directory],
|
|
157
|
+
}),
|
|
158
|
+
examples: [
|
|
159
|
+
{
|
|
160
|
+
description: "Initialize the current existing project directory; Flywheel stores graph history only in .flywheel.",
|
|
161
|
+
invocation: "flywheel repo:init",
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
description: "Create a missing project directory or initialize an existing supported directory.",
|
|
165
|
+
invocation: "flywheel repo:init <directory>",
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
description: "Request stable JSON output for automation.",
|
|
169
|
+
invocation: "flywheel repo:init --format=json",
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
description: "Initialize or adopt the default personal repository and save its path in the user TOML config.",
|
|
173
|
+
invocation: "flywheel repo:init --personal",
|
|
174
|
+
},
|
|
175
|
+
],
|
|
176
|
+
related: ["repo:node:create", "repo:status"],
|
|
177
|
+
},
|
|
178
|
+
operation("repo:clone", "Clone a hosted repository into an explicit destination; report the retained bootstrap lock.", "stdio bootstrap", {
|
|
179
|
+
repo: false,
|
|
180
|
+
required: [repositoryId],
|
|
181
|
+
optional: [
|
|
182
|
+
directory,
|
|
183
|
+
param("objects", "Object transfer mode.", ["lazy", "all"]),
|
|
184
|
+
],
|
|
185
|
+
positionals: [repositoryId, directory],
|
|
186
|
+
}),
|
|
187
|
+
operation("repo:restore", "Restore a verified backup into an explicit empty destination; report the retained bootstrap lock.", "stdio bootstrap", {
|
|
188
|
+
repo: false,
|
|
189
|
+
required: [archive, emptyDirectory],
|
|
190
|
+
positionals: [archive, emptyDirectory],
|
|
191
|
+
}),
|
|
192
|
+
operation("repo:status", "Show local repository status.", "GET /v1/repositories/{repository_id}/status"),
|
|
193
|
+
operation("repo:doctor", "Run read-only local repository diagnostics.", "GET /v1/repositories/{repository_id}/doctor"),
|
|
194
|
+
operation("repo:commit", "Commit the exact current staging digest.", "POST /v1/repositories/{repository_id}/commits", {
|
|
195
|
+
optional: [param("message", "Commit message.")],
|
|
196
|
+
}),
|
|
197
|
+
operation("repo:log", "List reachable local commits.", "GET /v1/repositories/{repository_id}/commits", {
|
|
198
|
+
optional: [
|
|
199
|
+
LOG_AFTER,
|
|
200
|
+
integerParam("limit", "Commit limit from 1 through 256."),
|
|
201
|
+
],
|
|
202
|
+
}),
|
|
203
|
+
operation("repo:diff", "Diff local repository commits.", "GET /v1/repositories/{repository_id}/diff", {
|
|
204
|
+
optional: [
|
|
205
|
+
param("base", "Base commit ID."),
|
|
206
|
+
param("head", "Head commit ID."),
|
|
207
|
+
],
|
|
208
|
+
}),
|
|
209
|
+
operation("repo:revert", "Append the inverse of one commit.", "POST /v1/repositories/{repository_id}/reverts", {
|
|
210
|
+
required: [commitId],
|
|
211
|
+
positionals: [commitId],
|
|
212
|
+
}),
|
|
213
|
+
operation("repo:pull", "Pull and atomically apply hosted history.", "POST /v1/repositories/{repository_id}/sync/pulls", {
|
|
214
|
+
optional: [param("objects", "Object transfer mode.", ["lazy", "all"])],
|
|
215
|
+
}),
|
|
216
|
+
operation("repo:push", "Publish local commits to the hosted repository.", "POST /v1/repositories/{repository_id}/sync/pushes", {
|
|
217
|
+
optional: [
|
|
218
|
+
booleanParam("create-remote", "Create the hosted repository explicitly."),
|
|
219
|
+
],
|
|
220
|
+
}),
|
|
221
|
+
operation("repo:purge", "Purge one node online.", "POST /v1/repositories/{repository_id}/sync/purges", {
|
|
222
|
+
required: [nodeId, param("confirm", "Exact node UUID confirmation.")],
|
|
223
|
+
positionals: [nodeId],
|
|
224
|
+
}),
|
|
225
|
+
operation("repo:backup", "Create and verify a local repository backup.", "POST /v1/repositories/{repository_id}/backups", {
|
|
226
|
+
required: [param("destination", "Backup destination path.")],
|
|
227
|
+
optional: [booleanParam("force", "Replace an existing destination.")],
|
|
228
|
+
positionals: [param("destination", "Backup destination path.")],
|
|
229
|
+
}),
|
|
230
|
+
operation("repo:gc", "Collect continuously unreachable local objects.", "POST /v1/repositories/{repository_id}/gc", {
|
|
231
|
+
optional: [
|
|
232
|
+
booleanParam("dry-run", "Report candidates without deletion."),
|
|
233
|
+
],
|
|
234
|
+
}),
|
|
235
|
+
operation("repo:conflicts:list", "List structured rebase conflicts.", "GET /v1/repositories/{repository_id}/conflicts"),
|
|
236
|
+
operation("repo:conflicts:show", "Show one structured conflict.", "GET /v1/repositories/{repository_id}/conflicts/{conflict_id}", {
|
|
237
|
+
required: [conflictId],
|
|
238
|
+
positionals: [conflictId],
|
|
239
|
+
}),
|
|
240
|
+
operation("repo:conflicts:resolve", "Resolve one structured conflict.", "POST /v1/repositories/{repository_id}/conflicts/{conflict_id}/resolution", {
|
|
241
|
+
required: [
|
|
242
|
+
conflictId,
|
|
243
|
+
param("strategy", "Resolution strategy.", [
|
|
244
|
+
"local",
|
|
245
|
+
"remote",
|
|
246
|
+
"manual",
|
|
247
|
+
]),
|
|
248
|
+
],
|
|
249
|
+
optional: [param("value-file", "Manual latest-value file.")],
|
|
250
|
+
positionals: [conflictId],
|
|
251
|
+
}),
|
|
252
|
+
operation("repo:rebase:continue", "Continue one exact rebase.", "POST /v1/repositories/{repository_id}/rebases/{rebase_id}/continue", {
|
|
253
|
+
required: [rebaseId],
|
|
254
|
+
positionals: [rebaseId],
|
|
255
|
+
}),
|
|
256
|
+
operation("repo:rebase:abort", "Abort one exact rebase.", "POST /v1/repositories/{repository_id}/rebases/{rebase_id}/abort", {
|
|
257
|
+
required: [rebaseId],
|
|
258
|
+
positionals: [rebaseId],
|
|
259
|
+
}),
|
|
260
|
+
];
|
|
261
|
+
const edit = (name, positionals, requiredFlags = [], optional = []) => operation(name, "Stage one closed repository operation.", "POST /v1/repositories/{repository_id}/staging/operations", {
|
|
262
|
+
required: [...positionals, ...requiredFlags],
|
|
263
|
+
optional,
|
|
264
|
+
positionals,
|
|
265
|
+
});
|
|
266
|
+
const scopeNode = param("scope_node_id", "Tag scope node UUID.");
|
|
267
|
+
const tagId = param("tag_id", "Tag identifier.");
|
|
268
|
+
const ownerKind = param("owner_kind", "Artifact owner kind.", ["node", "edge"]);
|
|
269
|
+
const ownerId = param("owner_id", "Artifact owner UUID.");
|
|
270
|
+
const artifactId = param("artifact_id", "Artifact UUID.");
|
|
271
|
+
const EDIT_COMMANDS = [
|
|
272
|
+
{
|
|
273
|
+
...edit("repo:node:create", [], [], [
|
|
274
|
+
param("title", "Minimal node title."),
|
|
275
|
+
booleanParam("schema", "Print the six-field node-create schema and example."),
|
|
276
|
+
param("values-file", "JSON file containing exactly six node fields."),
|
|
277
|
+
]),
|
|
278
|
+
summary: "Stage a minimal node from --title or the full six-field JSON values file.",
|
|
279
|
+
examples: [
|
|
280
|
+
{
|
|
281
|
+
description: "Stage the first graph node with documented null defaults.",
|
|
282
|
+
invocation: 'flywheel repo:node:create --repo <path> --title "First node"',
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
description: "Print the complete machine-readable shape and valid example.",
|
|
286
|
+
invocation: "flywheel repo:node:create --schema --format=json",
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
description: "Use the full JSON path for noninteractive automation.",
|
|
290
|
+
invocation: "flywheel repo:node:create --repo <path> --values-file node.json --format=json",
|
|
291
|
+
},
|
|
292
|
+
],
|
|
293
|
+
schema: NODE_CREATE_SCHEMA_TEXT,
|
|
294
|
+
output: {
|
|
295
|
+
defaultFormat: "human",
|
|
296
|
+
fields: ["operation_id", "staging_digest", "operation_count", "node_id"],
|
|
297
|
+
},
|
|
298
|
+
errors: [
|
|
299
|
+
{
|
|
300
|
+
code: "node_create_values_invalid",
|
|
301
|
+
remediation: "Run `flywheel repo:node:create --schema --format=json`.",
|
|
302
|
+
},
|
|
303
|
+
],
|
|
304
|
+
},
|
|
305
|
+
edit("repo:node:set", [nodeId], [param("field", "D02 node field."), param("value-file", "New value file.")]),
|
|
306
|
+
edit("repo:node:tombstone", [nodeId]),
|
|
307
|
+
edit("repo:node:restore", [nodeId]),
|
|
308
|
+
edit("repo:node:branch", [nodeId]),
|
|
309
|
+
{
|
|
310
|
+
...edit("repo:node:merge", [], [
|
|
311
|
+
param("source", "Source node UUID; repeat --source for each source node."),
|
|
312
|
+
]),
|
|
313
|
+
examples: [
|
|
314
|
+
{
|
|
315
|
+
description: "Stage one merged node and lineage from each source in argument order.",
|
|
316
|
+
invocation: "flywheel repo:node:merge --repo <path> --source=<node_id> --source=<node_id> --format=json",
|
|
317
|
+
},
|
|
318
|
+
],
|
|
319
|
+
},
|
|
320
|
+
edit("repo:tag:define", [scopeNode], [param("definition-file", "Tag definition JSON file.")]),
|
|
321
|
+
edit("repo:tag:update", [scopeNode, tagId], [param("definition-file", "Tag definition JSON file.")]),
|
|
322
|
+
edit("repo:tag:retire", [scopeNode, tagId]),
|
|
323
|
+
edit("repo:node-tag:assign", [scopeNode, nodeId, tagId]),
|
|
324
|
+
edit("repo:node-tag:remove", [scopeNode, nodeId, tagId]),
|
|
325
|
+
edit("repo:lineage:add", [
|
|
326
|
+
param("parent_node_id", "Parent node UUID."),
|
|
327
|
+
param("child_node_id", "Child node UUID."),
|
|
328
|
+
]),
|
|
329
|
+
edit("repo:lineage:remove", [
|
|
330
|
+
param("parent_node_id", "Parent node UUID."),
|
|
331
|
+
param("child_node_id", "Child node UUID."),
|
|
332
|
+
]),
|
|
333
|
+
edit("repo:containment:remove", [
|
|
334
|
+
param("containment_id", "Containment UUID."),
|
|
335
|
+
]),
|
|
336
|
+
edit("repo:containment:assign", [
|
|
337
|
+
param("container_node_id", "Container node UUID."),
|
|
338
|
+
param("child_node_id", "Child node UUID."),
|
|
339
|
+
], [], [
|
|
340
|
+
integerParam("ordinal", "Nonnegative order."),
|
|
341
|
+
param("source-artifact", "Source artifact UUID."),
|
|
342
|
+
]),
|
|
343
|
+
edit("repo:edge:add", [
|
|
344
|
+
param("graph_node_id", "Graph node UUID."),
|
|
345
|
+
param("source_node_id", "Source node UUID."),
|
|
346
|
+
param("target_node_id", "Target node UUID."),
|
|
347
|
+
], [], [param("content-file", "Optional edge-content file.")]),
|
|
348
|
+
edit("repo:edge:set-content", [param("edge_id", "Edge UUID.")], [param("value-file", "New content file.")]),
|
|
349
|
+
edit("repo:edge:remove", [param("edge_id", "Edge UUID.")]),
|
|
350
|
+
edit("repo:artifact:attach", [ownerKind, ownerId], [
|
|
351
|
+
param("file", "Artifact byte path."),
|
|
352
|
+
param("metadata-file", "Artifact metadata JSON file."),
|
|
353
|
+
], [integerParam("order", "Reference order.")]),
|
|
354
|
+
edit("repo:artifact:detach", [ownerKind, ownerId, artifactId]),
|
|
355
|
+
edit("repo:artifact:set-metadata", [ownerKind, ownerId, artifactId], [param("metadata-file", "Artifact metadata JSON file.")]),
|
|
356
|
+
];
|
|
357
|
+
export const REPOSITORY_COMMANDS = [
|
|
358
|
+
...PROJECTION_COMMANDS,
|
|
359
|
+
...OPERATION_COMMANDS,
|
|
360
|
+
...EDIT_COMMANDS,
|
|
361
|
+
];
|
|
362
|
+
//# sourceMappingURL=repository.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"repository.js","sourceRoot":"","sources":["../../../src/commands/registry/repository.ts"],"names":[],"mappings":"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"}
|