@ainyc/canonry 4.56.1 → 4.57.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/aero/references/orchestration.md +1 -1
- package/assets/agent-workspace/skills/canonry/SKILL.md +1 -1
- package/dist/{chunk-I2LAM5IM.js → chunk-HL6JZUEW.js} +273 -212
- package/dist/cli.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -52,7 +52,7 @@ Set up canonry for me. Canonry is an open-source platform that tracks how AI ans
|
|
|
52
52
|
3. Run `cnry init` in this directory. This scaffolds config and installs the canonry skills into `.claude/skills/canonry/`, `.claude/skills/aero/`, `.codex/skills/canonry/`, and `.codex/skills/aero/`. If the skills aren't there afterwards, run `cnry skills install`.
|
|
53
53
|
4. Read the operator playbook at `.claude/skills/canonry/SKILL.md` and follow it end-to-end: create the project with my domain and queries, wire up the provider key I chose, and trigger the first sweep.
|
|
54
54
|
5. Open my browser to the dashboard so I can see the run results.
|
|
55
|
-
6. Switch to the analyst playbook at `.claude/skills/aero/SKILL.md` and run a baseline AEO audit on my behalf. Read citation evidence with `cnry evidence <project> --format json`, then run `npx @ainyc/aeo-audit "<my-domain>" --format json` for a site-readiness score.
|
|
55
|
+
6. Switch to the analyst playbook at `.claude/skills/aero/SKILL.md` and run a baseline AEO audit on my behalf. Read citation evidence with `cnry evidence <project> --format json`, then run `npx @ainyc/aeo-audit "<my-domain>" --sitemap --format json` for a site-readiness score. The `--sitemap` flag audits every page listed in my sitemap instead of just the homepage, so the readiness score reflects the whole site.
|
|
56
56
|
7. Summarize what you found: my mention and citation rates per provider, the top 3 queries I'm not yet cited on, and the highest-impact site issues from the audit. Ask me for permission before taking any further action, such as drafting content, submitting URLs for indexing, editing files, or anything else that changes my site.
|
|
57
57
|
```
|
|
58
58
|
|
|
@@ -12,7 +12,7 @@ Trigger: First sweep completes for a new project
|
|
|
12
12
|
Steps:
|
|
13
13
|
1. `cnry evidence <project> --format json` → get initial citation data
|
|
14
14
|
2. Compute baseline: cited rate, provider breakdown, top/bottom queries
|
|
15
|
-
3. `npx @ainyc/aeo-audit "<domain>" --format json` → site readiness score
|
|
15
|
+
3. `npx @ainyc/aeo-audit "<domain>" --sitemap --format json` → site readiness score across every page in the sitemap (auto-discovered; add `--limit <n>` to cap, default 200)
|
|
16
16
|
4. Identify top 3 gaps (uncited queries with fixable site issues)
|
|
17
17
|
5. Generate onboarding report with baseline + action plan
|
|
18
18
|
6. Store baseline metrics in memory
|
|
@@ -71,7 +71,7 @@ Configure `spec.brandAliases` on the project (or pass via `cnry apply`) so the m
|
|
|
71
71
|
|
|
72
72
|
A canonry engagement follows the same loop regardless of project size:
|
|
73
73
|
|
|
74
|
-
1. **Diagnose** — Run a baseline sweep (`cnry run <project> --wait`) and a technical audit (`npx @ainyc/aeo-audit@latest <url> --format json`). Read Mention Coverage first, Citation Coverage second. See `references/aeo-analysis.md`.
|
|
74
|
+
1. **Diagnose** — Run a baseline sweep (`cnry run <project> --wait`) and a technical audit (`npx @ainyc/aeo-audit@latest <url> --sitemap --format json`). `--sitemap` audits every page in the site's sitemap (auto-discovered from `/sitemap.xml`, the sitemap index, or `robots.txt`) so readiness reflects the whole site, not just one page. Read Mention Coverage first, Citation Coverage second. See `references/aeo-analysis.md`.
|
|
75
75
|
2. **Prioritize** — Triage by impact: indexing gaps → schema gaps → content gaps → query strategy. Branded-term losses are urgent.
|
|
76
76
|
3. **Execute** — Apply fixes via the canonry CLI or platform integrations. Use `--dry-run` on supported mutations (`cnry project delete`, `cnry query replace`, `cnry backfill ...`) to preview before committing. See `references/canonry-cli.md` for the full command catalog and `references/wordpress-integration.md` for the WordPress workflow.
|
|
77
77
|
4. **Monitor** — Re-run sweeps weekly (`cnry run --all --wait` fans out across every project). Correlate visibility shifts with deployments and competitor moves.
|