@quireco/cli 0.0.5 → 0.0.6

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/README.md CHANGED
@@ -97,6 +97,15 @@ cat issue.md | quire investigate --stdin --json
97
97
  quire report <run-id> --wait --json
98
98
  ```
99
99
 
100
+ Continue a previous session when the first run needs more context or a retry:
101
+
102
+ ```bash
103
+ quire continue <run-id> "Use the seeded buyer account and retry checkout"
104
+ printf 'Fixture account: buyer@example.com\n' | quire continue <run-id> --stdin --json
105
+ ```
106
+
107
+ `continue` starts a new linked run, forks the prior Pi session when available, and injects the previous report, handoff, evidence summary, and new caller context. The original run remains immutable.
108
+
100
109
  `investigate` carries a deliberately small flag surface — everything that describes the target (platform, provider, device, app id, etc.) lives in `.quire/environment.json` via `quire env`. The run-level flags are:
101
110
 
102
111
  - `--stdin` reads plain-text investigation context from stdin. If a positional prompt is also present, stdin is treated as additional context.
@@ -118,6 +127,7 @@ quire handoff <run-id> # alias for `quire runs handoff`
118
127
  Less common run operations stay under the canonical `runs` namespace: `quire runs status|cancel|list ...`.
119
128
 
120
129
  Each run writes `metadata.json`, `report.json`, `handoff.md`, and raw `emit-report.json` under `~/.quire/runs/<workspace-key>/<run-id>/` by default. Set `QUIRE_RUNS_DIR` to override the run-artifact root.
130
+ Runs also store a local Pi session under the run directory so `quire continue` can resume prior context without syncing raw prompts, completions, or provider credentials.
121
131
 
122
132
  `report.json` is the structured source of truth. The stable top-level fields include:
123
133
 
@@ -6,17 +6,7 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
6
6
  var __getOwnPropNames = Object.getOwnPropertyNames;
7
7
  var __getProtoOf = Object.getPrototypeOf;
8
8
  var __hasOwnProp = Object.prototype.hasOwnProperty;
9
- var __esmMin = (fn, res) => () => (fn && (res = fn(fn = 0)), res);
10
9
  var __commonJSMin = (cb, mod) => () => (mod || (cb((mod = { exports: {} }).exports, mod), cb = null), mod.exports);
11
- var __exportAll = (all, no_symbols) => {
12
- let target = {};
13
- for (var name in all) __defProp(target, name, {
14
- get: all[name],
15
- enumerable: true
16
- });
17
- if (!no_symbols) __defProp(target, Symbol.toStringTag, { value: "Module" });
18
- return target;
19
- };
20
10
  var __copyProps = (to, from, except, desc) => {
21
11
  if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
22
12
  key = keys[i];
@@ -31,7 +21,6 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
31
21
  value: mod,
32
22
  enumerable: true
33
23
  }) : target, mod));
34
- var __toCommonJS = (mod) => __hasOwnProp.call(mod, "module.exports") ? mod["module.exports"] : __copyProps(__defProp({}, "__esModule", { value: true }), mod);
35
24
  var __require = /* @__PURE__ */ createRequire(import.meta.url);
36
25
  //#endregion
37
- export { __toCommonJS as a, __require as i, __esmMin as n, __toESM as o, __exportAll as r, __commonJSMin as t };
26
+ export { __require as n, __toESM as r, __commonJSMin as t };