CtrlK
BlogDocsLog inGet started
Tessl Logo

export

Export Semantica graphs, results, and provenance to JSON, RDF, Parquet, CSV, GraphML, and other formats.

65

Quality

77%

Does it follow best practices?

Run evals on this skill

Adds up to 20 points to the overall score

View guide

SecuritybySnyk

Passed

No findings from the security scan

Fix and improve this skill with Tessl

tessl review fix ./plugins/skills/export/SKILL.md
SKILL.md
Quality
Evals
Security

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

Repository
semantica-agi/semantica
Last updated
First committed

Is this your skill?

If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.