@ainyc/canonry 4.194.0 → 5.0.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/LICENSE +21 -105
- package/README.md +4 -1
- package/assets/agent-workspace/skills/canonry/SKILL.md +71 -1
- package/assets/agent-workspace/skills/canonry/references/canonry-cli.md +30 -0
- package/assets/assets/{AuditHistoryPanel-C8hUWnaD.js → AuditHistoryPanel-vWUtVXOI.js} +1 -1
- package/assets/assets/{BacklinksPage-BcIdghvA.js → BacklinksPage-CSzuMEuv.js} +1 -1
- package/assets/assets/{HistoryPage-DF7PLFi1.js → HistoryPage-DtCTQ7CQ.js} +1 -1
- package/assets/assets/{MeasurementPropertyPage-BTlXQbYt.js → MeasurementPropertyPage-B7gTMWNs.js} +1 -1
- package/assets/assets/{ProjectPage-YiZ_i5eX.js → ProjectPage-Bsm0_jUY.js} +1 -1
- package/assets/assets/{RunRow-CfzuyTSM.js → RunRow-D5k4Rdo4.js} +1 -1
- package/assets/assets/{RunsPage-Diu_-YWl.js → RunsPage-DIXBB2Om.js} +1 -1
- package/assets/assets/{SettingsPage-g93aqkg2.js → SettingsPage-wYhBm6Az.js} +1 -1
- package/assets/assets/{SiteHealthSection-DroMQJVF.js → SiteHealthSection-YebzsgDh.js} +3 -3
- package/assets/assets/{TrafficPage-BhHjy5Ee.js → TrafficPage-DtnSRFO8.js} +1 -1
- package/assets/assets/{TrafficSourceDetailPage-DI3aZIHo.js → TrafficSourceDetailPage-DYQ6mpYq.js} +1 -1
- package/assets/assets/{extract-error-message-DjXzzSl3.js → extract-error-message-BdChrkmo.js} +1 -1
- package/assets/assets/{index-33ZEL6A5.js → index-C_E2NRYY.js} +26 -26
- package/assets/assets/{react-sigma_core.esm.min-BlfsZb5G.js → react-sigma_core.esm.min-sKWUk_tG.js} +1 -1
- package/assets/assets/{v2-overview-adapter-C6cROMod.js → v2-overview-adapter-CkPt-sRK.js} +1 -1
- package/assets/index.html +1 -1
- package/dist/{chunk-X5AE3GNC.js → chunk-3WODA4JF.js} +276 -5
- package/dist/{chunk-ZA2QVBQO.js → chunk-67NX4KVE.js} +73 -36
- package/dist/{chunk-7XXXNNE2.js → chunk-B2XM6AQ6.js} +280 -26
- package/dist/{chunk-AO5QJJE6.js → chunk-LJKAB4CX.js} +2 -2
- package/dist/{chunk-QVYGI6CL.js → chunk-UMU3IBXM.js} +1225 -474
- package/dist/cli.js +233 -154
- package/dist/index.js +4 -4
- package/dist/{intelligence-service-M4V3YPFZ.js → intelligence-service-MGQRJW4V.js} +2 -2
- package/dist/mcp.js +4 -4
- package/package.json +12 -11
package/dist/mcp.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
2
|
autoSyncSkills
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-LJKAB4CX.js";
|
|
4
4
|
import {
|
|
5
5
|
createApiClient,
|
|
6
6
|
createCanonryMcpServer
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-B2XM6AQ6.js";
|
|
8
8
|
import {
|
|
9
9
|
isReadOnlyKey
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-3WODA4JF.js";
|
|
11
11
|
|
|
12
12
|
// src/mcp/cli.ts
|
|
13
13
|
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|
|
@@ -45,7 +45,7 @@ async function main(argv = process.argv.slice(2)) {
|
|
|
45
45
|
throw error;
|
|
46
46
|
}
|
|
47
47
|
void autoSyncSkills();
|
|
48
|
-
const client = createApiClient();
|
|
48
|
+
const client = createApiClient({ clientName: "canonry-mcp" });
|
|
49
49
|
const authorization = await resolveEffectiveAuthorization(client, options.scope);
|
|
50
50
|
const server = createCanonryMcpServer({ ...authorization, eager: options.eager, clientFactory: () => client });
|
|
51
51
|
await server.connect(new StdioServerTransport());
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ainyc/canonry",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Self-hosted AI visibility (AEO) platform: track how ChatGPT, Claude, Gemini, and Perplexity cite your domain, join it with Search Console, GA4, server-side traffic, and paid media, and fix what you find through agent tools (CLI, REST, MCP). Local SQLite.",
|
|
6
|
-
"license": "
|
|
6
|
+
"license": "MIT",
|
|
7
7
|
"homepage": "https://canonry.ai",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
@@ -34,7 +34,8 @@
|
|
|
34
34
|
"assets/",
|
|
35
35
|
"package.json",
|
|
36
36
|
"README.md",
|
|
37
|
-
"THIRD_PARTY_NOTICES.md"
|
|
37
|
+
"THIRD_PARTY_NOTICES.md",
|
|
38
|
+
"LICENSE"
|
|
38
39
|
],
|
|
39
40
|
"engines": {
|
|
40
41
|
"node": ">=22.14.0 <27"
|
|
@@ -71,31 +72,31 @@
|
|
|
71
72
|
"tsup": "^8.5.1",
|
|
72
73
|
"tsx": "^4.19.0",
|
|
73
74
|
"@ainyc/canonry-web": "0.0.0",
|
|
75
|
+
"@ainyc/canonry-api-client": "0.0.0",
|
|
74
76
|
"@ainyc/canonry-api-routes": "0.0.0",
|
|
75
77
|
"@ainyc/canonry-contracts": "0.0.0",
|
|
76
78
|
"@ainyc/canonry-config": "0.0.0",
|
|
77
|
-
"@ainyc/canonry-api-client": "0.0.0",
|
|
78
79
|
"@ainyc/canonry-integration-bing": "0.0.0",
|
|
79
80
|
"@ainyc/canonry-db": "0.0.0",
|
|
80
81
|
"@ainyc/canonry-integration-cloud-run": "0.0.0",
|
|
81
|
-
"@ainyc/canonry-integration-cloudflare-worker": "0.0.0",
|
|
82
82
|
"@ainyc/canonry-integration-cloudflare-queue": "0.0.0",
|
|
83
|
-
"@ainyc/canonry-integration-
|
|
84
|
-
"@ainyc/canonry-integration-
|
|
83
|
+
"@ainyc/canonry-integration-cloudflare-worker": "0.0.0",
|
|
84
|
+
"@ainyc/canonry-integration-google": "0.0.0",
|
|
85
85
|
"@ainyc/canonry-integration-google-business-profile": "0.0.0",
|
|
86
|
+
"@ainyc/canonry-integration-commoncrawl": "0.0.0",
|
|
87
|
+
"@ainyc/canonry-integration-google-ads": "0.0.0",
|
|
86
88
|
"@ainyc/canonry-integration-google-places": "0.0.0",
|
|
87
|
-
"@ainyc/canonry-integration-google": "0.0.0",
|
|
88
89
|
"@ainyc/canonry-integration-google-tag-manager": "0.0.0",
|
|
89
90
|
"@ainyc/canonry-integration-openai-ads": "0.0.0",
|
|
90
91
|
"@ainyc/canonry-integration-traffic": "0.0.0",
|
|
91
92
|
"@ainyc/canonry-integration-wordpress": "0.0.0",
|
|
92
93
|
"@ainyc/canonry-intelligence": "0.0.0",
|
|
93
|
-
"@ainyc/canonry-provider-claude": "0.0.0",
|
|
94
|
-
"@ainyc/canonry-provider-local": "0.0.0",
|
|
95
94
|
"@ainyc/canonry-provider-cdp": "0.0.0",
|
|
95
|
+
"@ainyc/canonry-provider-claude": "0.0.0",
|
|
96
96
|
"@ainyc/canonry-provider-gemini": "0.0.0",
|
|
97
97
|
"@ainyc/canonry-provider-openai": "0.0.0",
|
|
98
|
-
"@ainyc/canonry-provider-perplexity": "0.0.0"
|
|
98
|
+
"@ainyc/canonry-provider-perplexity": "0.0.0",
|
|
99
|
+
"@ainyc/canonry-provider-local": "0.0.0"
|
|
99
100
|
},
|
|
100
101
|
"scripts": {
|
|
101
102
|
"build": "pnpm run build:cli && pnpm run build:web",
|