agent-readiness 0.4.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/LICENSE +21 -0
- package/README.md +142 -0
- package/bin/agent-ready.mjs +296 -0
- package/lib/core.mjs +971 -0
- package/lib/fix.mjs +564 -0
- package/lib/github.mjs +51 -0
- package/lib/report.mjs +57 -0
- package/package.json +54 -0
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "agent-readiness",
|
|
3
|
+
"version": "0.4.0",
|
|
4
|
+
"description": "Make any website agent-ready: scan it, generate llms.txt + WebMCP tool scaffolds, inject them into your project, score it, and open the fix as a PR.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"agent-ready": "bin/agent-ready.mjs"
|
|
8
|
+
},
|
|
9
|
+
"main": "lib/core.mjs",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": "./lib/core.mjs",
|
|
12
|
+
"./core": "./lib/core.mjs",
|
|
13
|
+
"./lib/core.mjs": "./lib/core.mjs",
|
|
14
|
+
"./package.json": "./package.json"
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"test": "node --test"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"bin",
|
|
21
|
+
"lib"
|
|
22
|
+
],
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=20.19.0"
|
|
25
|
+
},
|
|
26
|
+
"keywords": [
|
|
27
|
+
"webmcp",
|
|
28
|
+
"llms.txt",
|
|
29
|
+
"llmstxt",
|
|
30
|
+
"agentic-web",
|
|
31
|
+
"agent-ready",
|
|
32
|
+
"agent-readiness",
|
|
33
|
+
"mcp",
|
|
34
|
+
"model-context-protocol",
|
|
35
|
+
"ai-agents",
|
|
36
|
+
"lighthouse",
|
|
37
|
+
"agentic-browsing",
|
|
38
|
+
"structured-data",
|
|
39
|
+
"website-scanner"
|
|
40
|
+
],
|
|
41
|
+
"homepage": "https://agent-ready-web.vercel.app",
|
|
42
|
+
"repository": {
|
|
43
|
+
"type": "git",
|
|
44
|
+
"url": "git+https://github.com/VeldinS/agent-ready.git"
|
|
45
|
+
},
|
|
46
|
+
"bugs": {
|
|
47
|
+
"url": "https://github.com/VeldinS/agent-ready/issues"
|
|
48
|
+
},
|
|
49
|
+
"author": "Veldin Salcinovic (https://github.com/VeldinS)",
|
|
50
|
+
"license": "MIT",
|
|
51
|
+
"dependencies": {
|
|
52
|
+
"node-html-parser": "^8.0.4"
|
|
53
|
+
}
|
|
54
|
+
}
|