@ainyc/canonry 4.72.4 → 4.75.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.
Files changed (30) hide show
  1. package/README.md +1 -1
  2. package/assets/agent-workspace/skills/aero/references/orchestration.md +1 -1
  3. package/assets/agent-workspace/skills/canonry/SKILL.md +1 -1
  4. package/assets/agent-workspace/skills/canonry/references/canonry-cli.md +17 -0
  5. package/assets/assets/{BacklinksPage-CjfpwZEH.js → BacklinksPage-CwAplOLo.js} +1 -1
  6. package/assets/assets/{ChartPrimitives-Ckf2FrUy.js → ChartPrimitives-EGp5HFxn.js} +1 -1
  7. package/assets/assets/ProjectPage-C-zhkBKK.js +6 -0
  8. package/assets/assets/{RunRow-BuFyG0V_.js → RunRow-YFN2PwH-.js} +1 -1
  9. package/assets/assets/{RunsPage-D-pr000K.js → RunsPage-DlKS8zaS.js} +1 -1
  10. package/assets/assets/{SettingsPage-CiaapCYn.js → SettingsPage-Q0OZKjMD.js} +1 -1
  11. package/assets/assets/{TrafficPage-B40xytJD.js → TrafficPage-BbySUnhy.js} +1 -1
  12. package/assets/assets/{TrafficSourceDetailPage-7hHem-gM.js → TrafficSourceDetailPage-BGzuvTYp.js} +1 -1
  13. package/assets/assets/{extract-error-message-3GkDsu1h.js → extract-error-message-Czt2jFxA.js} +1 -1
  14. package/assets/assets/index-CFVX11lK.css +1 -0
  15. package/assets/assets/{index-BVdH2O9w.js → index-DYsYdWV8.js} +118 -118
  16. package/assets/assets/{server-traffic-CsgPsudZ.js → server-traffic-BzIFKqGS.js} +1 -1
  17. package/assets/assets/{trash-2-B8Ipf9rI.js → trash-2-DKCkbZUb.js} +1 -1
  18. package/assets/index.html +2 -2
  19. package/dist/{chunk-JXFNERK4.js → chunk-JNAKRK77.js} +1103 -998
  20. package/dist/{chunk-HOKVBMOD.js → chunk-JUWU2DV6.js} +402 -81
  21. package/dist/{chunk-SRBO33HB.js → chunk-QY5WZWU4.js} +403 -202
  22. package/dist/{chunk-ZUBBADMR.js → chunk-WFMEK34V.js} +162 -1
  23. package/dist/cli.js +237 -31
  24. package/dist/index.d.ts +10 -0
  25. package/dist/index.js +4 -4
  26. package/dist/{intelligence-service-CSW4R4I7.js → intelligence-service-L2A5MFB4.js} +2 -2
  27. package/dist/mcp.js +2 -2
  28. package/package.json +10 -10
  29. package/assets/assets/ProjectPage-DZeplYeC.js +0 -6
  30. package/assets/assets/index-B3nENtU0.css +0 -1
package/dist/index.d.ts CHANGED
@@ -196,6 +196,16 @@ declare function createServer(opts: {
196
196
  db: DatabaseClient;
197
197
  open?: boolean;
198
198
  logger?: boolean;
199
+ /**
200
+ * The network interface the server will bind to (from `canonry serve`).
201
+ * Used to gate the unauthenticated first-run dashboard password setup: on a
202
+ * loopback bind only local processes can reach `/session/setup`, so claiming
203
+ * the initial password without the API key is safe. On a non-loopback bind
204
+ * (`0.0.0.0`, a LAN IP) the setup endpoint additionally requires a valid
205
+ * bearer key so a remote first-visitor cannot mint a full-access session.
206
+ * Defaults to loopback when unset (programmatic/test callers).
207
+ */
208
+ host?: string;
199
209
  }): Promise<FastifyInstance>;
200
210
 
201
211
  export { type CanonryConfig, createServer, loadConfig };
