lurqrun 0.0.6 → 0.0.7
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 -3
- package/dist/bin/lurq.js +7406 -3748
- package/dist/bin/lurq.js.map +1 -1
- package/dist/index.d.ts +61 -3
- package/dist/index.js +7173 -3515
- package/dist/index.js.map +1 -1
- package/drizzle/0017_absent_grandmaster.sql +20 -0
- package/drizzle/0018_rainy_proemial_gods.sql +1 -0
- package/drizzle/0019_dashing_korvac.sql +11 -0
- package/drizzle/0020_normal_vulture.sql +3 -0
- package/drizzle/0021_dazzling_blue_shield.sql +17 -0
- package/drizzle/0022_massive_ghost_rider.sql +24 -0
- package/drizzle/0023_next_shatterstar.sql +1 -0
- package/drizzle/meta/0017_snapshot.json +1834 -0
- package/drizzle/meta/0018_snapshot.json +1834 -0
- package/drizzle/meta/0019_snapshot.json +1909 -0
- package/drizzle/meta/0020_snapshot.json +1921 -0
- package/drizzle/meta/0021_snapshot.json +2045 -0
- package/drizzle/meta/0022_snapshot.json +2246 -0
- package/drizzle/meta/0023_snapshot.json +2252 -0
- package/drizzle/meta/_journal.json +49 -0
- package/package.json +7 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# lurq
|
|
2
2
|
|
|
3
|
-
> execution-verified answers for AI coding agents. a live index of npm scored from public signals, plus a sandbox that settles the questions metadata can't — exposed as an mcp server, a cli, an http api, and an installable agent skill, compatible with claude code, cursor, windsurf, vscode/copilot, and
|
|
3
|
+
> execution-verified answers for AI coding agents. a live index of npm scored from public signals, plus a sandbox that settles the questions metadata can't — exposed as an mcp server, a cli, an http api, and an installable agent skill, compatible with claude code, cursor, windsurf, vscode/copilot, codex, gemini cli, antigravity, and kiro.
|
|
4
4
|
|
|
5
5
|
your agent picks the dependencies now, and it picks them from training data frozen at its cutoff and ranked by how often a name appeared in text — not by whether the package is healthy today. so agents install libraries that are abandoned, carry open advisories, or don't exist at all.
|
|
6
6
|
|
|
@@ -25,7 +25,8 @@ npx lurqrun install
|
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
it prompts for your key, validates it, detects your installed assistants
|
|
28
|
-
(claude code, cursor, windsurf, vscode/copilot, codex
|
|
28
|
+
(claude code, cursor, windsurf, vscode/copilot, codex, gemini cli, antigravity,
|
|
29
|
+
kiro), and writes a keyed
|
|
29
30
|
remote mcp entry:
|
|
30
31
|
`{ "type": "http", "url": "https://api.lurq.run/mcp", "headers": { "Authorization": "Bearer …" } }`.
|
|
31
32
|
**no database credentials ever touch your machine.** restart your agent afterward.
|
|
@@ -54,7 +55,7 @@ lurq recommend "a form library for react"
|
|
|
54
55
|
lurq verify jsonwebtoken
|
|
55
56
|
lurq compare date-fns dayjs moment
|
|
56
57
|
lurq compat next react react-dom # do these install together?
|
|
57
|
-
lurq usage zod --known 3.22.4 # what changed in the api since?
|
|
58
|
+
lurq usage zod --known 3.22.4 # what changed in the api since? (--target pins a version)
|
|
58
59
|
lurq plan ./project.md # a description in, a scored stack out
|
|
59
60
|
lurq serve-http # run it as a rate-limited service of your own
|
|
60
61
|
lurq weights # the exact ranking weights, printed
|