angora-import

angora-import is a skill for Claude Code from Aysnc-Labs/angora. It costs 142 tokens per session (765 once invoked), scanned A, original, MIT.

A reference guide showing how different events move through an application's use-case flows.

In plain words
What is it for?
It helps developers follow handling for issues, pull requests, comments, pushes, single actions, permissions, branches, and related steps.
Why use it?
It makes the order of actions and the conditions for each path easier to understand when tracing application behavior.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter.

Good fit It helps developers follow handling for issues, pull requests, comments, pushes, single actions, permissions, branches, and related steps.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aysnc-labs/angora/angora-import
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 Aysnc-Labs/angora --skill angora-import
Clone the repo
git clone --depth 1 https://github.com/Aysnc-Labs/angora

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 angora-import

README.md
[![agentmods](https://agentmods.dev/badge/skills/aysnc-labs/angora/angora-import/github.svg)](https://agentmods.dev/skills/aysnc-labs/angora/angora-import)
Your own site
<a href="https://agentmods.dev/skills/aysnc-labs/angora/angora-import"><img src="https://agentmods.dev/badge/skills/aysnc-labs/angora/angora-import/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 angora-import

Your own site · 80×15
<a href="https://agentmods.dev/skills/aysnc-labs/angora/angora-import"><img src="https://agentmods.dev/badge/skills/aysnc-labs/angora/angora-import.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 142 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 765 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.00142 $0.00765
Opus 5 $0.00071 $0.00382
Sonnet 5 $0.00028 $0.00153
Haiku 4.5 $0.00014 $0.00076

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

Security

Grade A, and why

angora-import 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 9d 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.

.claude/skills/angora-import/SKILL.md · 85 lines

How it starts

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

Import: $ARGUMENTS

Import structured data from inbox/ into the SQLite database.

Before you start

  1. Check inbox — verify the target file exists in inbox/.
  2. Read schema — glob src/data/schema/tables/*.ts to discover tables, read relevant files for column details.

Workflow

1. Read and detect format

Read the inbox file. Detect format:

  • JSON array[{...}, {...}]
  • Nested JSON{ "testimonials": [...], "authors": [...] }
  • CSV — comma-separated with header row

2. Analysis phase

Map data fields to schema columns. Flag:

  • Fields in data without matching columns
  • Required columns (NOT NULL, no default) without data
  • Type mismatches (string in INTEGER column, etc.)
  • Missing foreign key targets (e.g., media_id referencing non-existent media)
  • Duplicate slugs
  • Which table(s) the data maps to

3. Flag schema gaps

If the data has fields that don't match the schema, do NOT modify the schema. Report clearly:

"The data has a company field but the testimonials table doesn't have a company column. This needs schema work first. Run /angora-schema to update the schema."

4. Present mapping for approval

Show the user:

  • Source field → Target column mapping
  • Sample of first 2-3 rows as they would be inserted
  • Any transformations needed (date format, slug generation, etc.)
  • Row count

Wait for user approval before inserting.

5. Import with transactions

node -e "
  import db from './src/data/db.ts';
  import { <table> } from './src/data/schema/tables/<table>.ts';
  const rows = <data>;
  db.insert(<table>).values(rows).run();
  console.log('Inserted ' + rows.length + ' rows.');
"

Drizzle wraps multi-row inserts in a transaction by default.

6. Verify

Query and show a sample of inserted data:

node -e "
  import db from './src/data/db.ts';
  import { <table> } from './src/data/schema/tables/<table>.ts';
  import { desc } from 'drizzle-orm';
  const rows = db.select().from(<table>).orderBy(desc(<table>.id)).limit(5).all();
  console.table(rows);
"

Read the full file on GitHub · 85 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 9d ago First seen · 85 lines · 142 tokens per session scan A 75eecf120b1b

Subscribe to this mod's changes

angora-import is a skill published in the GitHub repository Aysnc-Labs/angora (6 stars, last pushed 4mo ago), licensed MIT. It adds 142 tokens to every session and 765 once invoked, about $0.0007 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 skills, from other repositories

chrome-ext-storage

This skill should be used when working with data storage in Chrome extensions or when the user asks about extension storage patterns. Trigger when: "chrome.storage", "extension storage", "storage.local", "storage.sync", "storage.session", "IndexedDB in extension", "extension data persistence", "write-through cache"…

RadOrigin-LLC/RAD-Claude-Skills · 106 tokens

architecting-data

Strategic guidance for designing modern data platforms, covering storage paradigms (data lake, warehouse, lakehouse), modeling approaches (dimensional, normalized, data vault, wide tables), data mesh principles, and medallion architecture patterns. Use when architecting data platforms, choosing between centralized vs…

ancoleman/ai-design-components · 81 tokens

optimizing-sql

Optimize SQL query performance through EXPLAIN analysis, indexing strategies, and query rewriting for PostgreSQL, MySQL, and SQL Server. Use when debugging slow queries, analyzing execution plans, or improving database performance.

ancoleman/ai-design-components · 47 tokens

planning-disaster-recovery

Design and implement disaster recovery strategies with RTO/RPO planning, database backups, Kubernetes DR, cross-region replication, and chaos engineering testing. Use when implementing backup systems, configuring point-in-time recovery, setting up multi-region failover, or validating DR procedures.

ancoleman/ai-design-components · 58 tokens

using-graph-databases

Graph database implementation for relationship-heavy data models. Use when building social networks, recommendation engines, knowledge graphs, or fraud detection. Covers Neo4j (primary), ArangoDB, Amazon Neptune, Cypher query patterns, and graph data modeling.

ancoleman/ai-design-components · 56 tokens

using-document-databases

Document database implementation for flexible schema applications. Use when building content management, user profiles, catalogs, or event logging. Covers MongoDB (primary), DynamoDB, Firestore, schema design patterns, indexing strategies, and aggregation pipelines.

ancoleman/ai-design-components · 52 tokens