export

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

A graph-data export tool for saving knowledge graphs, their results, and their history in common data formats such as JSON, CSV, RDF, Parquet, and GraphML.

In plain words
What is it for?
Use it to create files for analytics, data exchange, graph visualisation, or further processing. It supports formats including JSON, RDF serialisations, Parquet, GraphML, GEXF, and DOT.
Why use it?
It removes the need to write separate conversion code when moving graph data into other tools. It can also save filtered graph data to a file or return it directly.

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 create files for analytics, data exchange, graph visualisation, or further processing. It supports formats including JSON, RDF serialisations, Parquet, GraphML, GEXF, and DOT.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/semantica-agi/semantica/export
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,329 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 export
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 export

README.md
[![agentmods](https://agentmods.dev/badge/skills/semantica-agi/semantica/export.svg)](https://agentmods.dev/skills/semantica-agi/semantica/export)
Your own site
<a href="https://agentmods.dev/skills/semantica-agi/semantica/export"><img src="https://agentmods.dev/badge/skills/semantica-agi/semantica/export.svg" alt="Measured on agentmods" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 357 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.00029 $0.00357
Opus 5 $0.00015 $0.00179
Sonnet 5 $0.00006 $0.00071
Haiku 4.5 $0.00003 $0.00036

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

Security

Grade A, and why

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

plugins/skills/export/SKILL.md · 68 lines

What it actually says

/semantica:export

Export knowledge graph data. Usage: /semantica:export <format> [args]

$ARGUMENTS = format + optional target or destination.


json [--output <path>] [--filter <query>]

Export graph data as JSON.

from semantica.export.methods import export_json

export_json(data=graph_data, file_path=output, format='json')

Output: JSON file or inline JSON payload.


rdf [--format turtle|rdfxml|jsonld|ntriples|n3] [--output <path>]

Export the graph in RDF serialization.

from semantica.export.methods import export_rdf

export_rdf(data=graph_data, file_path=output, format='turtle')

Return: RDF text or file path.


parquet [--output <path>]

Export nodes and edges to Parquet for analytics.

from semantica.export.methods import export_parquet

export_parquet(data=graph_data, file_path=output, compression='snappy')

Output: Parquet dataset ready for downstream processing.


graphml|gexf|dot [--output <path>]

Export the graph to a supported graph format.

from semantica.export import GraphExporter

exporter = GraphExporter(format='graphml', include_attributes=True)
exporter.export(graph_data, output)

Output: Graph format file suitable for visualization tools.

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 · 68 lines · 29 tokens per session scan A 59d33407fe73

Subscribe to this mod's changes

export is a skill published in the GitHub repository semantica-agi/semantica (12,329 stars, last pushed today), licensed MIT. It adds 29 tokens to every session and 357 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.