@ainyc/canonry 4.24.0 → 4.25.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/assets/agent-workspace/skills/aero/references/aeo-discovery.md +89 -0
- package/assets/agent-workspace/skills/canonry-setup/references/canonry-cli.md +14 -0
- package/assets/assets/index-C4scWriC.js +302 -0
- package/assets/index.html +1 -1
- package/dist/{chunk-E5PZ23OS.js → chunk-6J6WQOGH.js} +905 -195
- package/dist/{chunk-6EJ54OX7.js → chunk-A7HQ6X43.js} +91 -1
- package/dist/{chunk-EUGCQSFC.js → chunk-CRQMGNPH.js} +133 -1
- package/dist/{chunk-OYYFXKRK.js → chunk-IS65IYNZ.js} +115 -2
- package/dist/cli.js +424 -123
- package/dist/index.js +4 -4
- package/dist/{intelligence-service-NVN2PAR7.js → intelligence-service-XLUYTE57.js} +2 -2
- package/dist/mcp.js +9 -3
- package/package.json +8 -8
- package/assets/assets/index-BFfB9cRq.js +0 -302
package/dist/index.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
createServer
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-6J6WQOGH.js";
|
|
4
4
|
import {
|
|
5
5
|
loadConfig
|
|
6
|
-
} from "./chunk-
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
6
|
+
} from "./chunk-A7HQ6X43.js";
|
|
7
|
+
import "./chunk-IS65IYNZ.js";
|
|
8
|
+
import "./chunk-CRQMGNPH.js";
|
|
9
9
|
export {
|
|
10
10
|
createServer,
|
|
11
11
|
loadConfig
|
package/dist/mcp.js
CHANGED
|
@@ -2,8 +2,8 @@ import {
|
|
|
2
2
|
CliError,
|
|
3
3
|
canonryMcpTools,
|
|
4
4
|
createApiClient
|
|
5
|
-
} from "./chunk-
|
|
6
|
-
import "./chunk-
|
|
5
|
+
} from "./chunk-A7HQ6X43.js";
|
|
6
|
+
import "./chunk-CRQMGNPH.js";
|
|
7
7
|
|
|
8
8
|
// src/mcp/cli.ts
|
|
9
9
|
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|
|
@@ -107,7 +107,7 @@ function zodErrorMessage(error) {
|
|
|
107
107
|
}
|
|
108
108
|
|
|
109
109
|
// src/mcp/toolkits.ts
|
|
110
|
-
var CANONRY_MCP_TOOLKIT_NAMES = ["monitoring", "setup", "gsc", "ga", "traffic", "agent"];
|
|
110
|
+
var CANONRY_MCP_TOOLKIT_NAMES = ["monitoring", "setup", "gsc", "ga", "traffic", "agent", "discovery"];
|
|
111
111
|
var CANONRY_MCP_TOOLKITS = [
|
|
112
112
|
{
|
|
113
113
|
name: "monitoring",
|
|
@@ -144,6 +144,12 @@ var CANONRY_MCP_TOOLKITS = [
|
|
|
144
144
|
title: "Aero agent lifecycle and memory",
|
|
145
145
|
description: "Manage the built-in Aero agent: durable project-scoped memory (list/set/forget), clear the rolling transcript, and detach the external-agent webhook.",
|
|
146
146
|
whenToLoad: "Load when reading or writing project-scoped Aero notes, clearing a stuck conversation, or removing an external agent webhook."
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
name: "discovery",
|
|
150
|
+
title: "Tracked-basket discovery (ICP \u2192 buckets)",
|
|
151
|
+
description: "Start and inspect discovery sessions. Each session expands an ICP description into a deduped set of representative queries, probes them against Gemini grounding, classifies each probe into cited / aspirational / wasted-surface, and aggregates a competitor map for the project.",
|
|
152
|
+
whenToLoad: "Load when the operator wants to expand or audit a project's tracked-query basket, audit competitive surface, or preview a promotion plan from a discovery session."
|
|
147
153
|
}
|
|
148
154
|
];
|
|
149
155
|
function isCanonryMcpToolkitName(value) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ainyc/canonry",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.25.0",
|
|
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",
|
|
@@ -60,22 +60,22 @@
|
|
|
60
60
|
"tsup": "^8.5.1",
|
|
61
61
|
"tsx": "^4.19.0",
|
|
62
62
|
"@ainyc/canonry-api-routes": "0.0.0",
|
|
63
|
-
"@ainyc/canonry-config": "0.0.0",
|
|
64
63
|
"@ainyc/canonry-contracts": "0.0.0",
|
|
65
|
-
"@ainyc/canonry-
|
|
64
|
+
"@ainyc/canonry-config": "0.0.0",
|
|
66
65
|
"@ainyc/canonry-db": "0.0.0",
|
|
66
|
+
"@ainyc/canonry-intelligence": "0.0.0",
|
|
67
67
|
"@ainyc/canonry-integration-cloud-run": "0.0.0",
|
|
68
|
+
"@ainyc/canonry-integration-bing": "0.0.0",
|
|
68
69
|
"@ainyc/canonry-integration-google": "0.0.0",
|
|
69
|
-
"@ainyc/canonry-integration-commoncrawl": "0.0.0",
|
|
70
70
|
"@ainyc/canonry-integration-traffic": "0.0.0",
|
|
71
|
-
"@ainyc/canonry-integration-bing": "0.0.0",
|
|
72
71
|
"@ainyc/canonry-integration-wordpress": "0.0.0",
|
|
72
|
+
"@ainyc/canonry-integration-commoncrawl": "0.0.0",
|
|
73
73
|
"@ainyc/canonry-provider-cdp": "0.0.0",
|
|
74
74
|
"@ainyc/canonry-provider-claude": "0.0.0",
|
|
75
|
-
"@ainyc/canonry-provider-gemini": "0.0.0",
|
|
76
75
|
"@ainyc/canonry-provider-local": "0.0.0",
|
|
77
|
-
"@ainyc/canonry-provider-
|
|
78
|
-
"@ainyc/canonry-provider-openai": "0.0.0"
|
|
76
|
+
"@ainyc/canonry-provider-gemini": "0.0.0",
|
|
77
|
+
"@ainyc/canonry-provider-openai": "0.0.0",
|
|
78
|
+
"@ainyc/canonry-provider-perplexity": "0.0.0"
|
|
79
79
|
},
|
|
80
80
|
"scripts": {
|
|
81
81
|
"build": "tsx scripts/copy-agent-assets.ts && tsup && tsx build-web.ts",
|