adapter-authoring

adapter-authoring is a skill for Claude Code, Codex from Kromatic-Innovation/athenaeum. It costs 86 tokens per session (2,095 once invoked), scanned A, original, Apache-2.0.

Instructions for building a source adapter for Athenaeum. A source adapter converts data from an API, export, feed, scraper or other tool into files that Athenaeum can import into its knowledge base.

In plain words
What is it for?
Use it to create or understand an Athenaeum integration that produces raw-intake files from an external data source.
Why use it?
It explains the required input format and separates importing data from building a storage backend, which saves developers from implementing the wrong kind of integration.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create or understand an Athenaeum integration that produces raw-intake files from an external data source.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kromatic-innovation/athenaeum/adapter-authoring
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Kromatic-Innovation/athenaeum --skill adapter-authoring
Clone the repo
git clone --depth 1 https://github.com/Kromatic-Innovation/athenaeum

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for adapter-authoring

README.md
[![agentmods](https://agentmods.dev/badge/skills/kromatic-innovation/athenaeum/adapter-authoring/github.svg)](https://agentmods.dev/skills/kromatic-innovation/athenaeum/adapter-authoring)
Your own site
<a href="https://agentmods.dev/skills/kromatic-innovation/athenaeum/adapter-authoring"><img src="https://agentmods.dev/badge/skills/kromatic-innovation/athenaeum/adapter-authoring/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for adapter-authoring

Your own site · 80×15
<a href="https://agentmods.dev/skills/kromatic-innovation/athenaeum/adapter-authoring"><img src="https://agentmods.dev/badge/skills/kromatic-innovation/athenaeum/adapter-authoring.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 86 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,095 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high YARA Match · line 3
    YARA rule matched a hack tool or exploit indicator (offensive tools, reconnaissance, privilege escalation, or exploit frameworks).
    Fix: Remove offensive tool references and exploit code. Legitimate agent skills should not contain penetration testing tools, exploit frameworks, or reconnaissance utilities.
  • high Prompt Injection · line 129
    Hidden instructions were detected in comments or invisible text. These could contain malicious directives. Manual review is recommended.
    Fix: Audit all comments and invisible characters. Remove any instructions that direct the agent to perform unauthorized actions. Use plain, reviewable content.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00086 $0.02095
Opus 5 $0.00043 $0.01047
Sonnet 5 $0.00017 $0.00419
Haiku 4.5 $0.00009 $0.00210

Measured 5d ago against content hash c813432976e3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

adapter-authoring scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/adapter-authoring/SKILL.md · 138 lines

How it starts

The opening of the file, as written. The whole thing — 138 lines — stays where its author put it; the contents beside it link to each section on GitHub.

adapter-authoring

Teach the user (or yourself, as an agent) how to build a source adapter for Athenaeum: a script or integration that turns an external source into raw-intake files the librarian compiles into the wiki. This skill is self-contained — it does not depend on any private Kromatic repo or context.

The authoritative contract this skill operationalises is docs/extending/adapter-contract.md. The runnable reference is examples/adapters/minimal_adapter.py. This skill file ships inside the published athenaeum package (under skills/); the contract doc and example live in the repository and the source distribution (links above), so it stays self-contained however it was installed.

Not the same thing as a store adapter. This skill is about a source adapter — turning external data into raw/ intake files, per docs/extending/adapter-contract.md above. If instead you are implementing a whole physical storage backend (e.g. so athenaeum can persist its knowledge root somewhere other than a local filesystem — an object store, a database), that is the Store protocol, and it has its own contract and its own runnable conformance harness:

  • docs/extending/store-contract.md — the published Store contract (issue athenaeum#983).
  • athenaeum.store_conformance.StoreConformanceTests — subclass it, override its store fixture with your own Store implementation, and run pytest; see docs/extending/store-contract.md's "Running the conformance harness against your own implementation" section for the exact shape, and tests/test_store_conformance_harness.py in the athenaeum repo for a complete worked example.

The two adapters never collide (same non-overlap docs/extending/storage-adapter-contract.md draws between the storage-adapter layer and this skill's intake adapters): an intake adapter turns an external source into raw/ files and stops at "how data enters the pipeline"; a Store implementation governs how the already-compiled wiki is physically read and written. If you're feeding a new external source in, keep reading this skill. If you want athenaeum's knowledge root to live on a different physical backend, go to docs/extending/store-contract.md instead.

Read the full file on GitHub · 138 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago Changed c813432976e3
  2. 11d ago First seen · 138 lines · 86 tokens per session scan A 45b0d8687b7d

Subscribe to this mod's changes

adapter-authoring is a skill published in the GitHub repository Kromatic-Innovation/athenaeum (12 stars, last pushed today), licensed Apache-2.0. It adds 86 tokens to every session and 2,095 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.