@ainyc/canonry 4.30.0 → 4.32.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 +15 -13
- package/assets/agent-workspace/skills/aero/SKILL.md +2 -2
- package/assets/agent-workspace/skills/aero/references/aeo-discovery.md +26 -17
- package/assets/agent-workspace/skills/aero/references/memory-patterns.md +9 -9
- package/assets/agent-workspace/skills/aero/references/orchestration.md +6 -6
- package/assets/agent-workspace/skills/aero/references/reporting.md +3 -3
- package/assets/agent-workspace/skills/canonry/SKILL.md +5 -3
- package/assets/agent-workspace/skills/canonry/references/aeo-analysis.md +9 -9
- package/assets/agent-workspace/skills/canonry/references/canonry-cli.md +203 -200
- package/assets/agent-workspace/skills/canonry/references/indexing.md +35 -35
- package/assets/agent-workspace/skills/canonry/references/server-side-traffic.md +18 -18
- package/assets/agent-workspace/skills/canonry/references/wordpress-integration.md +11 -11
- package/assets/assets/{index-BnALDZI7.css → index-CNKAwZMB.css} +1 -1
- package/assets/assets/index-CUMjedc6.js +302 -0
- package/assets/index.html +2 -2
- package/dist/{chunk-7UO3EGDB.js → chunk-5M4PP6P4.js} +25 -2
- package/dist/{chunk-PTFVEYUX.js → chunk-7I65IXVU.js} +617 -23
- package/dist/{chunk-4EDC2P3J.js → chunk-LUAJVZVZ.js} +1 -1
- package/dist/{chunk-NIAAHWRF.js → chunk-LVX5TOYA.js} +28 -3
- package/dist/cli.js +166 -15
- package/dist/index.d.ts +20 -0
- package/dist/index.js +4 -4
- package/dist/{intelligence-service-ASXADXLF.js → intelligence-service-RSRWDBHS.js} +2 -2
- package/dist/mcp.js +2 -2
- package/package.json +8 -7
- package/assets/assets/index-BYiZYtd9.js +0 -302
package/assets/index.html
CHANGED
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
<link rel="icon" type="image/png" sizes="32x32" href="./favicon-32.png" />
|
|
13
13
|
<link rel="apple-touch-icon" href="./apple-touch-icon.png" />
|
|
14
14
|
<title>Canonry</title>
|
|
15
|
-
<script type="module" crossorigin src="./assets/index-
|
|
16
|
-
<link rel="stylesheet" crossorigin href="./assets/index-
|
|
15
|
+
<script type="module" crossorigin src="./assets/index-CUMjedc6.js"></script>
|
|
16
|
+
<link rel="stylesheet" crossorigin href="./assets/index-CNKAwZMB.css">
|
|
17
17
|
</head>
|
|
18
18
|
<body>
|
|
19
19
|
<div id="root"></div>
|
|
@@ -2382,11 +2382,29 @@ var DEFAULT_DISCOVERY_PROMOTE_BUCKETS = [
|
|
|
2382
2382
|
];
|
|
2383
2383
|
var DISCOVERY_PROMOTE_COMPETITOR_CAP = 20;
|
|
2384
2384
|
var DISCOVERY_PROMOTE_COMPETITOR_MIN_HITS = 2;
|
|
2385
|
+
var discoveryCompetitorTypeSchema = z21.enum([
|
|
2386
|
+
"direct-competitor",
|
|
2387
|
+
"ota-aggregator",
|
|
2388
|
+
"editorial-media",
|
|
2389
|
+
"other",
|
|
2390
|
+
"unknown"
|
|
2391
|
+
]);
|
|
2392
|
+
var DiscoveryCompetitorTypes = discoveryCompetitorTypeSchema.enum;
|
|
2393
|
+
var DEFAULT_DISCOVERY_PROMOTE_COMPETITOR_TYPES = [
|
|
2394
|
+
DiscoveryCompetitorTypes["direct-competitor"]
|
|
2395
|
+
];
|
|
2385
2396
|
var discoverySessionStatusSchema = z21.enum(["queued", "seeding", "probing", "completed", "failed"]);
|
|
2386
2397
|
var DiscoverySessionStatuses = discoverySessionStatusSchema.enum;
|
|
2387
2398
|
var discoveryCompetitorMapEntrySchema = z21.object({
|
|
2388
2399
|
domain: z21.string().min(1),
|
|
2389
|
-
hits: z21.number().int().positive()
|
|
2400
|
+
hits: z21.number().int().positive(),
|
|
2401
|
+
/**
|
|
2402
|
+
* Domain classification from the session's post-probe AI classification
|
|
2403
|
+
* pass. Defaults to `unknown` so competitor maps persisted before
|
|
2404
|
+
* classification existed (or by a session whose classification call failed)
|
|
2405
|
+
* still parse — those entries are excluded from the default promote filter.
|
|
2406
|
+
*/
|
|
2407
|
+
competitorType: discoveryCompetitorTypeSchema.default("unknown")
|
|
2390
2408
|
});
|
|
2391
2409
|
var discoveryProbeDtoSchema = z21.object({
|
|
2392
2410
|
id: z21.string(),
|
|
@@ -2428,7 +2446,8 @@ var discoveryRunRequestSchema = z21.object({
|
|
|
2428
2446
|
});
|
|
2429
2447
|
var discoveryPromoteRequestSchema = z21.object({
|
|
2430
2448
|
buckets: z21.array(discoveryBucketSchema).min(1).optional(),
|
|
2431
|
-
includeCompetitors: z21.boolean().optional()
|
|
2449
|
+
includeCompetitors: z21.boolean().optional(),
|
|
2450
|
+
competitorTypes: z21.array(discoveryCompetitorTypeSchema).min(1).optional()
|
|
2432
2451
|
});
|
|
2433
2452
|
var discoveryPromotePreviewSchema = z21.object({
|
|
2434
2453
|
sessionId: z21.string(),
|
|
@@ -2686,6 +2705,7 @@ export {
|
|
|
2686
2705
|
VerificationStatuses,
|
|
2687
2706
|
trafficConnectCloudRunRequestSchema,
|
|
2688
2707
|
trafficConnectWordpressRequestSchema,
|
|
2708
|
+
trafficConnectVercelRequestSchema,
|
|
2689
2709
|
trafficEventKindSchema,
|
|
2690
2710
|
TrafficEventKinds,
|
|
2691
2711
|
discoveryBucketSchema,
|
|
@@ -2693,6 +2713,9 @@ export {
|
|
|
2693
2713
|
DEFAULT_DISCOVERY_PROMOTE_BUCKETS,
|
|
2694
2714
|
DISCOVERY_PROMOTE_COMPETITOR_CAP,
|
|
2695
2715
|
DISCOVERY_PROMOTE_COMPETITOR_MIN_HITS,
|
|
2716
|
+
discoveryCompetitorTypeSchema,
|
|
2717
|
+
DiscoveryCompetitorTypes,
|
|
2718
|
+
DEFAULT_DISCOVERY_PROMOTE_COMPETITOR_TYPES,
|
|
2696
2719
|
DiscoverySessionStatuses,
|
|
2697
2720
|
DISCOVERY_MAX_PROBES_CAP,
|
|
2698
2721
|
discoveryRunRequestSchema,
|