afdocs 0.1.0 → 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 +3 -0
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# afdocs
|
|
2
2
|
|
|
3
|
+
[](https://github.com/agent-ecosystem/afdocs/actions/workflows/ci.yml)
|
|
4
|
+
[](https://www.npmjs.com/package/afdocs)
|
|
5
|
+
|
|
3
6
|
Test your documentation site against the [Agent-Friendly Documentation Spec](https://agentdocsspec.com).
|
|
4
7
|
|
|
5
8
|
Agents don't use docs like humans. They hit truncation limits, get walls of CSS instead of content, can't follow cross-host redirects, and don't know about quality-of-life improvements like `llms.txt` or `.md` docs pages that would make life swell. Maybe this is because the industry has lacked guidance - until now.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "afdocs",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Test your documentation site against the Agent-Friendly Documentation Spec",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -49,6 +49,10 @@
|
|
|
49
49
|
"dist/",
|
|
50
50
|
"bin/"
|
|
51
51
|
],
|
|
52
|
+
"repository": {
|
|
53
|
+
"type": "git",
|
|
54
|
+
"url": "https://github.com/agent-ecosystem/afdocs.git"
|
|
55
|
+
},
|
|
52
56
|
"license": "MIT",
|
|
53
57
|
"engines": {
|
|
54
58
|
"node": ">=20"
|