package/dist/index.js CHANGED
@@ -1,11 +1,11 @@
1
1
  import {
2
2
  createServer
3
- } from "./chunk-SRBO33HB.js";
3
+ } from "./chunk-QY5WZWU4.js";
4
4
  import {
5
5
  loadConfig
6
- } from "./chunk-ZUBBADMR.js";
7
- import "./chunk-HOKVBMOD.js";
8
- import "./chunk-JXFNERK4.js";
6
+ } from "./chunk-WFMEK34V.js";
7
+ import "./chunk-JUWU2DV6.js";
8
+ import "./chunk-JNAKRK77.js";
9
9
  export {
10
10
  createServer,
11
11
  loadConfig
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  IntelligenceService
3
- } from "./chunk-HOKVBMOD.js";
4
- import "./chunk-JXFNERK4.js";
3
+ } from "./chunk-JUWU2DV6.js";
4
+ import "./chunk-JNAKRK77.js";
5
5
  export {
6
6
  IntelligenceService
7
7
  };
package/dist/mcp.js CHANGED
@@ -3,8 +3,8 @@ import {
3
3
  PACKAGE_VERSION,
4
4
  canonryMcpTools,
5
5
  createApiClient
6
- } from "./chunk-ZUBBADMR.js";
7
- import "./chunk-JXFNERK4.js";
6
+ } from "./chunk-WFMEK34V.js";
7
+ import "./chunk-JNAKRK77.js";
8
8
 
9
9
  // src/mcp/cli.ts
10
10
  import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ainyc/canonry",
3
- "version": "4.72.4",
3
+ "version": "4.75.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",
@@ -36,7 +36,7 @@
36
36
  "node": ">=22.14.0"
37
37
  },
38
38
  "dependencies": {
39
- "@ainyc/aeo-audit": "1.3.2",
39
+ "@ainyc/aeo-audit": "3.0.0",
40
40
  "@anthropic-ai/sdk": "^0.78.0",
41
41
  "@fastify/static": "^8.1.0",
42
42
  "@google/genai": "^1.46.0",
@@ -62,26 +62,26 @@
62
62
  "@types/node-cron": "^3.0.11",
63
63
  "tsup": "^8.5.1",
64
64
  "tsx": "^4.19.0",
65
- "@ainyc/canonry-api-client": "0.0.0",
66
65
  "@ainyc/canonry-api-routes": "0.0.0",
67
66
  "@ainyc/canonry-config": "0.0.0",
67
+ "@ainyc/canonry-db": "0.0.0",
68
68
  "@ainyc/canonry-contracts": "0.0.0",
69
69
  "@ainyc/canonry-integration-bing": "0.0.0",
70
+ "@ainyc/canonry-api-client": "0.0.0",
70
71
  "@ainyc/canonry-integration-cloud-run": "0.0.0",
71
72
  "@ainyc/canonry-integration-commoncrawl": "0.0.0",
72
- "@ainyc/canonry-db": "0.0.0",
73
- "@ainyc/canonry-integration-google": "0.0.0",
74
73
  "@ainyc/canonry-integration-google-business-profile": "0.0.0",
75
- "@ainyc/canonry-integration-google-places": "0.0.0",
76
- "@ainyc/canonry-integration-wordpress": "0.0.0",
74
+ "@ainyc/canonry-integration-google": "0.0.0",
77
75
  "@ainyc/canonry-integration-traffic": "0.0.0",
76
+ "@ainyc/canonry-integration-wordpress": "0.0.0",
78
77
  "@ainyc/canonry-intelligence": "0.0.0",
79
78
  "@ainyc/canonry-provider-cdp": "0.0.0",
79
+ "@ainyc/canonry-integration-google-places": "0.0.0",
80
80
  "@ainyc/canonry-provider-claude": "0.0.0",
81
- "@ainyc/canonry-provider-gemini": "0.0.0",
82
- "@ainyc/canonry-provider-local": "0.0.0",
83
81
  "@ainyc/canonry-provider-openai": "0.0.0",
84
- "@ainyc/canonry-provider-perplexity": "0.0.0"
82
+ "@ainyc/canonry-provider-gemini": "0.0.0",
83
+ "@ainyc/canonry-provider-perplexity": "0.0.0",
84
+ "@ainyc/canonry-provider-local": "0.0.0"
85
85
  },
86
86
  "scripts": {
87
87
  "build": "tsx scripts/copy-agent-assets.ts && tsup && tsx build-web.ts",