@ainyc/canonry 2.4.6 → 2.5.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/README.md +1 -1
- package/assets/agent-workspace/skills/canonry-setup/SKILL.md +3 -3
- package/assets/agent-workspace/skills/canonry-setup/references/canonry-cli.md +2 -0
- package/assets/agent-workspace/skills/canonry-setup/references/indexing.md +8 -0
- package/assets/assets/{index-Nrl3ecFY.js → index-agELvqT1.js} +14 -14
- package/assets/index.html +1 -1
- package/dist/{chunk-6UY2PETG.js → chunk-TIHU2YXW.js} +378 -128
- package/dist/cli.js +90 -9
- package/dist/index.js +1 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@ainyc/canonry) [](https://fsl.software/) [](https://nodejs.org)
|
|
4
4
|
|
|
5
|
-
Canonry is an agent-first AEO platform. It ships a built-in AI agent — **Aero** — that reads project state, analyzes regressions, acts through a typed tool surface, and wakes up unprompted when runs complete. Users who prefer their own agent (Claude Code, Codex, custom) consume Canonry through the same CLI/API surface or subscribe via webhook. It tracks how ChatGPT, Gemini, Claude, and Perplexity cite your site, detects regressions, diagnoses causes, coordinates fixes, and reports results.
|
|
5
|
+
Canonry is an agent-first AEO operating platform. It ships a built-in AI agent — **Aero** — that reads project state, analyzes regressions, acts through a typed tool surface, and wakes up unprompted when runs complete. Users who prefer their own agent (Claude Code, Codex, custom) consume Canonry through the same CLI/API surface or subscribe via webhook. It tracks how ChatGPT, Gemini, Claude, and Perplexity cite your site, detects regressions, diagnoses causes, coordinates fixes, and reports results.
|
|
6
6
|
|
|
7
7
|
AEO (Answer Engine Optimization) is about making sure your content shows up accurately in AI-generated answers. As search shifts from links to synthesized responses, you need something that can monitor, analyze, and act across these engines continuously.
|
|
8
8
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: canonry
|
|
3
|
-
description: "Agent-first AEO
|
|
3
|
+
description: "Agent-first AEO operating platform."
|
|
4
4
|
metadata:
|
|
5
5
|
{
|
|
6
6
|
"agent":
|
|
@@ -32,7 +32,7 @@ metadata:
|
|
|
32
32
|
|
|
33
33
|
# Canonry
|
|
34
34
|
|
|
35
|
-
|
|
35
|
+
Agent-first open-source AEO (Answer Engine Optimization) operating platform. Track how AI answer engines cite your domain across Gemini, ChatGPT, Claude, and Perplexity, then act on the signal through the content engine and integrations.
|
|
36
36
|
|
|
37
37
|
**Website:** [ainyc.ai](https://ainyc.ai) | **Docs:** [github.com/AINYC/canonry](https://github.com/AINYC/canonry)
|
|
38
38
|
|
|
@@ -54,7 +54,7 @@ Open-source AEO (Answer Engine Optimization) monitoring platform. Track how AI a
|
|
|
54
54
|
|
|
55
55
|
## Toolchain
|
|
56
56
|
|
|
57
|
-
### canonry (AEO
|
|
57
|
+
### canonry (AEO Operating Platform)
|
|
58
58
|
```bash
|
|
59
59
|
# List projects
|
|
60
60
|
canonry project list
|
|
@@ -216,6 +216,8 @@ canonry bing set-site <project> <url> # set active site URL
|
|
|
216
216
|
canonry bing coverage <project> # URL coverage data
|
|
217
217
|
canonry bing refresh <project> # force-fetch fresh Bing coverage data
|
|
218
218
|
canonry bing inspect <project> <url> # inspect specific URL
|
|
219
|
+
canonry bing inspect-sitemap <project> # discover sitemap URLs and inspect each via Bing
|
|
220
|
+
canonry bing inspect-sitemap <project> --sitemap-url <url> --wait # explicit sitemap, wait for run
|
|
219
221
|
canonry bing inspections <project> # inspection history
|
|
220
222
|
canonry bing request-indexing <project> <url> # submit URL for indexing
|
|
221
223
|
canonry bing request-indexing <project> --all-unindexed # submit all unindexed
|
|
@@ -90,6 +90,14 @@ canonry bing inspect <project> <url>
|
|
|
90
90
|
canonry bing inspections <project>
|
|
91
91
|
```
|
|
92
92
|
|
|
93
|
+
### Inspect every URL in your sitemap
|
|
94
|
+
```bash
|
|
95
|
+
canonry bing inspect-sitemap <project> # default https://<domain>/sitemap.xml
|
|
96
|
+
canonry bing inspect-sitemap <project> --sitemap-url <url> # explicit sitemap or sitemap index
|
|
97
|
+
canonry bing inspect-sitemap <project> --wait # block until the run finishes
|
|
98
|
+
```
|
|
99
|
+
Bing has no native sitemap inspection API — this command fetches the sitemap, diffs against the tracked URL set, then calls `GetUrlInfo` for each discovered URL so coverage reflects the full sitemap rather than only previously inspected pages.
|
|
100
|
+
|
|
93
101
|
### Submit URLs for indexing
|
|
94
102
|
```bash
|
|
95
103
|
canonry bing request-indexing <project> <url>
|