Summary
Wire Clarivate research-intelligence APIs (Web of Science, Pivot-RP funding data, Derwent patents) into ArcKit as evidence sources for architecture and strategy artefacts.
Full plan: docs/plans/2026-07-16-clarivate-api-integration.md
Problem / use case
The weak point in any AI-generated strategy artefact is provenance. A Wardley map or options appraisal is only as defensible as the evidence under it. Clarivate supplies exactly the class of evidence that is expensive to gather by hand and hard to dispute once cited: peer-reviewed publication volume, citation weight, funding flows, patent activity, and organisation-level research footprints.
This lets ArcKit answer questions it currently can only assert:
- Where does a capability sit on the evolution axis? (Publication/patent growth curves as a defensible genesis → commodity proxy.)
- Who are the credible players in a technology area, by research output rather than marketing presence?
- Which funders are backing a field, at what scale, and is the money rising or falling?
- What is an institution's real research strength, for due-diligence artefacts?
The evolution-signal case is the headline one: it strengthens the Wardley skill ArcKit already ships, and it is the hardest thing to do credibly by hand.
Proposed solution
A clarivate plugin following the existing plugin/skill shape, with a deliberately source-agnostic transforms/ layer so an OpenAlex/Crossref client can be swapped in behind the same interface (plan §7).
plugins/clarivate/
SKILL.md
client/ wos_starter.py wos_expanded.py derwent.py cache.py
transforms/ evolution_signal.py funder_flows.py org_footprint.py
commands/ /arckit:evidence-scan /arckit:funder-map
Design principles: keys out-of-band (env / git-ignored secrets, never committed or logged); graceful degradation by plan (volume-only signals on free tier); hard caching keyed by query under .arckit/cache/clarivate/ with snapshot dates, reusing arckit-build --refresh semantics; every datum carries its WoS UID / grant reference / DOI into the artefact.
Phased delivery
- Phase 0 — spike. Done. Endpoints, auth, plan differences, GRANTS database, swagger specs confirmed;
wos_test.sh harness exists (Starter + Expanded).
- Phase 1 — free-tier evidence-scan.
wos_starter.py + volume-only evolution_signal.py + /arckit:evidence-scan. Self-serve Free Trial key, zero licence cost. Proves the value.
- Phase 2 — citation-weighted signals. Institutional Member plan or Expanded; citation-weighted evolution curves;
org_footprint.
- Phase 2b (parallel) — open-source source. OpenAlex/Crossref client behind the same transform interface for a zero-licence path.
- Phase 3 — funder value-chain. Expanded
GRANTS support + funder_flows.py + /arckit:funder-map. Novel artefact type; closes the loop to Pivot-RP.
- Phase 4 — patents (optional). Derwent client, licence permitting; adds the patent axis to evolution scoring.
Acceptance criteria (Phase 1)
Key reconnaissance findings (from live probing)
- The Free Trial plan is self-serve and instant, but deliberately withholds times-cited counts — the citation graph is the monetised asset. Volume signals work on free tier; citation-weighted signals need Institutional Member or Expanded.
- The Expanded
databaseId enum includes GRANTS as a first-class searchable database — the same funding data behind Pivot-RP's awarded-grants module, reachable programmatically through one endpoint.
optionView=FR is the single switch returning funding + full affiliation blocks vs. the trimmed default.
- Derwent's GraphQL endpoint leaks its schema to unauthenticated introspection but gates all data behind the key — useful for building a client offline, useless for pulling patents without a licence.
Risks / open questions
Immediate next step
Register a Free Trial application on developer.clarivate.com, generate a Starter key, run wos_test.sh starter to confirm real-record retrieval, then build Phase 1 against it. Everything above Phase 1 waits on a licence or institutional-plan decision.
AI Tool
None
Summary
Wire Clarivate research-intelligence APIs (Web of Science, Pivot-RP funding data, Derwent patents) into ArcKit as evidence sources for architecture and strategy artefacts.
Full plan:
docs/plans/2026-07-16-clarivate-api-integration.mdProblem / use case
The weak point in any AI-generated strategy artefact is provenance. A Wardley map or options appraisal is only as defensible as the evidence under it. Clarivate supplies exactly the class of evidence that is expensive to gather by hand and hard to dispute once cited: peer-reviewed publication volume, citation weight, funding flows, patent activity, and organisation-level research footprints.
This lets ArcKit answer questions it currently can only assert:
The evolution-signal case is the headline one: it strengthens the Wardley skill ArcKit already ships, and it is the hardest thing to do credibly by hand.
Proposed solution
A
clarivateplugin following the existing plugin/skill shape, with a deliberately source-agnostictransforms/layer so an OpenAlex/Crossref client can be swapped in behind the same interface (plan §7).Design principles: keys out-of-band (env / git-ignored secrets, never committed or logged); graceful degradation by plan (volume-only signals on free tier); hard caching keyed by query under
.arckit/cache/clarivate/with snapshot dates, reusingarckit-build--refreshsemantics; every datum carries its WoS UID / grant reference / DOI into the artefact.Phased delivery
wos_test.shharness exists (Starter + Expanded).wos_starter.py+ volume-onlyevolution_signal.py+/arckit:evidence-scan. Self-serve Free Trial key, zero licence cost. Proves the value.org_footprint.GRANTSsupport +funder_flows.py+/arckit:funder-map. Novel artefact type; closes the loop to Pivot-RP.Acceptance criteria (Phase 1)
/arckit:evidence-scan <capability>returns a publication-volume time series with WoS UIDs cited--refreshforces re-pullKey reconnaissance findings (from live probing)
databaseIdenum includesGRANTSas a first-class searchable database — the same funding data behind Pivot-RP's awarded-grants module, reachable programmatically through one endpoint.optionView=FRis the single switch returning funding + full affiliation blocks vs. the trimmed default.Risks / open questions
arckit-buildcould exhaust quota fast — hard caching mitigates; consider a build-level budget guard.Immediate next step
Register a Free Trial application on developer.clarivate.com, generate a Starter key, run
wos_test.sh starterto confirm real-record retrieval, then build Phase 1 against it. Everything above Phase 1 waits on a licence or institutional-plan decision.AI Tool
None