bitfab-cli 0.2.343 → 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 +8 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -23514,6 +23514,8 @@ var searchTraces = {
|
|
|
23514
23514
|
key.toLowerCase(),
|
|
23515
23515
|
item.toLowerCase()
|
|
23516
23516
|
]))).optional().describe("Filter by up to 10 caller metadata key/value pairs. Matches exact values case-insensitively; all pairs must match."),
|
|
23517
|
+
name: external_exports.string().trim().min(1).max(256).transform((value) => value.toLowerCase()).optional().describe("Filter by the trace's name, the title set by setName or seedTrace. Matches the name's words in order, so 'Order ABC' also matches 'Order ABC 123', and it matches whole words rather than inside a word. Case-insensitive. Use nameContains to match inside a word or on a partial word."),
|
|
23518
|
+
nameContains: external_exports.string().trim().min(3).max(256).transform((value) => value.toLowerCase()).optional().describe("Filter by any part of the trace's name, including inside a word, matched case-insensitively. Needs at least 3 characters. Use name instead to match whole words in order."),
|
|
23517
23519
|
labelSource: external_exports.enum(["human", "agent"]).optional().describe('Filter by who authored the label: "human" for human-authored labels only, "agent" for agent-authored labels only. Omit to include any source. This is a pure authorship filter - for trust/validation, use the separate `validated` parameter.'),
|
|
23518
23520
|
validated: external_exports.preprocess(parseJsonString, external_exports.boolean()).optional().describe('If true, only return traces with a validated label - a label that is either human-authored OR an agent-authored label that a human has approved (`approvedAt` is set). Use this when you want trustworthy/reviewed labels. Combine with `labelSource: "agent"` to get only approved-agent labels (excluding pure-human labels). Omit (or pass false) to include unapproved labels too.'),
|
|
23519
23521
|
labelResult: external_exports.preprocess(parseJsonString, external_exports.boolean()).optional().describe("Filter by label result: true for passing labels, false for failing labels"),
|
|
@@ -24573,10 +24575,10 @@ var semver3 = __toESM(require_semver2(), 1);
|
|
|
24573
24575
|
|
|
24574
24576
|
// ../bitfab-plugin-lib/dist/bakedSdkVersions.js
|
|
24575
24577
|
var BAKED_SDK_VERSIONS = {
|
|
24576
|
-
typescript: "0.54.
|
|
24577
|
-
python: "0.55.
|
|
24578
|
-
ruby: "0.51.
|
|
24579
|
-
go: "0.51.
|
|
24578
|
+
typescript: "0.54.7",
|
|
24579
|
+
python: "0.55.6",
|
|
24580
|
+
ruby: "0.51.8",
|
|
24581
|
+
go: "0.51.7"
|
|
24580
24582
|
};
|
|
24581
24583
|
|
|
24582
24584
|
// ../bitfab-plugin-lib/dist/installedSdk.js
|
|
@@ -31104,6 +31106,8 @@ This skill has eleven phases: **explain**, **login**, **session-logs**, **instru
|
|
|
31104
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).
|
|
31105
31107
|
|
|
31106
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.
|
|
31107
31111
|
{{#plugin-dir-lookup}}
|
|
31108
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:
|
|
31109
31113
|
|
package/package.json
CHANGED