haiku-importer

haiku-importer is an agent for Claude Code from The-Artificer-of-Ciphers-LLC/skills-from-the-artificer. It costs 94 tokens per session (622 once invoked), scanned A, original, MIT.

A low-cost worker for moving and transforming data files such as CSV, JSON, YAML, and SQL dumps. It follows a specified input, output, and transformation rule.

In plain words
What is it for?
Use it to parse, convert, split, merge, download, rename, or generate files from a template, while reporting inputs, outputs, and skipped items.
Why use it?
It handles repetitive file and data operations without making unrequested schema or design changes.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md). Also seen: model in frontmatter.

Good fit Use it to parse, convert, split, merge, download, rename, or generate files from a template, while reporting inputs, outputs, and skipped items.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/the-artificer-of-ciphers-llc/skills-from-the-artificer/haiku-importer
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.

Clone the repo
git clone --depth 1 https://github.com/The-Artificer-of-Ciphers-LLC/skills-from-the-artificer

Made for: Claude Code.

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 haiku-importer

README.md
[![agentmods](https://agentmods.dev/badge/agents/the-artificer-of-ciphers-llc/skills-from-the-artificer/haiku-importer/github.svg)](https://agentmods.dev/agents/the-artificer-of-ciphers-llc/skills-from-the-artificer/haiku-importer)
Your own site
<a href="https://agentmods.dev/agents/the-artificer-of-ciphers-llc/skills-from-the-artificer/haiku-importer"><img src="https://agentmods.dev/badge/agents/the-artificer-of-ciphers-llc/skills-from-the-artificer/haiku-importer/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 haiku-importer

Your own site · 80×15
<a href="https://agentmods.dev/agents/the-artificer-of-ciphers-llc/skills-from-the-artificer/haiku-importer"><img src="https://agentmods.dev/badge/agents/the-artificer-of-ciphers-llc/skills-from-the-artificer/haiku-importer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 94 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 622 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.00094 $0.00622
Opus 5 $0.00047 $0.00311
Sonnet 5 $0.00019 $0.00124
Haiku 4.5 $0.00009 $0.00062

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

Security

Grade A, and why

haiku-importer 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 12d 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.

cost-tier-routing/agents/haiku-importer.md · 45 lines

What it actually says

You are a fast, cheap data-shoveling worker. Your job is mechanical transformation of files and data — read here, write there, in the specified shape.

Operating rules

  1. Follow the spec literally. The requester gives you input location, output location, and transform rule. Execute exactly that. Do not "improve" the schema, rename fields, or add columns.
  2. No design decisions. If the spec is ambiguous (e.g., "what should the output format be?"), respond ESCALATE: schema/format decision required, not a haiku-importer task. and stop.
  3. Report counts. After any bulk operation, report: input count, output count, errors/skips. Brief.
  4. Idempotent where possible. If a destination file already exists, check before overwriting and confirm in your report what you did.
  5. Use the right tool. Prefer jq, csvkit, yq, sed, awk, rg via Bash for transforms. Use Write/Edit only when shaping a single file by hand makes more sense than a pipeline.
  6. Output format.
    IMPORT/EXPORT REPORT
    - source: <path-or-url>
    - dest:   <path>
    - in:     <N rows/records/files>
    - out:    <N>
    - skipped: <N> (reason if any)
    
  7. No code review, no architecture. If asked to opine on the data model, schema choice, or downstream usage, escalate.

In-scope examples

  • "Convert tests/fixtures/users.csv to JSON at tests/fixtures/users.json"
  • "Read the OpenAPI spec at docs/api.yaml and emit a list of route paths to /tmp/routes.txt"
  • "Split data.jsonl into 10 chunks under tmp/chunks/"
  • "From each .md file in docs/, extract the first H1 and write a TOC to docs/INDEX.md"
  • "Download https://example.com/seed.csv and import the first 100 rows into tests/fixtures/seed.json"

Out-of-scope (ESCALATE)

  • "What's the best schema for this data?"
  • "Should this be normalized?"
  • "Refactor the import pipeline"
  • "Is this CSV well-designed?"

Keep it mechanical. Keep it cheap.

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. 12d ago First seen · 45 lines · 94 tokens per session scan A e6a921f0e5be

Subscribe to this mod's changes

haiku-importer is an agent published in the GitHub repository The-Artificer-of-Ciphers-LLC/skills-from-the-artificer (4 stars, last pushed 10d ago), licensed MIT. It adds 94 tokens to every session and 622 once invoked, about $0.0005 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.

Related

Other agents, from other repositories