bitfab-cli 0.2.264 → 0.2.265

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +3 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -28492,11 +28492,12 @@ var getExperimentGroup = {
28492
28492
  var saveExperiment = {
28493
28493
  name: "save_experiment",
28494
28494
  title: "Save Experiment",
28495
- description: "Update the human-readable metadata for an existing experiment (replay test run). Provide the experiment id and at least one of name or notes. Omitted fields keep their current values; pass an empty notes string to clear notes.",
28495
+ description: "Update an existing experiment (replay test run). Provide the experiment id and at least one of name, notes, or experimentGroupId. Omitted fields keep their current values; pass an empty notes string to clear notes, a group id to move the experiment to that existing group, or null to remove it from its group.",
28496
28496
  inputSchema: {
28497
28497
  testRunId: external_exports.uuid().describe("The experiment (test run) id to update"),
28498
28498
  name: external_exports.string().trim().min(1).max(120).optional().describe("Optional human-readable experiment name"),
28499
- notes: external_exports.string().max(1e4).optional().describe("Optional experiment notes. Omit to keep existing notes; pass an empty string to clear them.")
28499
+ notes: external_exports.string().max(1e4).optional().describe("Optional experiment notes. Omit to keep existing notes; pass an empty string to clear them."),
28500
+ experimentGroupId: external_exports.uuid().nullable().optional().describe("Existing experiment group id to move this experiment into. Omit to keep its current group; pass null to remove it from its group.")
28500
28501
  }
28501
28502
  };
28502
28503
  var getExperiment = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bitfab-cli",
3
- "version": "0.2.264",
3
+ "version": "0.2.265",
4
4
  "description": "Install and configure the Bitfab plugin in Claude Code, Codex, or Cursor.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",