paqad-ai 1.72.0 → 1.74.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 +39 -0
- package/dist/cli/index.js +2181 -1447
- package/dist/cli/index.js.map +1 -1
- package/dist/index.js +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,44 @@
|
|
|
1
1
|
# paqad-ai
|
|
2
2
|
|
|
3
|
+
## 1.74.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- f51816a: **Site Map — framework-native Laravel surface extraction** (behind the OFF-by-default `site_map`
|
|
8
|
+
flag). The dedicated extractors now ask the framework instead of grepping fixed directories:
|
|
9
|
+
|
|
10
|
+
- **Artisan-first routes** — `paqad-ai sitemap run` runs `php artisan route:list --json` when it
|
|
11
|
+
can, so modular routes (`nwidart/laravel-modules` and bespoke `Modules/*/Routes/` layouts) are
|
|
12
|
+
mapped through the real router, route middleware is carried as guard hints, and each surface is
|
|
13
|
+
attributed to its owning module from the controller namespace. When artisan cannot run (no PHP,
|
|
14
|
+
or the app will not boot) the run degrades to a modular-aware static route scan and records a
|
|
15
|
+
labelled blocked check — never a crash, never a silent pass.
|
|
16
|
+
- **New non-HTTP surfaces** — artisan/console commands (`php artisan list`) become `cli-command`
|
|
17
|
+
surfaces, scheduled tasks (`php artisan schedule:list`) become `job` surfaces, and a
|
|
18
|
+
modular-aware static scan maps queued jobs (`ShouldQueue`) to `job` surfaces and mailables /
|
|
19
|
+
notifications to `email` surfaces.
|
|
20
|
+
|
|
21
|
+
Artisan is best-effort, timeout-bounded, and read-only (`route:list`, `list`, `schedule:list`).
|
|
22
|
+
The pure mappers and parsers are at 100% branch coverage; the shell-out and file globbing live in
|
|
23
|
+
the coverage-excluded gatherer.
|
|
24
|
+
|
|
25
|
+
## 1.73.0
|
|
26
|
+
|
|
27
|
+
### Minor Changes
|
|
28
|
+
|
|
29
|
+
- 3b5bc7b: Three follow-ups to the **Site Map** capability, all behind the OFF-by-default `site_map` flag:
|
|
30
|
+
|
|
31
|
+
- **Dedicated React + Laravel route extractors** — `paqad-ai sitemap run` now maps real web apps
|
|
32
|
+
with high-confidence surfaces (React Router routes → pages, Laravel `Route::` declarations →
|
|
33
|
+
page/api by uri), instead of only the generic convention fallback. Unknown shapes still fall
|
|
34
|
+
through to the fallback, never a guess.
|
|
35
|
+
- **Dashboard Site map area** — the dashboard gains a scored "Site map" section (surfaces,
|
|
36
|
+
journeys, open findings, freshness) built from the published run sidecar, so the map is visible
|
|
37
|
+
rather than only files.
|
|
38
|
+
- **Journey curation** — `paqad-ai sitemap journey confirm|reject <id>`, the human sign-off that
|
|
39
|
+
turns a proposed journey into a confirmed one (or removes it), recorded on an audit ledger. The
|
|
40
|
+
code never self-confirms.
|
|
41
|
+
|
|
3
42
|
## 1.72.0
|
|
4
43
|
|
|
5
44
|
### Minor Changes
|