bitfab-cli 0.2.344 → 0.2.345
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/dist/index.js +4 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -24575,8 +24575,8 @@ var semver3 = __toESM(require_semver2(), 1);
|
|
|
24575
24575
|
|
|
24576
24576
|
// ../bitfab-plugin-lib/dist/bakedSdkVersions.js
|
|
24577
24577
|
var BAKED_SDK_VERSIONS = {
|
|
24578
|
-
typescript: "0.54.
|
|
24579
|
-
python: "0.55.
|
|
24578
|
+
typescript: "0.54.7",
|
|
24579
|
+
python: "0.55.6",
|
|
24580
24580
|
ruby: "0.51.8",
|
|
24581
24581
|
go: "0.51.7"
|
|
24582
24582
|
};
|
|
@@ -31106,6 +31106,8 @@ This skill has eleven phases: **explain**, **login**, **session-logs**, **instru
|
|
|
31106
31106
|
**Natural-language aliases:** "explain Bitfab" \u2192 \`explain\`; "trace a new workflow" / "instrument another function" \u2192 \`instrument\`; "adjust what is captured" / "re-instrument" \u2192 \`modify\`; "why are my traces missing" \u2192 \`inspect\`; "switch org" \u2192 \`switch-org\`; "set up database snapshots" \u2192 \`db-snapshot\`; "analyze the repo" \u2192 \`analyze-repo\` (read-only source recommendations).
|
|
31107
31107
|
|
|
31108
31108
|
When instrumenting a workflow, **its instrumentation and replay pipeline are written together in the same cycle** after the workflow is selected (see Instrument's write-instrumentation step). The standalone \`replay\` mode remains available for coverage-verification and backfill.
|
|
31109
|
+
|
|
31110
|
+
**Preserve the project's capture opt-out.** When initialization sets \`captureEnabled: false\` / \`capture_enabled=False\`, keep framework handlers, processors, callbacks, middleware, and wrappers installed so the application continues to run normally, but verify that ordinary execution produces no client-owned records, including local BAML calls. Replay and seed modes are explicit recording operations and continue to produce records. Never "fix" an opt-out by removing an integration or preventing the wrapped framework call from running.
|
|
31109
31111
|
{{#plugin-dir-lookup}}
|
|
31110
31112
|
**Before running plugin commands below**, resolve \`BITFAB_PLUGIN_DIR\` in the shell. {{editor}} does not inject a plugin-root env var, so you must determine it. Copy and run this block verbatim, it auto-detects whichever install is active:
|
|
31111
31113
|
|
package/package.json
CHANGED