@debugbundle/cli 1.0.3 → 1.0.4
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/main.cjs +8 -6
- package/package.json +1 -1
package/dist/main.cjs
CHANGED
|
@@ -15631,10 +15631,11 @@ function buildSkill() {
|
|
|
15631
15631
|
"When the user reports a bug, runtime failure, production incident, regression, broken deploy, or unknown error, start here before reading arbitrary source files.",
|
|
15632
15632
|
"",
|
|
15633
15633
|
"1. Run `debugbundle doctor --json` to learn whether the project is local-only or connected and whether the local scaffold is healthy.",
|
|
15634
|
-
"2.
|
|
15635
|
-
"3.
|
|
15636
|
-
"4.
|
|
15637
|
-
"5.
|
|
15634
|
+
"2. If `debugbundle doctor --json` reports `mode=local-only`, start with `debugbundle incidents --source local --status open --json`.",
|
|
15635
|
+
"3. If `debugbundle doctor --json` reports `mode=connected` and the target environment is cloud-enabled, check both `debugbundle incidents --source local --status open --json` and `debugbundle incidents --source cloud --status open --json` unless the user explicitly scoped the issue to local-only development. For user-reported production incidents, check cloud incidents after local incidents and explicitly report whether each source had matches.",
|
|
15636
|
+
"4. Inspect the chosen incident with `debugbundle inspect <incident-id> --source <local|cloud> --json` and `debugbundle explain <incident-id> --source <local|cloud> --json`.",
|
|
15637
|
+
"5. Fetch evidence before editing code: `debugbundle bundle <incident-id> --source <local|cloud> --json` and `debugbundle reproduce <incident-id> --source <local|cloud> --json`.",
|
|
15638
|
+
"6. If local SDK or relay events have landed but no bundle exists yet, run `debugbundle process --preset <minimal|balanced|investigative> --json` and then list incidents again.",
|
|
15638
15639
|
"",
|
|
15639
15640
|
"Key local paths:",
|
|
15640
15641
|
"- `.debugbundle/profile.json` \u2014 project map, service paths, and validation state",
|
|
@@ -15919,7 +15920,8 @@ function buildSkillEvals() {
|
|
|
15919
15920
|
name: "connected_incident_fetch",
|
|
15920
15921
|
prompt: "The user says a production incident fired in the hosted DebugBundle project. Confirm the skill points the agent to the cloud retrieval path.",
|
|
15921
15922
|
expected_behavior: [
|
|
15922
|
-
"
|
|
15923
|
+
"Check both local and cloud incident sources when the project is connected and the environment is cloud-enabled.",
|
|
15924
|
+
"Explicitly report whether the local source, the cloud source, or both had matches.",
|
|
15923
15925
|
"Fetch inspect, context, bundle, and reproduction artifacts before editing code."
|
|
15924
15926
|
]
|
|
15925
15927
|
}
|
|
@@ -33957,7 +33959,7 @@ async function handleCaptureRuleCommand2(parsedArgv, dependencies) {
|
|
|
33957
33959
|
// package.json
|
|
33958
33960
|
var package_default = {
|
|
33959
33961
|
name: "@debugbundle/cli",
|
|
33960
|
-
version: "1.0.
|
|
33962
|
+
version: "1.0.4",
|
|
33961
33963
|
private: false,
|
|
33962
33964
|
description: "Command-line interface for DebugBundle",
|
|
33963
33965
|
license: "AGPL-3.0-only",
|