@nebulacomponents/citable 1.5.0 → 1.6.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/CHANGELOG.md +17 -0
- package/README.md +2 -0
- package/dist/universal/.agents/skills/citable/SKILL.md +7 -1
- package/dist/universal/.agents/skills/citable/VERSION +1 -1
- package/dist/universal/.agents/skills/citable/commands/measurement.md +16 -1
- package/dist/universal/.agents/skills/citable/manifest.json +7 -7
- package/dist/universal/.agents/skills/citable/schemas/connection.schema.json +1 -0
- package/dist/universal/.claude/skills/citable/SKILL.md +7 -1
- package/dist/universal/.claude/skills/citable/VERSION +1 -1
- package/dist/universal/.claude/skills/citable/commands/measurement.md +16 -1
- package/dist/universal/.claude/skills/citable/manifest.json +7 -7
- package/dist/universal/.claude/skills/citable/schemas/connection.schema.json +1 -0
- package/dist/universal/.cursor/skills/citable/SKILL.md +7 -1
- package/dist/universal/.cursor/skills/citable/VERSION +1 -1
- package/dist/universal/.cursor/skills/citable/commands/measurement.md +16 -1
- package/dist/universal/.cursor/skills/citable/manifest.json +7 -7
- package/dist/universal/.cursor/skills/citable/schemas/connection.schema.json +1 -0
- package/dist/universal/.gemini/skills/citable/SKILL.md +7 -1
- package/dist/universal/.gemini/skills/citable/VERSION +1 -1
- package/dist/universal/.gemini/skills/citable/commands/measurement.md +16 -1
- package/dist/universal/.gemini/skills/citable/manifest.json +7 -7
- package/dist/universal/.gemini/skills/citable/schemas/connection.schema.json +1 -0
- package/dist/universal/.github/skills/citable/SKILL.md +7 -1
- package/dist/universal/.github/skills/citable/VERSION +1 -1
- package/dist/universal/.github/skills/citable/commands/measurement.md +16 -1
- package/dist/universal/.github/skills/citable/manifest.json +7 -7
- package/dist/universal/.github/skills/citable/schemas/connection.schema.json +1 -0
- package/dist/universal/.kiro/skills/citable/SKILL.md +7 -1
- package/dist/universal/.kiro/skills/citable/VERSION +1 -1
- package/dist/universal/.kiro/skills/citable/commands/measurement.md +16 -1
- package/dist/universal/.kiro/skills/citable/manifest.json +7 -7
- package/dist/universal/.kiro/skills/citable/schemas/connection.schema.json +1 -0
- package/dist/universal/.opencode/skills/citable/SKILL.md +7 -1
- package/dist/universal/.opencode/skills/citable/VERSION +1 -1
- package/dist/universal/.opencode/skills/citable/commands/measurement.md +16 -1
- package/dist/universal/.opencode/skills/citable/manifest.json +7 -7
- package/dist/universal/.opencode/skills/citable/schemas/connection.schema.json +1 -0
- package/dist/universal/.pi/agent/skills/citable/SKILL.md +7 -1
- package/dist/universal/.pi/agent/skills/citable/VERSION +1 -1
- package/dist/universal/.pi/agent/skills/citable/commands/measurement.md +16 -1
- package/dist/universal/.pi/agent/skills/citable/manifest.json +7 -7
- package/dist/universal/.pi/agent/skills/citable/schemas/connection.schema.json +1 -0
- package/dist/universal/.qoder/skills/citable/SKILL.md +7 -1
- package/dist/universal/.qoder/skills/citable/VERSION +1 -1
- package/dist/universal/.qoder/skills/citable/commands/measurement.md +16 -1
- package/dist/universal/.qoder/skills/citable/manifest.json +7 -7
- package/dist/universal/.qoder/skills/citable/schemas/connection.schema.json +1 -0
- package/dist/universal/.rovodev/skills/citable/SKILL.md +7 -1
- package/dist/universal/.rovodev/skills/citable/VERSION +1 -1
- package/dist/universal/.rovodev/skills/citable/commands/measurement.md +16 -1
- package/dist/universal/.rovodev/skills/citable/manifest.json +7 -7
- package/dist/universal/.rovodev/skills/citable/schemas/connection.schema.json +1 -0
- package/dist/universal/.trae/skills/citable/SKILL.md +7 -1
- package/dist/universal/.trae/skills/citable/VERSION +1 -1
- package/dist/universal/.trae/skills/citable/commands/measurement.md +16 -1
- package/dist/universal/.trae/skills/citable/manifest.json +7 -7
- package/dist/universal/.trae/skills/citable/schemas/connection.schema.json +1 -0
- package/dist/universal/.trae-cn/skills/citable/SKILL.md +7 -1
- package/dist/universal/.trae-cn/skills/citable/VERSION +1 -1
- package/dist/universal/.trae-cn/skills/citable/commands/measurement.md +16 -1
- package/dist/universal/.trae-cn/skills/citable/manifest.json +7 -7
- package/dist/universal/.trae-cn/skills/citable/schemas/connection.schema.json +1 -0
- package/dist/universal/manifest.json +75 -75
- package/package.json +1 -1
- package/schemas/connection.schema.json +1 -0
- package/skill/SKILL.md +7 -1
- package/skill/commands/measurement.md +16 -1
- package/src/cli/index.js +41 -0
- package/src/commands/connect.js +90 -0
- package/src/connectors/ga4.js +59 -0
- package/src/connectors/gsc.js +41 -0
- package/src/connectors/http.js +19 -0
- package/src/connectors/index.js +14 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 1.6.0 — 2026-07-19
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- Optional read-only connector SDK with explicit non-secret connection state,
|
|
10
|
+
property discovery, access validation, bounded synchronization, and disconnect.
|
|
11
|
+
- Google Search Console Search Analytics and GA4 Data API adapters that collect
|
|
12
|
+
declared metrics into immutable observations without storing access tokens.
|
|
13
|
+
|
|
14
|
+
## 1.5.1 — 2026-07-18
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- `Ship release` now explicitly dispatches trusted npm publishing at the newly
|
|
19
|
+
created tag because GitHub suppresses workflow events generated by its own
|
|
20
|
+
repository token.
|
|
21
|
+
|
|
5
22
|
## 1.5.0 — 2026-07-18
|
|
6
23
|
|
|
7
24
|
### Added
|
package/README.md
CHANGED
|
@@ -153,6 +153,8 @@ citable apply --input remediation-spec.json # dry run
|
|
|
153
153
|
citable apply --input remediation-spec.json --write # reviewed + hash-locked
|
|
154
154
|
citable monitor [runA runB]
|
|
155
155
|
citable metrics import --provider gsc --input metrics.csv
|
|
156
|
+
citable connect configure --provider gsc --connection-id CONNECTION-GSC --property-id sc-domain:example.com --write
|
|
157
|
+
GSC_ACCESS_TOKEN=... citable connect sync --connection-id CONNECTION-GSC --start-date 2026-06-01 --end-date 2026-06-30
|
|
156
158
|
citable objectives init --input objective.json --write
|
|
157
159
|
citable objectives validate
|
|
158
160
|
citable evaluate OBJECTIVE-PRODUCT_DISCOVERY --ref-date 2026-07-18
|
|
@@ -7,7 +7,7 @@ description: >
|
|
|
7
7
|
generative engine optimization, structured data governance, claim substantiation,
|
|
8
8
|
crawler policy, entity consistency, content discoverability, or wants a site audited
|
|
9
9
|
for how search and AI systems will retrieve, understand, cite, or recommend it.
|
|
10
|
-
version: 1.
|
|
10
|
+
version: 1.6.0
|
|
11
11
|
---
|
|
12
12
|
|
|
13
13
|
# Citable — search & generative discoverability governance
|
|
@@ -89,6 +89,12 @@ citable observe <mode> [options] # render/index/citation/log/passage/consen
|
|
|
89
89
|
citable apply --input <spec> [--write] # reviewed, hash-locked remediation; dry run by default
|
|
90
90
|
citable monitor [runA runB] # observation regression alerts
|
|
91
91
|
citable metrics import --provider <name> --input <csv|json>
|
|
92
|
+
citable connect status
|
|
93
|
+
citable connect configure --provider <gsc|ga4> --connection-id <id> --property-id <id> [--credential-env <name>] [--write]
|
|
94
|
+
citable connect discover --provider <gsc|ga4>
|
|
95
|
+
citable connect validate --connection-id <id>
|
|
96
|
+
citable connect sync --connection-id <id> --start-date YYYY-MM-DD --end-date YYYY-MM-DD
|
|
97
|
+
citable connect disconnect --connection-id <id> [--write]
|
|
92
98
|
citable objectives init --input <json|yaml> [--write]
|
|
93
99
|
citable objectives validate
|
|
94
100
|
citable evaluate [objective-id] [--ref-date YYYY-MM-DD]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.6.0
|
|
@@ -10,7 +10,7 @@ imports, and a disclosed custom citation-adapter protocol. It does not claim
|
|
|
10
10
|
Bing AI Performance automation or equivalence between an API adapter and a
|
|
11
11
|
consumer answer product. Preserve collector and product mode on every result.
|
|
12
12
|
|
|
13
|
-
# implemented metric and objective workflow
|
|
13
|
+
# implemented metric, connector, and objective workflow
|
|
14
14
|
|
|
15
15
|
`citable metrics import --provider <name> --input <csv|json>` validates every
|
|
16
16
|
row against a declared entry in `metrics.yaml` and writes immutable metric
|
|
@@ -27,6 +27,21 @@ absence of provider credentials is `not_configured`, not a finding and not
|
|
|
27
27
|
evidence of zero activity. Credentials must never enter registries or evidence
|
|
28
28
|
packages.
|
|
29
29
|
|
|
30
|
+
Live GSC and GA4 connections are explicitly optional. Configure only a
|
|
31
|
+
property identifier and the name of the environment variable that holds its
|
|
32
|
+
OAuth token; never place the token itself in `.citable/connections.yaml`.
|
|
33
|
+
`citable connect configure` and `disconnect` are dry runs unless `--write` is
|
|
34
|
+
used. `connect discover`, `validate`, and `sync` require read-only provider
|
|
35
|
+
authorization. `sync` writes declared metric observations with provider
|
|
36
|
+
limitations and advances a non-secret cursor. Provider errors are recorded as
|
|
37
|
+
connection state, not converted into zero observations or audit findings.
|
|
38
|
+
|
|
39
|
+
The GSC adapter collects final Search Analytics rows and inherits Search
|
|
40
|
+
Console aggregation, privacy filtering, and top-row availability limits. The GA4 adapter collects Data API
|
|
41
|
+
rows restricted to the `Organic Search` default channel group and inherits the
|
|
42
|
+
property's reporting identity, thresholding, attribution, and consent choices.
|
|
43
|
+
Neither source establishes that an intervention caused an observed change.
|
|
44
|
+
|
|
30
45
|
# measure seo
|
|
31
46
|
Inputs the operator exports (Search Console/Bing/analytics CSV or JSON).
|
|
32
47
|
Workflow: validate segmentation (brand vs non-brand, intent, page type,
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "citable",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"managedBy": "citable-cli",
|
|
5
5
|
"provider": "codex",
|
|
6
6
|
"providerName": "OpenAI Codex",
|
|
7
7
|
"scope": "bundle",
|
|
8
|
-
"sourcePackage": "@nebulacomponents/citable@1.
|
|
8
|
+
"sourcePackage": "@nebulacomponents/citable@1.6.0",
|
|
9
9
|
"variantPath": ".agents/skills/citable",
|
|
10
10
|
"files": {
|
|
11
11
|
"commands/action-findings.md": "sha256:510361461f24fcd4a550e0a8d960c383aefe23f9a65a54a3ffc44abd4c1293e7",
|
|
12
12
|
"commands/ingest.md": "sha256:cf35659aecd9d0e160909003efdbe056864fc5d824c71b4ef0ee801ce07ff598",
|
|
13
|
-
"commands/measurement.md": "sha256:
|
|
13
|
+
"commands/measurement.md": "sha256:6709d90e247435b08afd543950c810dfc48581374fb220d9c68ad757ea45b25f",
|
|
14
14
|
"commands/observe-and-act.md": "sha256:02a93bbbfddc3d8e11cb921ddccd19b0666133c4bdb4f4a280bcb131bed37e8c",
|
|
15
15
|
"commands/optimize-page.md": "sha256:35866f3d7cdeef0376ea7a7d7036085a9b9cf95bbb300ecf4bd77610ebd74d85",
|
|
16
16
|
"commands/page-work.md": "sha256:965a66e59bdf7b0da482d26fade53b3d265885ece5d463fe83b0789ebefaef3e",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"schemas/common.defs.json": "sha256:effdd812910d1c275c50520bb70d8aec085e53fa8cb68054dc58c04a5d4a66b3",
|
|
39
39
|
"schemas/competitor.schema.json": "sha256:2f6fd7e4543846bde56ff4dc62bb41fa366889787b794a7cdb0bff1a3392e591",
|
|
40
40
|
"schemas/config.schema.json": "sha256:a87f3bb0087de09035b9f2dafea66e32e4fcc2e3e329abcd0fd8a5ec33318f2a",
|
|
41
|
-
"schemas/connection.schema.json": "sha256:
|
|
41
|
+
"schemas/connection.schema.json": "sha256:abcedde8d62d0c0663d4f959e06132a617908058ed965078965445ef3b108310",
|
|
42
42
|
"schemas/crawler.schema.json": "sha256:1a113dfb80bc6cde904c3ea648c82ea1d88fe50f2c1a0e7175d44abba28ac64e",
|
|
43
43
|
"schemas/detector-quality.schema.json": "sha256:5e9e1ac80b1198a0ff8fa17b9f7a543d3ccf3ed3d60196152f6ff095cfdebccd",
|
|
44
44
|
"schemas/entity.schema.json": "sha256:78a08c35c8f4eb7a804ab46b61a238502f59621ac5218991e783251fbde61c4f",
|
|
@@ -57,9 +57,9 @@
|
|
|
57
57
|
"schemas/remediation-spec.schema.json": "sha256:6fe8cb773702862ba6d261198bb5cc2dca3eca0a2310a60ebddd04377654df8d",
|
|
58
58
|
"schemas/run.schema.json": "sha256:46c3178620f3a358d936d535aeadb83454b9b35b551e53e6615cc9862063dacb",
|
|
59
59
|
"scripts/README.md": "sha256:1c3e952950ef353849621b07c5f615bf7cd20cc5654da4635492a7bd6384e747",
|
|
60
|
-
"SKILL.md": "sha256:
|
|
60
|
+
"SKILL.md": "sha256:d60d894b72372da0f77185bdec5ed366ee071f82040b84ade578acfff478018b",
|
|
61
61
|
"templates/finding-review.md": "sha256:b270a83d3f015150aac80249ae9314979c0befea39ff92ec455f9a5aaa73404c",
|
|
62
|
-
"VERSION": "sha256:
|
|
62
|
+
"VERSION": "sha256:cb1d9a30bc4ab8a397f39b7d786bb82aca0b816077eefc35d7c822017d75f6a5"
|
|
63
63
|
},
|
|
64
|
-
"treeHash": "sha256:
|
|
64
|
+
"treeHash": "sha256:f47445faa4a4c734ef5478342653ae6dc89cba8019f6a5cef97008d7a91c705f"
|
|
65
65
|
}
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"connection_id": { "type": "string", "pattern": "^CONNECTION-[A-Z0-9][A-Z0-9_-]*$" },
|
|
20
20
|
"provider": { "type": "string", "minLength": 1 },
|
|
21
21
|
"property_id": { "type": ["string", "null"] },
|
|
22
|
+
"credential_env": { "type": "string", "pattern": "^[A-Z][A-Z0-9_]*$" },
|
|
22
23
|
"state": { "type": "string", "enum": ["not_configured", "configured", "synchronized", "partial", "authorization_expired", "permission_denied", "quota_limited", "temporarily_unavailable"] },
|
|
23
24
|
"authentication": { "type": "string", "enum": ["none", "environment", "os_keychain", "external_secret_manager", "owner_import"] },
|
|
24
25
|
"scopes": { "type": "array", "items": { "type": "string" } },
|
|
@@ -7,7 +7,7 @@ description: >
|
|
|
7
7
|
generative engine optimization, structured data governance, claim substantiation,
|
|
8
8
|
crawler policy, entity consistency, content discoverability, or wants a site audited
|
|
9
9
|
for how search and AI systems will retrieve, understand, cite, or recommend it.
|
|
10
|
-
version: 1.
|
|
10
|
+
version: 1.6.0
|
|
11
11
|
---
|
|
12
12
|
|
|
13
13
|
# Citable — search & generative discoverability governance
|
|
@@ -89,6 +89,12 @@ citable observe <mode> [options] # render/index/citation/log/passage/consen
|
|
|
89
89
|
citable apply --input <spec> [--write] # reviewed, hash-locked remediation; dry run by default
|
|
90
90
|
citable monitor [runA runB] # observation regression alerts
|
|
91
91
|
citable metrics import --provider <name> --input <csv|json>
|
|
92
|
+
citable connect status
|
|
93
|
+
citable connect configure --provider <gsc|ga4> --connection-id <id> --property-id <id> [--credential-env <name>] [--write]
|
|
94
|
+
citable connect discover --provider <gsc|ga4>
|
|
95
|
+
citable connect validate --connection-id <id>
|
|
96
|
+
citable connect sync --connection-id <id> --start-date YYYY-MM-DD --end-date YYYY-MM-DD
|
|
97
|
+
citable connect disconnect --connection-id <id> [--write]
|
|
92
98
|
citable objectives init --input <json|yaml> [--write]
|
|
93
99
|
citable objectives validate
|
|
94
100
|
citable evaluate [objective-id] [--ref-date YYYY-MM-DD]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.6.0
|
|
@@ -10,7 +10,7 @@ imports, and a disclosed custom citation-adapter protocol. It does not claim
|
|
|
10
10
|
Bing AI Performance automation or equivalence between an API adapter and a
|
|
11
11
|
consumer answer product. Preserve collector and product mode on every result.
|
|
12
12
|
|
|
13
|
-
# implemented metric and objective workflow
|
|
13
|
+
# implemented metric, connector, and objective workflow
|
|
14
14
|
|
|
15
15
|
`citable metrics import --provider <name> --input <csv|json>` validates every
|
|
16
16
|
row against a declared entry in `metrics.yaml` and writes immutable metric
|
|
@@ -27,6 +27,21 @@ absence of provider credentials is `not_configured`, not a finding and not
|
|
|
27
27
|
evidence of zero activity. Credentials must never enter registries or evidence
|
|
28
28
|
packages.
|
|
29
29
|
|
|
30
|
+
Live GSC and GA4 connections are explicitly optional. Configure only a
|
|
31
|
+
property identifier and the name of the environment variable that holds its
|
|
32
|
+
OAuth token; never place the token itself in `.citable/connections.yaml`.
|
|
33
|
+
`citable connect configure` and `disconnect` are dry runs unless `--write` is
|
|
34
|
+
used. `connect discover`, `validate`, and `sync` require read-only provider
|
|
35
|
+
authorization. `sync` writes declared metric observations with provider
|
|
36
|
+
limitations and advances a non-secret cursor. Provider errors are recorded as
|
|
37
|
+
connection state, not converted into zero observations or audit findings.
|
|
38
|
+
|
|
39
|
+
The GSC adapter collects final Search Analytics rows and inherits Search
|
|
40
|
+
Console aggregation, privacy filtering, and top-row availability limits. The GA4 adapter collects Data API
|
|
41
|
+
rows restricted to the `Organic Search` default channel group and inherits the
|
|
42
|
+
property's reporting identity, thresholding, attribution, and consent choices.
|
|
43
|
+
Neither source establishes that an intervention caused an observed change.
|
|
44
|
+
|
|
30
45
|
# measure seo
|
|
31
46
|
Inputs the operator exports (Search Console/Bing/analytics CSV or JSON).
|
|
32
47
|
Workflow: validate segmentation (brand vs non-brand, intent, page type,
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "citable",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"managedBy": "citable-cli",
|
|
5
5
|
"provider": "claude",
|
|
6
6
|
"providerName": "Claude Code",
|
|
7
7
|
"scope": "bundle",
|
|
8
|
-
"sourcePackage": "@nebulacomponents/citable@1.
|
|
8
|
+
"sourcePackage": "@nebulacomponents/citable@1.6.0",
|
|
9
9
|
"variantPath": ".claude/skills/citable",
|
|
10
10
|
"files": {
|
|
11
11
|
"commands/action-findings.md": "sha256:510361461f24fcd4a550e0a8d960c383aefe23f9a65a54a3ffc44abd4c1293e7",
|
|
12
12
|
"commands/ingest.md": "sha256:cf35659aecd9d0e160909003efdbe056864fc5d824c71b4ef0ee801ce07ff598",
|
|
13
|
-
"commands/measurement.md": "sha256:
|
|
13
|
+
"commands/measurement.md": "sha256:6709d90e247435b08afd543950c810dfc48581374fb220d9c68ad757ea45b25f",
|
|
14
14
|
"commands/observe-and-act.md": "sha256:02a93bbbfddc3d8e11cb921ddccd19b0666133c4bdb4f4a280bcb131bed37e8c",
|
|
15
15
|
"commands/optimize-page.md": "sha256:35866f3d7cdeef0376ea7a7d7036085a9b9cf95bbb300ecf4bd77610ebd74d85",
|
|
16
16
|
"commands/page-work.md": "sha256:965a66e59bdf7b0da482d26fade53b3d265885ece5d463fe83b0789ebefaef3e",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"schemas/common.defs.json": "sha256:effdd812910d1c275c50520bb70d8aec085e53fa8cb68054dc58c04a5d4a66b3",
|
|
39
39
|
"schemas/competitor.schema.json": "sha256:2f6fd7e4543846bde56ff4dc62bb41fa366889787b794a7cdb0bff1a3392e591",
|
|
40
40
|
"schemas/config.schema.json": "sha256:a87f3bb0087de09035b9f2dafea66e32e4fcc2e3e329abcd0fd8a5ec33318f2a",
|
|
41
|
-
"schemas/connection.schema.json": "sha256:
|
|
41
|
+
"schemas/connection.schema.json": "sha256:abcedde8d62d0c0663d4f959e06132a617908058ed965078965445ef3b108310",
|
|
42
42
|
"schemas/crawler.schema.json": "sha256:1a113dfb80bc6cde904c3ea648c82ea1d88fe50f2c1a0e7175d44abba28ac64e",
|
|
43
43
|
"schemas/detector-quality.schema.json": "sha256:5e9e1ac80b1198a0ff8fa17b9f7a543d3ccf3ed3d60196152f6ff095cfdebccd",
|
|
44
44
|
"schemas/entity.schema.json": "sha256:78a08c35c8f4eb7a804ab46b61a238502f59621ac5218991e783251fbde61c4f",
|
|
@@ -57,9 +57,9 @@
|
|
|
57
57
|
"schemas/remediation-spec.schema.json": "sha256:6fe8cb773702862ba6d261198bb5cc2dca3eca0a2310a60ebddd04377654df8d",
|
|
58
58
|
"schemas/run.schema.json": "sha256:46c3178620f3a358d936d535aeadb83454b9b35b551e53e6615cc9862063dacb",
|
|
59
59
|
"scripts/README.md": "sha256:1c3e952950ef353849621b07c5f615bf7cd20cc5654da4635492a7bd6384e747",
|
|
60
|
-
"SKILL.md": "sha256:
|
|
60
|
+
"SKILL.md": "sha256:d60d894b72372da0f77185bdec5ed366ee071f82040b84ade578acfff478018b",
|
|
61
61
|
"templates/finding-review.md": "sha256:b270a83d3f015150aac80249ae9314979c0befea39ff92ec455f9a5aaa73404c",
|
|
62
|
-
"VERSION": "sha256:
|
|
62
|
+
"VERSION": "sha256:cb1d9a30bc4ab8a397f39b7d786bb82aca0b816077eefc35d7c822017d75f6a5"
|
|
63
63
|
},
|
|
64
|
-
"treeHash": "sha256:
|
|
64
|
+
"treeHash": "sha256:f47445faa4a4c734ef5478342653ae6dc89cba8019f6a5cef97008d7a91c705f"
|
|
65
65
|
}
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"connection_id": { "type": "string", "pattern": "^CONNECTION-[A-Z0-9][A-Z0-9_-]*$" },
|
|
20
20
|
"provider": { "type": "string", "minLength": 1 },
|
|
21
21
|
"property_id": { "type": ["string", "null"] },
|
|
22
|
+
"credential_env": { "type": "string", "pattern": "^[A-Z][A-Z0-9_]*$" },
|
|
22
23
|
"state": { "type": "string", "enum": ["not_configured", "configured", "synchronized", "partial", "authorization_expired", "permission_denied", "quota_limited", "temporarily_unavailable"] },
|
|
23
24
|
"authentication": { "type": "string", "enum": ["none", "environment", "os_keychain", "external_secret_manager", "owner_import"] },
|
|
24
25
|
"scopes": { "type": "array", "items": { "type": "string" } },
|
|
@@ -7,7 +7,7 @@ description: >
|
|
|
7
7
|
generative engine optimization, structured data governance, claim substantiation,
|
|
8
8
|
crawler policy, entity consistency, content discoverability, or wants a site audited
|
|
9
9
|
for how search and AI systems will retrieve, understand, cite, or recommend it.
|
|
10
|
-
version: 1.
|
|
10
|
+
version: 1.6.0
|
|
11
11
|
---
|
|
12
12
|
|
|
13
13
|
# Citable — search & generative discoverability governance
|
|
@@ -89,6 +89,12 @@ citable observe <mode> [options] # render/index/citation/log/passage/consen
|
|
|
89
89
|
citable apply --input <spec> [--write] # reviewed, hash-locked remediation; dry run by default
|
|
90
90
|
citable monitor [runA runB] # observation regression alerts
|
|
91
91
|
citable metrics import --provider <name> --input <csv|json>
|
|
92
|
+
citable connect status
|
|
93
|
+
citable connect configure --provider <gsc|ga4> --connection-id <id> --property-id <id> [--credential-env <name>] [--write]
|
|
94
|
+
citable connect discover --provider <gsc|ga4>
|
|
95
|
+
citable connect validate --connection-id <id>
|
|
96
|
+
citable connect sync --connection-id <id> --start-date YYYY-MM-DD --end-date YYYY-MM-DD
|
|
97
|
+
citable connect disconnect --connection-id <id> [--write]
|
|
92
98
|
citable objectives init --input <json|yaml> [--write]
|
|
93
99
|
citable objectives validate
|
|
94
100
|
citable evaluate [objective-id] [--ref-date YYYY-MM-DD]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.6.0
|
|
@@ -10,7 +10,7 @@ imports, and a disclosed custom citation-adapter protocol. It does not claim
|
|
|
10
10
|
Bing AI Performance automation or equivalence between an API adapter and a
|
|
11
11
|
consumer answer product. Preserve collector and product mode on every result.
|
|
12
12
|
|
|
13
|
-
# implemented metric and objective workflow
|
|
13
|
+
# implemented metric, connector, and objective workflow
|
|
14
14
|
|
|
15
15
|
`citable metrics import --provider <name> --input <csv|json>` validates every
|
|
16
16
|
row against a declared entry in `metrics.yaml` and writes immutable metric
|
|
@@ -27,6 +27,21 @@ absence of provider credentials is `not_configured`, not a finding and not
|
|
|
27
27
|
evidence of zero activity. Credentials must never enter registries or evidence
|
|
28
28
|
packages.
|
|
29
29
|
|
|
30
|
+
Live GSC and GA4 connections are explicitly optional. Configure only a
|
|
31
|
+
property identifier and the name of the environment variable that holds its
|
|
32
|
+
OAuth token; never place the token itself in `.citable/connections.yaml`.
|
|
33
|
+
`citable connect configure` and `disconnect` are dry runs unless `--write` is
|
|
34
|
+
used. `connect discover`, `validate`, and `sync` require read-only provider
|
|
35
|
+
authorization. `sync` writes declared metric observations with provider
|
|
36
|
+
limitations and advances a non-secret cursor. Provider errors are recorded as
|
|
37
|
+
connection state, not converted into zero observations or audit findings.
|
|
38
|
+
|
|
39
|
+
The GSC adapter collects final Search Analytics rows and inherits Search
|
|
40
|
+
Console aggregation, privacy filtering, and top-row availability limits. The GA4 adapter collects Data API
|
|
41
|
+
rows restricted to the `Organic Search` default channel group and inherits the
|
|
42
|
+
property's reporting identity, thresholding, attribution, and consent choices.
|
|
43
|
+
Neither source establishes that an intervention caused an observed change.
|
|
44
|
+
|
|
30
45
|
# measure seo
|
|
31
46
|
Inputs the operator exports (Search Console/Bing/analytics CSV or JSON).
|
|
32
47
|
Workflow: validate segmentation (brand vs non-brand, intent, page type,
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "citable",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"managedBy": "citable-cli",
|
|
5
5
|
"provider": "cursor",
|
|
6
6
|
"providerName": "Cursor",
|
|
7
7
|
"scope": "bundle",
|
|
8
|
-
"sourcePackage": "@nebulacomponents/citable@1.
|
|
8
|
+
"sourcePackage": "@nebulacomponents/citable@1.6.0",
|
|
9
9
|
"variantPath": ".cursor/skills/citable",
|
|
10
10
|
"files": {
|
|
11
11
|
"commands/action-findings.md": "sha256:510361461f24fcd4a550e0a8d960c383aefe23f9a65a54a3ffc44abd4c1293e7",
|
|
12
12
|
"commands/ingest.md": "sha256:cf35659aecd9d0e160909003efdbe056864fc5d824c71b4ef0ee801ce07ff598",
|
|
13
|
-
"commands/measurement.md": "sha256:
|
|
13
|
+
"commands/measurement.md": "sha256:6709d90e247435b08afd543950c810dfc48581374fb220d9c68ad757ea45b25f",
|
|
14
14
|
"commands/observe-and-act.md": "sha256:02a93bbbfddc3d8e11cb921ddccd19b0666133c4bdb4f4a280bcb131bed37e8c",
|
|
15
15
|
"commands/optimize-page.md": "sha256:35866f3d7cdeef0376ea7a7d7036085a9b9cf95bbb300ecf4bd77610ebd74d85",
|
|
16
16
|
"commands/page-work.md": "sha256:965a66e59bdf7b0da482d26fade53b3d265885ece5d463fe83b0789ebefaef3e",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"schemas/common.defs.json": "sha256:effdd812910d1c275c50520bb70d8aec085e53fa8cb68054dc58c04a5d4a66b3",
|
|
39
39
|
"schemas/competitor.schema.json": "sha256:2f6fd7e4543846bde56ff4dc62bb41fa366889787b794a7cdb0bff1a3392e591",
|
|
40
40
|
"schemas/config.schema.json": "sha256:a87f3bb0087de09035b9f2dafea66e32e4fcc2e3e329abcd0fd8a5ec33318f2a",
|
|
41
|
-
"schemas/connection.schema.json": "sha256:
|
|
41
|
+
"schemas/connection.schema.json": "sha256:abcedde8d62d0c0663d4f959e06132a617908058ed965078965445ef3b108310",
|
|
42
42
|
"schemas/crawler.schema.json": "sha256:1a113dfb80bc6cde904c3ea648c82ea1d88fe50f2c1a0e7175d44abba28ac64e",
|
|
43
43
|
"schemas/detector-quality.schema.json": "sha256:5e9e1ac80b1198a0ff8fa17b9f7a543d3ccf3ed3d60196152f6ff095cfdebccd",
|
|
44
44
|
"schemas/entity.schema.json": "sha256:78a08c35c8f4eb7a804ab46b61a238502f59621ac5218991e783251fbde61c4f",
|
|
@@ -57,9 +57,9 @@
|
|
|
57
57
|
"schemas/remediation-spec.schema.json": "sha256:6fe8cb773702862ba6d261198bb5cc2dca3eca0a2310a60ebddd04377654df8d",
|
|
58
58
|
"schemas/run.schema.json": "sha256:46c3178620f3a358d936d535aeadb83454b9b35b551e53e6615cc9862063dacb",
|
|
59
59
|
"scripts/README.md": "sha256:1c3e952950ef353849621b07c5f615bf7cd20cc5654da4635492a7bd6384e747",
|
|
60
|
-
"SKILL.md": "sha256:
|
|
60
|
+
"SKILL.md": "sha256:d60d894b72372da0f77185bdec5ed366ee071f82040b84ade578acfff478018b",
|
|
61
61
|
"templates/finding-review.md": "sha256:b270a83d3f015150aac80249ae9314979c0befea39ff92ec455f9a5aaa73404c",
|
|
62
|
-
"VERSION": "sha256:
|
|
62
|
+
"VERSION": "sha256:cb1d9a30bc4ab8a397f39b7d786bb82aca0b816077eefc35d7c822017d75f6a5"
|
|
63
63
|
},
|
|
64
|
-
"treeHash": "sha256:
|
|
64
|
+
"treeHash": "sha256:f47445faa4a4c734ef5478342653ae6dc89cba8019f6a5cef97008d7a91c705f"
|
|
65
65
|
}
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"connection_id": { "type": "string", "pattern": "^CONNECTION-[A-Z0-9][A-Z0-9_-]*$" },
|
|
20
20
|
"provider": { "type": "string", "minLength": 1 },
|
|
21
21
|
"property_id": { "type": ["string", "null"] },
|
|
22
|
+
"credential_env": { "type": "string", "pattern": "^[A-Z][A-Z0-9_]*$" },
|
|
22
23
|
"state": { "type": "string", "enum": ["not_configured", "configured", "synchronized", "partial", "authorization_expired", "permission_denied", "quota_limited", "temporarily_unavailable"] },
|
|
23
24
|
"authentication": { "type": "string", "enum": ["none", "environment", "os_keychain", "external_secret_manager", "owner_import"] },
|
|
24
25
|
"scopes": { "type": "array", "items": { "type": "string" } },
|
|
@@ -7,7 +7,7 @@ description: >
|
|
|
7
7
|
generative engine optimization, structured data governance, claim substantiation,
|
|
8
8
|
crawler policy, entity consistency, content discoverability, or wants a site audited
|
|
9
9
|
for how search and AI systems will retrieve, understand, cite, or recommend it.
|
|
10
|
-
version: 1.
|
|
10
|
+
version: 1.6.0
|
|
11
11
|
---
|
|
12
12
|
|
|
13
13
|
# Citable — search & generative discoverability governance
|
|
@@ -89,6 +89,12 @@ citable observe <mode> [options] # render/index/citation/log/passage/consen
|
|
|
89
89
|
citable apply --input <spec> [--write] # reviewed, hash-locked remediation; dry run by default
|
|
90
90
|
citable monitor [runA runB] # observation regression alerts
|
|
91
91
|
citable metrics import --provider <name> --input <csv|json>
|
|
92
|
+
citable connect status
|
|
93
|
+
citable connect configure --provider <gsc|ga4> --connection-id <id> --property-id <id> [--credential-env <name>] [--write]
|
|
94
|
+
citable connect discover --provider <gsc|ga4>
|
|
95
|
+
citable connect validate --connection-id <id>
|
|
96
|
+
citable connect sync --connection-id <id> --start-date YYYY-MM-DD --end-date YYYY-MM-DD
|
|
97
|
+
citable connect disconnect --connection-id <id> [--write]
|
|
92
98
|
citable objectives init --input <json|yaml> [--write]
|
|
93
99
|
citable objectives validate
|
|
94
100
|
citable evaluate [objective-id] [--ref-date YYYY-MM-DD]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.6.0
|
|
@@ -10,7 +10,7 @@ imports, and a disclosed custom citation-adapter protocol. It does not claim
|
|
|
10
10
|
Bing AI Performance automation or equivalence between an API adapter and a
|
|
11
11
|
consumer answer product. Preserve collector and product mode on every result.
|
|
12
12
|
|
|
13
|
-
# implemented metric and objective workflow
|
|
13
|
+
# implemented metric, connector, and objective workflow
|
|
14
14
|
|
|
15
15
|
`citable metrics import --provider <name> --input <csv|json>` validates every
|
|
16
16
|
row against a declared entry in `metrics.yaml` and writes immutable metric
|
|
@@ -27,6 +27,21 @@ absence of provider credentials is `not_configured`, not a finding and not
|
|
|
27
27
|
evidence of zero activity. Credentials must never enter registries or evidence
|
|
28
28
|
packages.
|
|
29
29
|
|
|
30
|
+
Live GSC and GA4 connections are explicitly optional. Configure only a
|
|
31
|
+
property identifier and the name of the environment variable that holds its
|
|
32
|
+
OAuth token; never place the token itself in `.citable/connections.yaml`.
|
|
33
|
+
`citable connect configure` and `disconnect` are dry runs unless `--write` is
|
|
34
|
+
used. `connect discover`, `validate`, and `sync` require read-only provider
|
|
35
|
+
authorization. `sync` writes declared metric observations with provider
|
|
36
|
+
limitations and advances a non-secret cursor. Provider errors are recorded as
|
|
37
|
+
connection state, not converted into zero observations or audit findings.
|
|
38
|
+
|
|
39
|
+
The GSC adapter collects final Search Analytics rows and inherits Search
|
|
40
|
+
Console aggregation, privacy filtering, and top-row availability limits. The GA4 adapter collects Data API
|
|
41
|
+
rows restricted to the `Organic Search` default channel group and inherits the
|
|
42
|
+
property's reporting identity, thresholding, attribution, and consent choices.
|
|
43
|
+
Neither source establishes that an intervention caused an observed change.
|
|
44
|
+
|
|
30
45
|
# measure seo
|
|
31
46
|
Inputs the operator exports (Search Console/Bing/analytics CSV or JSON).
|
|
32
47
|
Workflow: validate segmentation (brand vs non-brand, intent, page type,
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "citable",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"managedBy": "citable-cli",
|
|
5
5
|
"provider": "gemini",
|
|
6
6
|
"providerName": "Gemini CLI",
|
|
7
7
|
"scope": "bundle",
|
|
8
|
-
"sourcePackage": "@nebulacomponents/citable@1.
|
|
8
|
+
"sourcePackage": "@nebulacomponents/citable@1.6.0",
|
|
9
9
|
"variantPath": ".gemini/skills/citable",
|
|
10
10
|
"files": {
|
|
11
11
|
"commands/action-findings.md": "sha256:510361461f24fcd4a550e0a8d960c383aefe23f9a65a54a3ffc44abd4c1293e7",
|
|
12
12
|
"commands/ingest.md": "sha256:cf35659aecd9d0e160909003efdbe056864fc5d824c71b4ef0ee801ce07ff598",
|
|
13
|
-
"commands/measurement.md": "sha256:
|
|
13
|
+
"commands/measurement.md": "sha256:6709d90e247435b08afd543950c810dfc48581374fb220d9c68ad757ea45b25f",
|
|
14
14
|
"commands/observe-and-act.md": "sha256:02a93bbbfddc3d8e11cb921ddccd19b0666133c4bdb4f4a280bcb131bed37e8c",
|
|
15
15
|
"commands/optimize-page.md": "sha256:35866f3d7cdeef0376ea7a7d7036085a9b9cf95bbb300ecf4bd77610ebd74d85",
|
|
16
16
|
"commands/page-work.md": "sha256:965a66e59bdf7b0da482d26fade53b3d265885ece5d463fe83b0789ebefaef3e",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"schemas/common.defs.json": "sha256:effdd812910d1c275c50520bb70d8aec085e53fa8cb68054dc58c04a5d4a66b3",
|
|
39
39
|
"schemas/competitor.schema.json": "sha256:2f6fd7e4543846bde56ff4dc62bb41fa366889787b794a7cdb0bff1a3392e591",
|
|
40
40
|
"schemas/config.schema.json": "sha256:a87f3bb0087de09035b9f2dafea66e32e4fcc2e3e329abcd0fd8a5ec33318f2a",
|
|
41
|
-
"schemas/connection.schema.json": "sha256:
|
|
41
|
+
"schemas/connection.schema.json": "sha256:abcedde8d62d0c0663d4f959e06132a617908058ed965078965445ef3b108310",
|
|
42
42
|
"schemas/crawler.schema.json": "sha256:1a113dfb80bc6cde904c3ea648c82ea1d88fe50f2c1a0e7175d44abba28ac64e",
|
|
43
43
|
"schemas/detector-quality.schema.json": "sha256:5e9e1ac80b1198a0ff8fa17b9f7a543d3ccf3ed3d60196152f6ff095cfdebccd",
|
|
44
44
|
"schemas/entity.schema.json": "sha256:78a08c35c8f4eb7a804ab46b61a238502f59621ac5218991e783251fbde61c4f",
|
|
@@ -57,9 +57,9 @@
|
|
|
57
57
|
"schemas/remediation-spec.schema.json": "sha256:6fe8cb773702862ba6d261198bb5cc2dca3eca0a2310a60ebddd04377654df8d",
|
|
58
58
|
"schemas/run.schema.json": "sha256:46c3178620f3a358d936d535aeadb83454b9b35b551e53e6615cc9862063dacb",
|
|
59
59
|
"scripts/README.md": "sha256:1c3e952950ef353849621b07c5f615bf7cd20cc5654da4635492a7bd6384e747",
|
|
60
|
-
"SKILL.md": "sha256:
|
|
60
|
+
"SKILL.md": "sha256:d60d894b72372da0f77185bdec5ed366ee071f82040b84ade578acfff478018b",
|
|
61
61
|
"templates/finding-review.md": "sha256:b270a83d3f015150aac80249ae9314979c0befea39ff92ec455f9a5aaa73404c",
|
|
62
|
-
"VERSION": "sha256:
|
|
62
|
+
"VERSION": "sha256:cb1d9a30bc4ab8a397f39b7d786bb82aca0b816077eefc35d7c822017d75f6a5"
|
|
63
63
|
},
|
|
64
|
-
"treeHash": "sha256:
|
|
64
|
+
"treeHash": "sha256:f47445faa4a4c734ef5478342653ae6dc89cba8019f6a5cef97008d7a91c705f"
|
|
65
65
|
}
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"connection_id": { "type": "string", "pattern": "^CONNECTION-[A-Z0-9][A-Z0-9_-]*$" },
|
|
20
20
|
"provider": { "type": "string", "minLength": 1 },
|
|
21
21
|
"property_id": { "type": ["string", "null"] },
|
|
22
|
+
"credential_env": { "type": "string", "pattern": "^[A-Z][A-Z0-9_]*$" },
|
|
22
23
|
"state": { "type": "string", "enum": ["not_configured", "configured", "synchronized", "partial", "authorization_expired", "permission_denied", "quota_limited", "temporarily_unavailable"] },
|
|
23
24
|
"authentication": { "type": "string", "enum": ["none", "environment", "os_keychain", "external_secret_manager", "owner_import"] },
|
|
24
25
|
"scopes": { "type": "array", "items": { "type": "string" } },
|
|
@@ -7,7 +7,7 @@ description: >
|
|
|
7
7
|
generative engine optimization, structured data governance, claim substantiation,
|
|
8
8
|
crawler policy, entity consistency, content discoverability, or wants a site audited
|
|
9
9
|
for how search and AI systems will retrieve, understand, cite, or recommend it.
|
|
10
|
-
version: 1.
|
|
10
|
+
version: 1.6.0
|
|
11
11
|
---
|
|
12
12
|
|
|
13
13
|
# Citable — search & generative discoverability governance
|
|
@@ -89,6 +89,12 @@ citable observe <mode> [options] # render/index/citation/log/passage/consen
|
|
|
89
89
|
citable apply --input <spec> [--write] # reviewed, hash-locked remediation; dry run by default
|
|
90
90
|
citable monitor [runA runB] # observation regression alerts
|
|
91
91
|
citable metrics import --provider <name> --input <csv|json>
|
|
92
|
+
citable connect status
|
|
93
|
+
citable connect configure --provider <gsc|ga4> --connection-id <id> --property-id <id> [--credential-env <name>] [--write]
|
|
94
|
+
citable connect discover --provider <gsc|ga4>
|
|
95
|
+
citable connect validate --connection-id <id>
|
|
96
|
+
citable connect sync --connection-id <id> --start-date YYYY-MM-DD --end-date YYYY-MM-DD
|
|
97
|
+
citable connect disconnect --connection-id <id> [--write]
|
|
92
98
|
citable objectives init --input <json|yaml> [--write]
|
|
93
99
|
citable objectives validate
|
|
94
100
|
citable evaluate [objective-id] [--ref-date YYYY-MM-DD]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.6.0
|
|
@@ -10,7 +10,7 @@ imports, and a disclosed custom citation-adapter protocol. It does not claim
|
|
|
10
10
|
Bing AI Performance automation or equivalence between an API adapter and a
|
|
11
11
|
consumer answer product. Preserve collector and product mode on every result.
|
|
12
12
|
|
|
13
|
-
# implemented metric and objective workflow
|
|
13
|
+
# implemented metric, connector, and objective workflow
|
|
14
14
|
|
|
15
15
|
`citable metrics import --provider <name> --input <csv|json>` validates every
|
|
16
16
|
row against a declared entry in `metrics.yaml` and writes immutable metric
|
|
@@ -27,6 +27,21 @@ absence of provider credentials is `not_configured`, not a finding and not
|
|
|
27
27
|
evidence of zero activity. Credentials must never enter registries or evidence
|
|
28
28
|
packages.
|
|
29
29
|
|
|
30
|
+
Live GSC and GA4 connections are explicitly optional. Configure only a
|
|
31
|
+
property identifier and the name of the environment variable that holds its
|
|
32
|
+
OAuth token; never place the token itself in `.citable/connections.yaml`.
|
|
33
|
+
`citable connect configure` and `disconnect` are dry runs unless `--write` is
|
|
34
|
+
used. `connect discover`, `validate`, and `sync` require read-only provider
|
|
35
|
+
authorization. `sync` writes declared metric observations with provider
|
|
36
|
+
limitations and advances a non-secret cursor. Provider errors are recorded as
|
|
37
|
+
connection state, not converted into zero observations or audit findings.
|
|
38
|
+
|
|
39
|
+
The GSC adapter collects final Search Analytics rows and inherits Search
|
|
40
|
+
Console aggregation, privacy filtering, and top-row availability limits. The GA4 adapter collects Data API
|
|
41
|
+
rows restricted to the `Organic Search` default channel group and inherits the
|
|
42
|
+
property's reporting identity, thresholding, attribution, and consent choices.
|
|
43
|
+
Neither source establishes that an intervention caused an observed change.
|
|
44
|
+
|
|
30
45
|
# measure seo
|
|
31
46
|
Inputs the operator exports (Search Console/Bing/analytics CSV or JSON).
|
|
32
47
|
Workflow: validate segmentation (brand vs non-brand, intent, page type,
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "citable",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"managedBy": "citable-cli",
|
|
5
5
|
"provider": "github",
|
|
6
6
|
"providerName": "GitHub Copilot",
|
|
7
7
|
"scope": "bundle",
|
|
8
|
-
"sourcePackage": "@nebulacomponents/citable@1.
|
|
8
|
+
"sourcePackage": "@nebulacomponents/citable@1.6.0",
|
|
9
9
|
"variantPath": ".github/skills/citable",
|
|
10
10
|
"files": {
|
|
11
11
|
"commands/action-findings.md": "sha256:510361461f24fcd4a550e0a8d960c383aefe23f9a65a54a3ffc44abd4c1293e7",
|
|
12
12
|
"commands/ingest.md": "sha256:cf35659aecd9d0e160909003efdbe056864fc5d824c71b4ef0ee801ce07ff598",
|
|
13
|
-
"commands/measurement.md": "sha256:
|
|
13
|
+
"commands/measurement.md": "sha256:6709d90e247435b08afd543950c810dfc48581374fb220d9c68ad757ea45b25f",
|
|
14
14
|
"commands/observe-and-act.md": "sha256:02a93bbbfddc3d8e11cb921ddccd19b0666133c4bdb4f4a280bcb131bed37e8c",
|
|
15
15
|
"commands/optimize-page.md": "sha256:35866f3d7cdeef0376ea7a7d7036085a9b9cf95bbb300ecf4bd77610ebd74d85",
|
|
16
16
|
"commands/page-work.md": "sha256:965a66e59bdf7b0da482d26fade53b3d265885ece5d463fe83b0789ebefaef3e",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"schemas/common.defs.json": "sha256:effdd812910d1c275c50520bb70d8aec085e53fa8cb68054dc58c04a5d4a66b3",
|
|
39
39
|
"schemas/competitor.schema.json": "sha256:2f6fd7e4543846bde56ff4dc62bb41fa366889787b794a7cdb0bff1a3392e591",
|
|
40
40
|
"schemas/config.schema.json": "sha256:a87f3bb0087de09035b9f2dafea66e32e4fcc2e3e329abcd0fd8a5ec33318f2a",
|
|
41
|
-
"schemas/connection.schema.json": "sha256:
|
|
41
|
+
"schemas/connection.schema.json": "sha256:abcedde8d62d0c0663d4f959e06132a617908058ed965078965445ef3b108310",
|
|
42
42
|
"schemas/crawler.schema.json": "sha256:1a113dfb80bc6cde904c3ea648c82ea1d88fe50f2c1a0e7175d44abba28ac64e",
|
|
43
43
|
"schemas/detector-quality.schema.json": "sha256:5e9e1ac80b1198a0ff8fa17b9f7a543d3ccf3ed3d60196152f6ff095cfdebccd",
|
|
44
44
|
"schemas/entity.schema.json": "sha256:78a08c35c8f4eb7a804ab46b61a238502f59621ac5218991e783251fbde61c4f",
|
|
@@ -57,9 +57,9 @@
|
|
|
57
57
|
"schemas/remediation-spec.schema.json": "sha256:6fe8cb773702862ba6d261198bb5cc2dca3eca0a2310a60ebddd04377654df8d",
|
|
58
58
|
"schemas/run.schema.json": "sha256:46c3178620f3a358d936d535aeadb83454b9b35b551e53e6615cc9862063dacb",
|
|
59
59
|
"scripts/README.md": "sha256:1c3e952950ef353849621b07c5f615bf7cd20cc5654da4635492a7bd6384e747",
|
|
60
|
-
"SKILL.md": "sha256:
|
|
60
|
+
"SKILL.md": "sha256:d60d894b72372da0f77185bdec5ed366ee071f82040b84ade578acfff478018b",
|
|
61
61
|
"templates/finding-review.md": "sha256:b270a83d3f015150aac80249ae9314979c0befea39ff92ec455f9a5aaa73404c",
|
|
62
|
-
"VERSION": "sha256:
|
|
62
|
+
"VERSION": "sha256:cb1d9a30bc4ab8a397f39b7d786bb82aca0b816077eefc35d7c822017d75f6a5"
|
|
63
63
|
},
|
|
64
|
-
"treeHash": "sha256:
|
|
64
|
+
"treeHash": "sha256:f47445faa4a4c734ef5478342653ae6dc89cba8019f6a5cef97008d7a91c705f"
|
|
65
65
|
}
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"connection_id": { "type": "string", "pattern": "^CONNECTION-[A-Z0-9][A-Z0-9_-]*$" },
|
|
20
20
|
"provider": { "type": "string", "minLength": 1 },
|
|
21
21
|
"property_id": { "type": ["string", "null"] },
|
|
22
|
+
"credential_env": { "type": "string", "pattern": "^[A-Z][A-Z0-9_]*$" },
|
|
22
23
|
"state": { "type": "string", "enum": ["not_configured", "configured", "synchronized", "partial", "authorization_expired", "permission_denied", "quota_limited", "temporarily_unavailable"] },
|
|
23
24
|
"authentication": { "type": "string", "enum": ["none", "environment", "os_keychain", "external_secret_manager", "owner_import"] },
|
|
24
25
|
"scopes": { "type": "array", "items": { "type": "string" } },
|
|
@@ -7,7 +7,7 @@ description: >
|
|
|
7
7
|
generative engine optimization, structured data governance, claim substantiation,
|
|
8
8
|
crawler policy, entity consistency, content discoverability, or wants a site audited
|
|
9
9
|
for how search and AI systems will retrieve, understand, cite, or recommend it.
|
|
10
|
-
version: 1.
|
|
10
|
+
version: 1.6.0
|
|
11
11
|
---
|
|
12
12
|
|
|
13
13
|
# Citable — search & generative discoverability governance
|
|
@@ -89,6 +89,12 @@ citable observe <mode> [options] # render/index/citation/log/passage/consen
|
|
|
89
89
|
citable apply --input <spec> [--write] # reviewed, hash-locked remediation; dry run by default
|
|
90
90
|
citable monitor [runA runB] # observation regression alerts
|
|
91
91
|
citable metrics import --provider <name> --input <csv|json>
|
|
92
|
+
citable connect status
|
|
93
|
+
citable connect configure --provider <gsc|ga4> --connection-id <id> --property-id <id> [--credential-env <name>] [--write]
|
|
94
|
+
citable connect discover --provider <gsc|ga4>
|
|
95
|
+
citable connect validate --connection-id <id>
|
|
96
|
+
citable connect sync --connection-id <id> --start-date YYYY-MM-DD --end-date YYYY-MM-DD
|
|
97
|
+
citable connect disconnect --connection-id <id> [--write]
|
|
92
98
|
citable objectives init --input <json|yaml> [--write]
|
|
93
99
|
citable objectives validate
|
|
94
100
|
citable evaluate [objective-id] [--ref-date YYYY-MM-DD]
|