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.
npx agentmods add skills/ea-toolkit/architecture-catalog/crawl-datanpx skills add ea-toolkit/architecture-catalog --skill crawl-datagit clone --depth 1 https://github.com/ea-toolkit/architecture-catalogWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00052 | $0.01620 |
| Opus 5 | $0.00026 | $0.00810 |
| Sonnet 5 | $0.00010 | $0.00324 |
| Haiku 4.5 | $0.00005 | $0.00162 |
Grade A, and why
crawl-data 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 3d 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.
How it starts
The opening of the file, as written. The whole thing — 177 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Crawl Data — Discover and Register Data Models
Scan a codebase directory for data model definitions and propose registry entries.
Arguments
$1— Path to scan (required). Absolute or relative path to the codebase to crawl.--domain <name>— Domain to assign discovered models to (optional, will ask if omitted).--write— Write proposed entries to registry immediately (default: preview only).
If no path is provided, ask the user which directory to scan.
Workflow
1. Discover Type-to-Folder Mapping
Read models/registry-mapping.yaml to find:
- The folder path for
data_conceptentries - The folder path for
data_aggregateentries - The folder path for
data_entityentries - The
_template.mdin each folder for frontmatter structure
Never hardcode paths. Always derive from the YAML.
2. Scan for Data Model Definitions
Search the target directory for data model files. Use these detection patterns:
SQL Schema files:
- Glob:
**/*.sql,**/migrations/**/*.sql,**/schema/**/*.sql - Content match:
CREATE TABLE,ALTER TABLE - Extract: table name, column names/types, constraints, foreign keys
Prisma models:
- Glob:
**/schema.prisma,**/*.prisma - Content match:
model <Name> { - Extract: model name, fields with types, relations (
@relation)
TypeORM / Sequelize / Drizzle (TypeScript ORMs):
- Grep for:
@Entity(),@Table,Model.init,pgTable(,mysqlTable( - Look in:
**/models/**,**/entities/**,**/schema/** - Extract: class/table name, decorated columns, relations
Pydantic / dataclass models (Python):
- Grep for:
class.*BaseModel,@dataclass,class.*Model.*models.Model(Django) - Look in:
**/models/**,**/schemas/**,**/domain/** - Extract: class name, field names/types, validators
TypeScript interfaces / types:
- Grep for:
export interface,export type.*=.*{ - Look in:
**/types/**,**/interfaces/**,**/models/** - Extract: interface/type name, property names/types
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.
- 3d ago First seen · 177 lines · 52 tokens per session scan A 7f8c542f9f54
crawl-data is a skill published in the GitHub repository ea-toolkit/architecture-catalog (38 stars, last pushed 4mo ago), licensed MIT. It adds 52 tokens to every session and 1,620 once invoked, about $0.0003 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.
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"…
angora-schema
Design or evolve SQLite schema (src/data/schema/tables/.ts) using Drizzle ORM — new tables, relational modeling, junction tables for many-to-many, foreign keys, CHECK constraints, SEO fields (slug, metatitle, metadescription), draft/published status columns, and media references. Trigger whenever the user wants to…
angora-data
Quick operations on src/data/data.sqlite — inspect the current schema, add a single column to an existing table via Drizzle migration, seed 2-5 test rows, or run a read-only SELECT/COUNT query. Trigger whenever the user wants a small, single-step database operation. Phrases like 'add a company column to testimonials'…
angora-import
Bulk-import structured data (CSV or JSON) from inbox/ into existing database tables — maps fields to columns, validates against the Drizzle schema, inserts within a transaction. Trigger whenever the user wants to load, import, pull, or ingest a data file from inbox into an existing table. Phrases like 'import…
supabase-setup
Conventions for the supabase/ directory — migrations, Edge Functions, env vars, and the rule against pushing without explicit user ask.
schema-exploration
Lists tables, describes columns and data types, identifies foreign key relationships, and maps entity relationships in a database. Use when the user asks about database schema, table structure, column types, what tables exist, ERD, foreign keys, or how entities relate.