paqad-ai 1.74.0 → 1.75.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,63 @@
1
1
  # paqad-ai
2
2
 
3
+ ## 1.75.1
4
+
5
+ ### Patch Changes
6
+
7
+ - c0edc5a: fix(#449): the completion (Stop) hook no longer forces the feature-development stage set on
8
+ host-agent-config-only changes. Paqad's own host-integration directories (`.claude/`, `.codex/`,
9
+ `.gemini/`, `.junie/`, `.cursor/`, `.windsurf/`, `.continue/`, `.aider/`, `.aiassistant/`) and the
10
+ `.windsurfrules` entry file are now classified as non-feature-development in the scope predicate, so
11
+ a session that only touches host wiring (e.g. regenerated hooks or an `mcp.json` edit) ends cleanly
12
+ instead of hard-blocking with a false "missing stage-evidence" failure. `.github/` stays in scope
13
+ (CI workflows are real code). Also fixes the #409 narration advisory so it only names stages the
14
+ agent itself authored (`live-mark`/`redo`), never a hook/backstop-inferred stage the agent never
15
+ claimed.
16
+
17
+ ## 1.75.0
18
+
19
+ ### Minor Changes
20
+
21
+ - ca8aefa: **Site map is a dashboard area now, not a command you type (#448).** Open `paqad-ai dashboard`
22
+ and there is a **Site map** entry in the side menu: it shows the latest run (surfaces, journeys,
23
+ findings, skipped checks) and a **Run site map** button that maps the app on demand. The run is
24
+ the same deterministic, zero-token audit the engine always did — it just happens from the web,
25
+ with live progress and a dashboard-attributed line in the audit trail, so no one has to drop to a
26
+ terminal.
27
+
28
+ The `paqad-ai sitemap` verb still exists for CI and scripting, but it is now hidden from `--help`
29
+ (the dashboard is the place to run it), mirroring how `graph` became a dashboard area. Everything
30
+ stays behind the OFF-by-default `site_map` flag.
31
+
32
+ - ca8aefa: **Site map dashboard: Retest and journey sign-off from the web (#448).** The Site map area now
33
+ carries the last two actions that used to need the terminal:
34
+
35
+ - **Retest** replays the latest run against the current code (a `site-map-retest` dashboard
36
+ action, with live progress). If there is no prior run to replay it says so instead of failing
37
+ obscurely.
38
+ - **Journeys** lists the app's journeys and lets you **Confirm** or **Reject** the proposed ones
39
+ in place. Confirming makes a journey part of the map; rejecting drops it. Both run the same
40
+ audited curation the engine always did.
41
+
42
+ The run itself is unchanged. Everything stays behind the OFF-by-default `site_map` flag, and the
43
+ `paqad-ai sitemap` verb remains available (hidden) for CI and scripting.
44
+
45
+ ### Patch Changes
46
+
47
+ - ca8aefa: **Fix (#448): a legacy `.paqad/doc-progress.json` no longer blocks a site-map run.** Site-map
48
+ publication used to piggyback on the documentation workflow's `DocumentProgressTracker`, so every
49
+ `sitemap run` loaded and schema-validated `doc-progress.json` — and a file written by an older
50
+ paqad (an unrelated, disjoint shape) threw, aborting the run before `index.md` / `overview.md`
51
+ were published.
52
+
53
+ Site-map now keeps its **own** differential-refresh ledger at `.paqad/site-map/progress.json`
54
+ (schema-versioned, mirroring the tolerant persistence of the code-knowledge index: a missing,
55
+ corrupt, or schema-invalid file degrades to empty and self-heals on the next run rather than
56
+ crashing). Nothing under `src/site-map/` reads or validates `doc-progress.json` anymore, so an
57
+ unrelated stale ledger can never block a map publication or the site-map freshness gate. The two
58
+ concerns are decoupled by construction. All behaviour stays behind the OFF-by-default `site_map`
59
+ flag.
60
+
3
61
  ## 1.74.0
4
62
 
5
63
  ### Minor Changes