ingest

ingest is a skill for Claude Code from semantica-agi/semantica. It costs 28 tokens per session (221 once invoked), scanned A, original, MIT.

A command for importing data into Semantica knowledge graphs from files, databases, APIs, or streams. Schema mapping matches incoming fields to the graph’s structure, while entity linking connects records that refer to the same thing.

In plain words
What is it for?
Use it to import JSON, CSV, YAML, or XML files, run database queries for ingestion, map entities, and review import counts and warnings.
Why use it?
It removes the need to manually convert each source and add its records and relationships to the graph.

Skill for Claude Code

Written for Claude Code: $ARGUMENTS substitution.

Part of the semantica plugin — 17 skills, 3 agents, 2 hooks shipped together

Good fit Use it to import JSON, CSV, YAML, or XML files, run database queries for ingestion, map entities, and review import counts and warnings.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/semantica-agi/semantica/ingest
About the project

Semantica is an open-source infrastructure layer that turns enterprise data into structured context and knowledge graphs, where ontologies define meaning and graph reasoning connects facts and decisions. It is intended for AI systems and agents that need traceable, governed, and explainable context in high-stakes domains. The catalogue add-ons provide agent workflows, hooks, and plugins for operating Semantica.

semantica-agi/semantica · 12,697 stars · on GitHub · getsemantica.ai

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 semantica-agi/semantica --skill ingest
Clone the repo
git clone --depth 1 https://github.com/semantica-agi/semantica

Made for: Claude Code.

Or install semantica, the plugin that ships this one along with the rest of its 17 skills, 3 agents, 2 hooks.

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 ingest

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/semantica-agi/semantica/ingest"><img src="https://agentmods.dev/badge/skills/semantica-agi/semantica/ingest.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 221 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 pass 7 Sept 2026
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.00028 $0.00221
Opus 5 $0.00014 $0.00111
Sonnet 5 $0.00006 $0.00044
Haiku 4.5 $0.00003 $0.00022

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

Security

Grade A, and why

ingest 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.

plugins/skills/ingest/SKILL.md · 39 lines

What it actually says

/semantica:ingest

Ingest new data into the knowledge graph. Usage: /semantica:ingest <source> [args]

$ARGUMENTS = source type + optional file path, connection string, or dataset identifier.


file <path> [--format json|csv|yaml|xml]

Ingest structured data from a local file.

from semantica.ingest import ingest_file

data = ingest_file(file_path=path, method='file', file_format=file_format)

Output: imported node/edge count and ingestion summary.


db <connection> [--query <sql>]

Ingest data from a database source.

from semantica.ingest import ingest_database

result = ingest_database(connection_string=conn, query=query)

Return: rows ingested, mapped entities, and warnings.

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 · 39 lines · 28 tokens per session scan A 220cea04eb84

Subscribe to this mod's changes

ingest is a skill published in the GitHub repository semantica-agi/semantica (12,697 stars, last pushed today), licensed MIT. It adds 28 tokens to every session and 221 once invoked, about $0.0001 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.

Related

Other skills, from other repositories

marimo-pair

Work inside the user's live marimo notebook from the code editor: run Python in the same kernel the user does, inspect live notebook state, and commit durable notebook changes through code mode. Use whenever you create, analyze, or improve the user's marimo notebook.

marimo-team/marimo · 57 tokens

fill-model-descriptions

Fill missing and refresh obsolete model descriptions in packages/llm-info/data/models.yml by querying OpenRouter and provider documentation. Use when the user asks to populate model descriptions, enrich the model catalog, or curate descriptions after running pnpm sync-models.

marimo-team/marimo · 58 tokens

create-atomic-context-provider

Build a BaseDynamicContextProvider that injects a named, titled block into an agent's system prompt at every run() — current time, user identity, retrieved RAG docs, session state, cached DB schema. Use when the user asks to "add a context provider", "inject X into the prompt", "give the agent dynamic context", "wire…

Eigenwise/atomic-agents · 106 tokens

gsd-ai-integration-phase

Generate an AI-SPEC.md design contract for phases that involve building AI systems.

open-gsd/gsd-core · 23 tokens

prompt-lookup

Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.

f/prompts.chat · 39 tokens

synalinks

Use for anything involving the Synalinks neuro-symbolic LM framework (Keras-inspired) — DataModel/Field/Input, JSON operators (+ & | ^ ), synalinks.ops, LanguageModel/EmbeddingModel and provider prefixes (openai/anthropic/ollama/groq/openrouter/bedrock/...); the Program class and its four building APIs…

SynaLinks/synalinks-skills · 290 tokens