lurqrun 0.1.1 → 0.1.3
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 +4 -9
- package/dist/bin/lurq.js +7612 -3550
- package/dist/bin/lurq.js.map +1 -1
- package/dist/index.d.ts +182 -13
- package/dist/index.js +7342 -3281
- package/dist/index.js.map +1 -1
- package/drizzle/0031_redundant_maginty.sql +2 -0
- package/drizzle/0032_stack_resolutions.sql +14 -0
- package/drizzle/0033_graceful_tyger_tiger.sql +3 -0
- package/drizzle/0034_api_key_scopes.sql +1 -0
- package/drizzle/0035_policy_audit.sql +21 -0
- package/drizzle/meta/0031_snapshot.json +2598 -0
- package/drizzle/meta/0032_snapshot.json +2699 -0
- package/drizzle/meta/0033_snapshot.json +2712 -0
- package/drizzle/meta/0034_snapshot.json +2719 -0
- package/drizzle/meta/0035_snapshot.json +2869 -0
- package/drizzle/meta/_journal.json +35 -0
- package/package.json +3 -2
- package/templates/skill-instructions.md +33 -0
package/README.md
CHANGED
|
@@ -121,12 +121,10 @@ carries a `dataAsOf` timestamp so your agents know how fresh the information is.
|
|
|
121
121
|
|
|
122
122
|
| Tool | What it answers |
|
|
123
123
|
|---|---|
|
|
124
|
-
| `recommend` | Best current packages for a described need (≤5, scored, with confidence) |
|
|
125
124
|
| `evaluate` | Full evidence read for one package — scores, advisories, usage guide |
|
|
126
125
|
| `compare` | 2–5 packages ranked head-to-head |
|
|
127
126
|
| `verify` | Is this package real, healthy, and not risky? *(anti-hallucination guard)* |
|
|
128
127
|
| `compat` | Will these packages actually install together? (peer/engine constraints) |
|
|
129
|
-
| `plan` | Source every slot in a stack at once, checked for cross-slot coherence |
|
|
130
128
|
| `diagram` | A reference-architecture Mermaid diagram for a stack |
|
|
131
129
|
| `usage` | A version's *real* public API — symbols and signatures from its shipped `.d.ts` |
|
|
132
130
|
| `resolve_surface` | The exact export surface of one package version |
|
|
@@ -143,8 +141,7 @@ exists in no changelog and no model's training data.
|
|
|
143
141
|
The same index, scriptable. Every capability is a subcommand.
|
|
144
142
|
|
|
145
143
|
```bash
|
|
146
|
-
#
|
|
147
|
-
lurq recommend "a form library for react"
|
|
144
|
+
# Evidence
|
|
148
145
|
lurq evaluate zod
|
|
149
146
|
lurq compare date-fns dayjs moment
|
|
150
147
|
lurq verify jsonwebtoken
|
|
@@ -155,7 +152,6 @@ lurq versions react # stored version timeline
|
|
|
155
152
|
|
|
156
153
|
# Stacks
|
|
157
154
|
lurq compat next react react-dom # do these install together?
|
|
158
|
-
lurq plan ./project.md # a description in, a scored stack out
|
|
159
155
|
|
|
160
156
|
# Upgrades
|
|
161
157
|
lurq upgrade-plan . # what's behind, and what each upgrade removes
|
|
@@ -231,7 +227,7 @@ cadence, maintenance, advisories, deprecations, license, bundle cost.
|
|
|
231
227
|
|
|
232
228
|
**Executed** — an isolated sandbox (E2B, with a local driver for trusted work) that
|
|
233
229
|
installs and imports a package version. Results are recorded in the compatibility matrix.
|
|
234
|
-
Compatibility is established through co-installation. `compat`
|
|
230
|
+
Compatibility is established through co-installation. `compat` reads those edges, which is why lurq can tell you
|
|
235
231
|
that an entire stack holds together.
|
|
236
232
|
|
|
237
233
|
Executable proof allows lurq to look beyond changelogs and training data.
|
|
@@ -240,9 +236,8 @@ Executable proof allows lurq to look beyond changelogs and training data.
|
|
|
240
236
|
|
|
241
237
|
## How ranking works
|
|
242
238
|
|
|
243
|
-
Deterministic, and public. **No model sits in the
|
|
244
|
-
|
|
245
|
-
cheap, and reproducible.
|
|
239
|
+
Deterministic, and public. **No model sits in the scoring path** — health and quality
|
|
240
|
+
are computed from recorded signals, which is why lurq is fast, cheap, and reproducible.
|
|
246
241
|
|
|
247
242
|
```
|
|
248
243
|
health = maintenance 0.35 · adoption 0.30 · reliability 0.25 · efficiency 0.10
|