@ainyc/canonry 2.4.5 → 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 +12 -2
- 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 +116 -19
- package/dist/index.js +1 -1
- package/package.json +9 -9
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
|
|
|
@@ -166,7 +166,17 @@ Integration setup guides: [Google Search Console](docs/google-search-console-set
|
|
|
166
166
|
|
|
167
167
|
## Skills
|
|
168
168
|
|
|
169
|
-
Canonry ships a bundled `canonry-setup` skill that
|
|
169
|
+
Canonry ships a bundled `canonry-setup` skill that turns Aero (or any Claude-powered agent) into an AEO/SEO operator. **Claude Code** picks it up automatically from `.claude/skills/canonry-setup/` when you open this repo; the same content lives under [`skills/canonry-setup/`](skills/canonry-setup/) for portable use with other harnesses.
|
|
170
|
+
|
|
171
|
+
The skill covers the end-to-end answer-engine optimization loop:
|
|
172
|
+
|
|
173
|
+
- **AEO monitoring.** Running citation sweeps across Gemini, ChatGPT, Claude, and Perplexity via `canonry run` / `canonry evidence` / `canonry status`, including how to interpret per-phrase citation state and regressions.
|
|
174
|
+
- **Technical SEO audits.** Driving the companion [`@ainyc/aeo-audit`](https://www.npmjs.com/package/@ainyc/aeo-audit) CLI for 14-factor scoring — structured data (JSON-LD), content depth, AI-readable files (`llms.txt`, `llms-full.txt`), E-E-A-T signals, FAQ blocks, definition blocks, H1/alt/meta hygiene.
|
|
175
|
+
- **Indexing diagnosis.** Google Search Console and Bing Webmaster Tools coverage, URL inspection, and one-shot submissions via `canonry google request-indexing` / `canonry bing request-indexing`.
|
|
176
|
+
- **Schema & content execution.** Patterns for injecting LocalBusiness/FAQPage JSON-LD, writing `llms.txt` with service-area detail, trimming keyphrase lists to high-intent queries, and handling WordPress/Elementor specifics (REST API, Application Passwords, Elementor Custom Code).
|
|
177
|
+
- **Diagnose → prioritize → execute → monitor → report workflow.** Opinionated defaults for new sites (0 citations), regressions on established sites, and county-level targeting — with guardrails like "never fabricate citation data" and "back up `~/.canonry/config.yaml` before editing".
|
|
178
|
+
|
|
179
|
+
See [`skills/canonry-setup/SKILL.md`](skills/canonry-setup/SKILL.md) plus the reference files under [`skills/canonry-setup/references/`](skills/canonry-setup/references/) (`canonry-cli.md`, `aeo-analysis.md`, `indexing.md`, `wordpress-integration.md`) for the full playbook. Aero loads the same material natively, so anything an external agent can do through the skill, Aero can do from the CLI or dashboard command bar.
|
|
170
180
|
|
|
171
181
|
## Deployment
|
|
172
182
|
|
|
@@ -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>
|