paqad-ai 1.74.0 → 1.75.0

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,49 @@
1
1
  # paqad-ai
2
2
 
3
+ ## 1.75.0
4
+
5
+ ### Minor Changes
6
+
7
+ - ca8aefa: **Site map is a dashboard area now, not a command you type (#448).** Open `paqad-ai dashboard`
8
+ and there is a **Site map** entry in the side menu: it shows the latest run (surfaces, journeys,
9
+ findings, skipped checks) and a **Run site map** button that maps the app on demand. The run is
10
+ the same deterministic, zero-token audit the engine always did — it just happens from the web,
11
+ with live progress and a dashboard-attributed line in the audit trail, so no one has to drop to a
12
+ terminal.
13
+
14
+ The `paqad-ai sitemap` verb still exists for CI and scripting, but it is now hidden from `--help`
15
+ (the dashboard is the place to run it), mirroring how `graph` became a dashboard area. Everything
16
+ stays behind the OFF-by-default `site_map` flag.
17
+
18
+ - ca8aefa: **Site map dashboard: Retest and journey sign-off from the web (#448).** The Site map area now
19
+ carries the last two actions that used to need the terminal:
20
+
21
+ - **Retest** replays the latest run against the current code (a `site-map-retest` dashboard
22
+ action, with live progress). If there is no prior run to replay it says so instead of failing
23
+ obscurely.
24
+ - **Journeys** lists the app's journeys and lets you **Confirm** or **Reject** the proposed ones
25
+ in place. Confirming makes a journey part of the map; rejecting drops it. Both run the same
26
+ audited curation the engine always did.
27
+
28
+ The run itself is unchanged. Everything stays behind the OFF-by-default `site_map` flag, and the
29
+ `paqad-ai sitemap` verb remains available (hidden) for CI and scripting.
30
+
31
+ ### Patch Changes
32
+
33
+ - ca8aefa: **Fix (#448): a legacy `.paqad/doc-progress.json` no longer blocks a site-map run.** Site-map
34
+ publication used to piggyback on the documentation workflow's `DocumentProgressTracker`, so every
35
+ `sitemap run` loaded and schema-validated `doc-progress.json` — and a file written by an older
36
+ paqad (an unrelated, disjoint shape) threw, aborting the run before `index.md` / `overview.md`
37
+ were published.
38
+
39
+ Site-map now keeps its **own** differential-refresh ledger at `.paqad/site-map/progress.json`
40
+ (schema-versioned, mirroring the tolerant persistence of the code-knowledge index: a missing,
41
+ corrupt, or schema-invalid file degrades to empty and self-heals on the next run rather than
42
+ crashing). Nothing under `src/site-map/` reads or validates `doc-progress.json` anymore, so an
43
+ unrelated stale ledger can never block a map publication or the site-map freshness gate. The two
44
+ concerns are decoupled by construction. All behaviour stays behind the OFF-by-default `site_map`
45
+ flag.
46
+
3
47
  ## 1.74.0
4
48
 
5
49
  ### Minor Changes