@ainyc/canonry 4.29.0 → 4.29.1

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 CHANGED
@@ -5,7 +5,7 @@
5
5
  **Agent-first AEO operating platform. Open source. Self-hosted.**
6
6
 
7
7
  - Track citations across Gemini, ChatGPT, Claude, Perplexity, and local LLMs
8
- - Watch AI engines crawl and refer traffic via [server-log ingestion](skills/canonry-setup/references/server-side-traffic.md) — Cloud Run logs and the WordPress Traffic Logger plugin today
8
+ - Watch AI engines crawl and refer traffic via [server-log ingestion](skills/canonry/references/server-side-traffic.md) — Cloud Run logs and the WordPress Traffic Logger plugin today
9
9
  - Diagnose against real traffic with built-in [GSC](docs/google-search-console-setup.md), [GA4](docs/google-analytics-setup.md), and [Bing Webmaster](docs/bing-webmaster-setup.md)
10
10
  - Execute fixes via [WordPress](docs/wordpress-setup.md), JSON-LD schema, and indexing submissions
11
11
  - Manage many clients declaratively — config-as-code YAML + `canonry apply`
@@ -66,10 +66,10 @@ Configure during `canonry init`, in the dashboard `/settings`, or as env vars.
66
66
  | **Architecture & data model** | [docs/architecture.md](docs/architecture.md) · [docs/data-model.md](docs/data-model.md) |
67
67
  | **Aero — built-in agent** | [skills/aero/SKILL.md](skills/aero/SKILL.md) |
68
68
  | **MCP — Claude Desktop / Cursor / Codex** | [docs/mcp.md](docs/mcp.md) |
69
- | **Integrations** | [GSC](docs/google-search-console-setup.md) · [GA4](docs/google-analytics-setup.md) · [Bing](docs/bing-webmaster-setup.md) · [WordPress](docs/wordpress-setup.md) · [Server-side traffic (Cloud Run + WordPress logs)](skills/canonry-setup/references/server-side-traffic.md) |
69
+ | **Integrations** | [GSC](docs/google-search-console-setup.md) · [GA4](docs/google-analytics-setup.md) · [Bing](docs/bing-webmaster-setup.md) · [WordPress](docs/wordpress-setup.md) · [Server-side traffic (Cloud Run + WordPress logs)](skills/canonry/references/server-side-traffic.md) |
70
70
  | **Deployment** — Docker, Railway, Render, systemd, Tailscale | [docs/deployment.md](docs/deployment.md) |
71
71
  | **API** — 118+ endpoints | `GET /api/v1/openapi.json` (no auth) |
72
- | **Skills bundle** for Claude Code / Codex | `canonry skills install` ([details](skills/canonry-setup/SKILL.md)) |
72
+ | **Skills bundle** for Claude Code / Codex | `canonry skills install` ([details](skills/canonry/SKILL.md)) |
73
73
  | **Roadmap & ADRs** | [docs/roadmap.md](docs/roadmap.md) · [docs/adr/](docs/adr/) |
74
74
  | **All docs** | [docs/README.md](docs/README.md) |
75
75
 
@@ -78,7 +78,7 @@ Provider APIs have rate limits. Follow these guidelines:
78
78
 
79
79
  Reference skills are available in `skills/` for domain-specific guidance:
80
80
 
81
- - `skills/canonry-setup/` -- Canonry installation and configuration reference
81
+ - `skills/canonry/` -- Canonry operator playbook
82
82
 
83
83
  ## Error Handling
84
84
 
@@ -14,7 +14,7 @@ You coordinate across two tools to deliver comprehensive AEO monitoring:
14
14
 
15
15
  Persist only *user-scoped* context (operator preferences, communication style) in your platform's native memory. Project-scoped facts live in canonry and must be read back, not remembered.
16
16
 
