paqad-ai 1.69.0 → 1.71.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 +43 -0
- package/dist/cli/index.js +2638 -457
- package/dist/cli/index.js.map +1 -1
- package/dist/feature-evidence/adoption.js +5 -0
- package/dist/feature-evidence/adoption.js.map +1 -1
- package/dist/index.d.ts +8 -1
- package/dist/index.js +244 -172
- package/dist/index.js.map +1 -1
- package/dist/kernel/gate.js +89 -73
- package/dist/kernel/gate.js.map +1 -1
- package/dist/rag-ledger/session.js +5 -0
- package/dist/rag-ledger/session.js.map +1 -1
- package/dist/rule-scripts/index.js +5 -0
- package/dist/rule-scripts/index.js.map +1 -1
- package/dist/session-ledger/disabled-audit.js +5 -0
- package/dist/session-ledger/disabled-audit.js.map +1 -1
- package/dist/session-ledger/project-ledger.js +5 -0
- package/dist/session-ledger/project-ledger.js.map +1 -1
- package/dist/stage-evidence/live-writer.js +5 -0
- package/dist/stage-evidence/live-writer.js.map +1 -1
- package/dist/stage-evidence/marker-parse.js +5 -0
- package/dist/stage-evidence/marker-parse.js.map +1 -1
- package/dist/stage-evidence/narration.js +5 -0
- package/dist/stage-evidence/narration.js.map +1 -1
- package/package.json +9 -1
- package/runtime/capabilities/coding/rules/feature-development.md +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
# paqad-ai
|
|
2
2
|
|
|
3
|
+
## 1.71.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- b394371: Framework-native reuse now covers PHP/Laravel, Python and Java/Spring, not just JS/TS
|
|
8
|
+
(#398). Each ecosystem gets an adapter behind the same normalized schema: resolve the
|
|
9
|
+
version actually installed, read the declaration layer that ships with it, and answer
|
|
10
|
+
whether a symbol exists and whether it is deprecated — so `plan compile` checks a Laravel,
|
|
11
|
+
Django or Spring reuse claim exactly as it already checked a React one.
|
|
12
|
+
|
|
13
|
+
Laravel facades resolve through their `@method static` docblocks rather than reporting
|
|
14
|
+
`__callStatic`, and the version-pinned Laravel Upgrade Guide is folded in as a
|
|
15
|
+
`doc-derived` deprecation backstop for the deprecations Laravel documents but never tags.
|
|
16
|
+
Metaprogrammed members always read "could not verify statically", never a false "does not
|
|
17
|
+
exist".
|
|
18
|
+
|
|
19
|
+
`FRAMEWORK_PACKAGE_MAP` also gains the Spring Boot, Django, FastAPI and Rails coordinates
|
|
20
|
+
it was missing, so those projects are detected and indexed instead of silently producing
|
|
21
|
+
nothing.
|
|
22
|
+
|
|
23
|
+
## 1.70.0
|
|
24
|
+
|
|
25
|
+
### Minor Changes
|
|
26
|
+
|
|
27
|
+
- 39f86ea: Verify framework reuse claims against the version you actually have installed (#397).
|
|
28
|
+
|
|
29
|
+
A plan could already declare it was reusing a framework API — "I'll use React's `useId()`
|
|
30
|
+
instead of hand-rolling one" — but nothing checked the claim. Now paqad reads the
|
|
31
|
+
declaration files shipped inside the installed package and answers two questions before
|
|
32
|
+
the plan compiles: does that symbol exist at your installed version, and is it
|
|
33
|
+
`@deprecated`? A plan naming a removed API fails with the nearest existing symbol; one
|
|
34
|
+
naming a deprecated API fails citing the deprecation message. No AI, no network.
|
|
35
|
+
|
|
36
|
+
New: `paqad-ai index framework-api build` and `paqad-ai index framework-api query
|
|
37
|
+
<package> <symbol>`.
|
|
38
|
+
|
|
39
|
+
Nothing new is installed for this. `typescript` is an optional peer dependency resolved
|
|
40
|
+
from your own project, so a Laravel, Flutter, or Python project pays nothing for a
|
|
41
|
+
JS-only check, and a project without it degrades to a visible warning rather than a
|
|
42
|
+
block. Anything paqad cannot verify statically — a dynamically-provided member, an
|
|
43
|
+
unindexed package, a missing index — warns instead of failing, because a false "this
|
|
44
|
+
does not exist" would block a perfectly good plan.
|
|
45
|
+
|
|
3
46
|
## 1.69.0
|
|
4
47
|
|
|
5
48
|
### Minor Changes
|