@paradigma-inc/flywheel 0.1.79 → 0.1.80

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.79",
3
+ "version": "0.1.80",
4
4
  "description": "One-command setup for Flywheel MCP hosts",
5
5
  "type": "module",
6
6
  "files": [
@@ -70,3 +70,9 @@ Choose one primary file first, then add at most one supporting file only if need
70
70
  - Use `flywheel_compute_release_all` for token-scoped bulk cleanup with the
71
71
  active `lease_control_token`; add `force=true` only when the user explicitly
72
72
  asks for account-wide cleanup.
73
+ - Respect Flywheel write limits. Current per-user limits are 120 node creates
74
+ per minute, 2,000 node creates per 24 hours, and 120 graph writes per minute.
75
+ Graph writes include existing-node edits, parent edge changes, deletes,
76
+ merges, tag/sharing changes, artifact finalization, artifact deletion, and
77
+ artifact-note updates. If a write returns `429`, honor `Retry-After` before
78
+ retrying the same idempotent request; do not spin in a tight retry loop.
@@ -15,6 +15,7 @@ The CLI respects the same contracts the MCP surface enforces. See `flywheel-mcp-
15
15
  - Inline JSON payloads can be supplied with `--payload_json=<json>` or read from a file with `--payload_json=@path/to/file.json`.
16
16
  - Output format is controlled by `--format json|tsv|csv|table` (default: `json`). Pipe-friendly forms (`tsv`, `csv`) are useful for scripting.
17
17
  - For artifact uploads, the CLI offers a one-shot `flywheel artifacts:upload` that internally runs prepare + raw PUT + finalize. The split commands (`flywheel artifacts:upload:prepare`, `flywheel artifacts:upload:finalize`) are available for streaming or chunked uploads.
18
+ - Mutating commands are subject to per-user write limits: 120 node creates per minute, 2,000 node creates per 24 hours, and 120 graph writes per minute. Graph writes include existing-node commits, edge changes, deletes, merges, tags, sharing, artifact finalization, artifact deletion, and artifact-note updates. On `429`, honor `Retry-After` and retry the same idempotent command after waiting.
18
19
  - Run `flywheel help <command>` for canonical per-command flags, types, defaults, examples, and related commands.
19
20
 
20
21
  ## MCP-Equivalent Tool Families
@@ -22,6 +22,7 @@ Flywheel is a graph-based system for tracking research work, decisions, and evid
22
22
  - Empirical workflow is hypothesis-driven: launch execution, inspect outcomes, publish evidence artifacts, and commit only after terminal status.
23
23
  - For empirical work, publish evidence with `flywheel_prepare_artifact_uploads`, upload raw file bytes, then `flywheel_finalize_artifact_uploads` before commit.
24
24
  - Artifact metadata records expose a non-empty `title` suitable for display labels; title normalization must never derive from `storage_url`.
25
+ - Mutating tools are subject to per-user write limits: 120 node creates per minute, 2,000 node creates per 24 hours, and 120 graph writes per minute. Graph writes include existing-node commits, edge changes, deletes, merges, tags, sharing, artifact finalization, artifact deletion, and artifact-note updates. On `429`, honor `Retry-After` and retry the same idempotent write after waiting.
25
26
 
26
27
  ## Tool Families
27
28