用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/bibinprathap/VeritasGraph --skill export命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
VeritasReason full-stack knowledge graph skill for context graphs, decision intelligence, explainability, extraction, reasoning, visualization, ontology, provenance, policy, and export workflows.
Analyze cause-and-effect relationships in the VeritasReason knowledge graph — causal chains, interventions, counterfactuals, and causal influence scores.
Track and inspect graph changes, diffs, temporal updates, and the impact of new data on VeritasReason knowledge graphs.
基于 SOC 职业分类
正在显示 SKILL.md
| name | export |
| description | Export VeritasReason graphs, results, and provenance to JSON, RDF, Parquet, CSV, GraphML, and other formats. |
Export knowledge graph data. Usage: /veritasreason:export <format> [args]
$ARGUMENTS = format + optional target or destination.
json [--output <path>] [--filter <query>]Export graph data as JSON.
from veritasreason.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 veritasreason.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 veritasreason.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 veritasreason.export import GraphExporter
exporter = GraphExporter(format='graphml', include_attributes=True)
exporter.export(graph_data, output)
Output: Graph format file suitable for visualization tools.