17
- When a project has GA4 connected, traffic is a first-class signal alongside citations. Use `canonry ga traffic` / `canonry ga attribution --trend` for the current snapshot, `canonry ga ai-referral-history` and `canonry ga social-referral-history` for daily series. Reads query a local DB synced by `canonry ga sync` — confirm `canonry ga status` shows a recent `lastSyncedAt` before quoting numbers; if stale, re-sync first. Full command reference and return shapes live in the co-installed `canonry-setup/references/canonry-cli.md` (look for the "Google Analytics 4" section).
17
+ When a project has GA4 connected, traffic is a first-class signal alongside citations. Use `canonry ga traffic` / `canonry ga attribution --trend` for the current snapshot, `canonry ga ai-referral-history` and `canonry ga social-referral-history` for daily series. Reads query a local DB synced by `canonry ga sync` — confirm `canonry ga status` shows a recent `lastSyncedAt` before quoting numbers; if stale, re-sync first. Full command reference and return shapes live in the co-installed `canonry/references/canonry-cli.md` (look for the "Google Analytics 4" section).
18
18
 
19
19
  ## Judgment Rules
20
20
 
package/dist/cli.js CHANGED
@@ -7298,7 +7298,7 @@ Usage: canonry settings provider ${name} --api-key <key> [--model <model>] [--ma
7298
7298
  import fs7 from "fs";
7299
7299
  import path4 from "path";
7300
7300
  import { fileURLToPath } from "url";
7301
- var BUNDLED_SKILL_NAMES = ["canonry-setup", "aero"];
7301
+ var BUNDLED_SKILL_NAMES = ["canonry", "aero"];
7302
7302
  function resolveBundledSkillsRoot(pkgDir) {
7303
7303
  const here = pkgDir ?? path4.dirname(fileURLToPath(import.meta.url));
7304
7304
  const candidates = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ainyc/canonry",
3
- "version": "4.29.0",
3
+ "version": "4.29.1",
4
4
  "type": "module",
5
5
  "description": "Agent-first open-source AEO operating platform - track how answer engines cite your domain",
6
6
  "license": "FSL-1.1-ALv2",
@@ -59,23 +59,23 @@
59
59
  "@types/node-cron": "^3.0.11",
60
60
  "tsup": "^8.5.1",
61
61
  "tsx": "^4.19.0",
62
- "@ainyc/canonry-api-routes": "0.0.0",
62
+ "@ainyc/canonry-config": "0.0.0",
63
63
  "@ainyc/canonry-contracts": "0.0.0",
64
+ "@ainyc/canonry-api-routes": "0.0.0",
64
65
  "@ainyc/canonry-db": "0.0.0",
66
+ "@ainyc/canonry-integration-cloud-run": "0.0.0",
65
67
  "@ainyc/canonry-intelligence": "0.0.0",
66
68
  "@ainyc/canonry-integration-bing": "0.0.0",
67
- "@ainyc/canonry-config": "0.0.0",
68
- "@ainyc/canonry-integration-cloud-run": "0.0.0",
69
69
  "@ainyc/canonry-integration-commoncrawl": "0.0.0",
70
70
  "@ainyc/canonry-integration-google": "0.0.0",
71
71
  "@ainyc/canonry-integration-traffic": "0.0.0",
72
- "@ainyc/canonry-provider-cdp": "0.0.0",
72
+ "@ainyc/canonry-integration-wordpress": "0.0.0",
73
73
  "@ainyc/canonry-provider-claude": "0.0.0",
74
- "@ainyc/canonry-provider-local": "0.0.0",
74
+ "@ainyc/canonry-provider-cdp": "0.0.0",
75
75
  "@ainyc/canonry-provider-gemini": "0.0.0",
76
- "@ainyc/canonry-integration-wordpress": "0.0.0",
77
- "@ainyc/canonry-provider-openai": "0.0.0",
78
- "@ainyc/canonry-provider-perplexity": "0.0.0"
76
+ "@ainyc/canonry-provider-local": "0.0.0",
77
+ "@ainyc/canonry-provider-perplexity": "0.0.0",
78
+ "@ainyc/canonry-provider-openai": "0.0.0"
79
79
  },
80
80
  "scripts": {
81
81
  "build": "tsx scripts/copy-agent-assets.ts && tsup && tsx build-web.ts",