aeoptimize 0.2.2 → 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/.claude-plugin/marketplace.json +6 -4
- package/.claude-plugin/plugin.json +8 -3
- package/LICENSE +21 -0
- package/README.md +34 -0
- package/dist/cli/index.js +79 -39
- package/dist/cli/index.js.map +1 -1
- package/dist/core/ai-prompt.js +33 -8
- package/dist/core/ai-prompt.js.map +1 -1
- package/dist/core/external-scorers.js +29 -19
- package/dist/core/external-scorers.js.map +1 -1
- package/dist/core/generator.js +20 -9
- package/dist/core/generator.js.map +1 -1
- package/dist/core/merger.js +13 -4
- package/dist/core/merger.js.map +1 -1
- package/dist/core/rules.js +19 -16
- package/dist/core/rules.js.map +1 -1
- package/dist/core/scanner.js +25 -11
- package/dist/core/scanner.js.map +1 -1
- package/dist/core/types.d.ts +6 -1
- package/dist/plugins/next.d.ts +14 -0
- package/dist/plugins/next.js +49 -0
- package/dist/plugins/next.js.map +1 -0
- package/dist/plugins/vite.d.ts +12 -0
- package/dist/plugins/vite.js +48 -0
- package/dist/plugins/vite.js.map +1 -0
- package/package.json +7 -3
- package/skills/aeo-scan/SKILL.md +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aeoptimize",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "CLI toolkit that transforms SEO-optimized websites into AI-search-ready content",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/core/index.js",
|
|
@@ -9,7 +9,9 @@
|
|
|
9
9
|
"aeo-cli": "./dist/cli/index.js"
|
|
10
10
|
},
|
|
11
11
|
"exports": {
|
|
12
|
-
".": "./dist/core/index.js"
|
|
12
|
+
".": "./dist/core/index.js",
|
|
13
|
+
"./vite": "./dist/plugins/vite.js",
|
|
14
|
+
"./next": "./dist/plugins/next.js"
|
|
13
15
|
},
|
|
14
16
|
"files": [
|
|
15
17
|
"dist/",
|
|
@@ -34,7 +36,9 @@
|
|
|
34
36
|
"structured-data",
|
|
35
37
|
"json-ld",
|
|
36
38
|
"generative-engine-optimization",
|
|
37
|
-
"claude-code-skill"
|
|
39
|
+
"claude-code-skill",
|
|
40
|
+
"vite-plugin",
|
|
41
|
+
"nextjs-plugin"
|
|
38
42
|
],
|
|
39
43
|
"license": "MIT",
|
|
40
44
|
"engines": {
|
package/skills/aeo-scan/SKILL.md
CHANGED
|
@@ -54,7 +54,9 @@ Scan a website or build directory and produce an interactive AI readability repo
|
|
|
54
54
|
- Expected score impact
|
|
55
55
|
- Cross-reference insights from different AI scorers if they agree/disagree
|
|
56
56
|
|
|
57
|
-
6. **
|
|
57
|
+
6. **Deep analysis (optional).** If the user wants detailed per-page analysis, dispatch the `aeo-analyzer` agent with the page HTML and scan report. It provides issue-by-issue breakdown with before/after examples.
|
|
58
|
+
|
|
59
|
+
7. **Offer next steps:**
|
|
58
60
|
- Score below 50? Suggest running `/aeo-transform` on the worst pages
|
|
59
61
|
- Missing llms.txt or schema? Suggest `/aeo-generate`
|
|
60
62
|
- Score above 80? Congratulate and suggest monitoring over time
|