@paradigma-inc/flywheel 0.1.15 → 0.1.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paradigma-inc/flywheel",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
4
4
  "description": "One-command setup for Flywheel MCP hosts",
5
5
  "type": "module",
6
6
  "files": [
@@ -50,3 +50,9 @@ Choose one primary file first, then add at most one supporting file only if need
50
50
  - Prefer concrete steps and decision points over long narrative explanations.
51
51
  - Do not run broad document reads; load only what is required by the current request.
52
52
  - Do not start compute-heavy execution before design intent is clear.
53
+ - For managed compute cleanup in autonomous runs, default to releasing only
54
+ known leases (leases acquired in the current run or explicitly selected by
55
+ the user).
56
+ - When unknown active leases are present, report and skip by default.
57
+ - Use account-wide release (`flywheel_compute_release_all`) only when the user
58
+ explicitly asks for account-wide cleanup.
@@ -17,6 +17,11 @@ Flywheel can provision managed GPU instances for you from providers like Lambda
17
17
  3. **The agent handles the rest.** It acquires a machine, waits for it to become ready, and gets SSH access automatically. Provisioning typically takes a few minutes — the agent polls for readiness in the background.
18
18
  4. **Release when done.** When you're finished, the agent releases the lease. You can also release leases from the WebUI at any time.
19
19
 
20
+ For autonomous runs, agents should default to releasing only known leases
21
+ (leases acquired in the current run or explicitly selected by the user). If
22
+ unknown active leases are detected, agents should report and skip those leases
23
+ by default. Use account-wide release only when the user explicitly requests it.
24
+
20
25
  ## [](https://flywheel.paradigma.inc//#managing-machines-in-the-webui)Managing machines in the WebUI
21
26
 
22
27
  In **Settings > Machines**, you can see all GPU leases across your account — including the provider, state, hourly rate, total spend, and the acquire context that originally launched each lease. You can release individual leases or all at once.
@@ -84,7 +84,9 @@ Before execution, recover or establish these inputs:
84
84
  - Spawn up to `k` workers for distinct executable frontier nodes.
85
85
  - Route additional viable branches sequentially when there are more than `k` worthwhile directions.
86
86
  - After each resolved node, refresh the lookahead so the graph remains `n` hops ahead.
87
- - Release managed compute with `flywheel_compute_release` or `flywheel_compute_release_all` when a branch is done.
87
+ - Release managed compute when a branch is done. Default to releasing only
88
+ known leases. Use `flywheel_compute_release_all` only when the user
89
+ explicitly requests account-wide cleanup.
88
90
  - Stop only when the graph-local terminal condition says to stop, such as: objective met, budget exhausted, or no non-redundant frontier branch is likely to produce enough decision-relevant information to justify the remaining budget and duplication risk.
89
91
  9. Commit after the node snapshot is coherent with `flywheel_commit_node`.
90
92
  - Commit resolved insight nodes only when they have non-empty `insights`.
@@ -80,7 +80,9 @@ Before execution, recover or establish these inputs:
80
80
  - Prefer explicit validation branches such as baseline checks, mechanism or intermediate-signal checks, ablations, efficiency checks, robustness checks, failure analysis, and follow-up analysis branches after results land.
81
81
  - If the branch can run through Flywheel execution directly, use `flywheel_launch_execution` and inspect terminal status before commit.
82
82
  - If the branch needs managed compute, use `flywheel_request_compute_grant_approval`, resolve the approved `compute_grant_id` with `flywheel_list_compute_grants` or `flywheel_list_approval_sessions`, then `flywheel_compute_acquire`, poll `flywheel_compute_status`, and use `flywheel_compute_connection` when the lease is ready.
83
- - Release managed compute with `flywheel_compute_release` or `flywheel_compute_release_all` when a branch is done.
83
+ - Release managed compute when a branch is done. Default to releasing only
84
+ known leases. Use `flywheel_compute_release_all` only when the user
85
+ explicitly requests account-wide cleanup.
84
86
  - Stop when the core claim is resolved or the budget ceiling is reached.
85
87
  9. Commit after the node snapshot is coherent with `flywheel_commit_node`.
86
88
  - Commit resolved insight nodes only when they have non-empty `insights`.