catalog-register

catalog-register is a skill for Claude Code from etoyama/insight-blueprint. It costs 71 tokens per session (2,197 once invoked), scanned A, original, MIT.

A guide for registering CSV files, API endpoints, or SQL tables in a data catalogue, a record of available data sources and their schemas.

In plain words
What is it for?
It determines the source type, explores its structure, and registers the source through the catalogue tools after user confirmation.
Why use it?
It helps document a data source’s structure before adding it to the catalogue.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: mentions CLAUDE.md.

Part of the insight-blueprint plugin — 10 skills, 2 MCP servers shipped together

Good fit It determines the source type, explores its structure, and registers the source through the catalogue tools after user confirmation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/etoyama/insight-blueprint/catalog-register
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 etoyama/insight-blueprint --skill catalog-register
Clone the repo
git clone --depth 1 https://github.com/etoyama/insight-blueprint

Made for: Claude Code.

Or install insight-blueprint, the plugin that ships this one along with the rest of its 10 skills, 2 MCP servers.

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 catalog-register

README.md
[![agentmods](https://agentmods.dev/badge/skills/etoyama/insight-blueprint/catalog-register/github.svg)](https://agentmods.dev/skills/etoyama/insight-blueprint/catalog-register)
Your own site
<a href="https://agentmods.dev/skills/etoyama/insight-blueprint/catalog-register"><img src="https://agentmods.dev/badge/skills/etoyama/insight-blueprint/catalog-register/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 catalog-register

Your own site · 80×15
<a href="https://agentmods.dev/skills/etoyama/insight-blueprint/catalog-register"><img src="https://agentmods.dev/badge/skills/etoyama/insight-blueprint/catalog-register.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 71 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,197 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.
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.00071 $0.02197
Opus 5 $0.00036 $0.01099
Sonnet 5 $0.00014 $0.00439
Haiku 4.5 $0.00007 $0.00220

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

Security

Grade A, and why

catalog-register 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 10d 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/catalog-register/SKILL.md · 270 lines

How it starts

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

/catalog-register — Data Source Registration

Guides Claude through exploring a data source's structure and registering it in the insight-blueprint catalog via MCP tools.

When to Use

  • User wants to register a new data source (CSV file, API endpoint, SQL table)
  • User wants to catalog an existing dataset with schema information
  • User mentions "データカタログ", "ソース登録", or "register"

When NOT to Use

  • Updating an existing source (use update_catalog_entry directly)
  • Searching the catalog (use search_catalog directly)
  • Managing domain knowledge (future SPEC-3 scope)

Workflow

Step 0: User Confirmation Gate

Before proceeding, confirm with the user:

  • Ask: "このソースをカタログに登録しますか?"
  • If the user declines, exit gracefully with a brief message and do not proceed
  • If the user confirms, continue to Step 1

Step 1: Determine Source Type

Ask the user which type of data source to register:

  • CSV — Local file with headers
  • API — REST API endpoint (e.g., e-Stat, custom API)
  • SQL — Database table (e.g., BigQuery, PostgreSQL)

If $ARGUMENTS is provided, use it as the source type.

Step 2: Explore Data Structure

Follow the appropriate exploration workflow below.

Step 3: Build Registration

Construct the add_catalog_entry call with discovered schema.

Step 4: Register and Confirm

Call add_catalog_entry and show the result to the user.


CSV Source Workflow

Step 2a: Read File Headers

  1. Ask the user for the CSV file path
  2. Read the first 5 rows to discover columns:
    Read the file with limit=5 to see headers and sample data
    
  3. For each column, infer:
    • name: Header name
    • type: Infer from sample values (string, integer, float, date, boolean)
    • description: Ask user or infer from column name
    • nullable: Check if any sample values are empty
    • examples: First 2-3 non-empty values

Step 2b: Gather Metadata

Ask the user for:

  • source_id: A short slug (e.g., local-survey-2024)
  • name: Human-readable name
  • description: What this dataset contains

Read the full file on GitHub · 270 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. 10d ago First seen · 270 lines · 71 tokens per session scan A 6c912065b27a

Subscribe to this mod's changes

catalog-register is a skill published in the GitHub repository etoyama/insight-blueprint (0 stars, last pushed 18d ago), licensed MIT. It adds 71 tokens to every session and 2,197 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-31.