Agent Skills
› semantica-agi/semantica
› provenance
provenance
GitHub用于在Semantica图中追踪数据血缘、来源归属、审计轨迹及验证状态。支持通过节点ID追溯来源链,或按时间/操作者查看图变更的审计日志,确保数据可解释性与合规性。
Trigger Scenarios
查询特定数据节点的来源和演化历史
审查数据图的变更记录和操作者行为
验证数据的可信度与审计合规性
Install
npx skills add semantica-agi/semantica --skill provenance -g -y
SKILL.md
Frontmatter
{
"name": "provenance",
"description": "Trace data lineage, source attribution, audit trails, and provenance assertions in Semantica graphs."
}
/semantica:provenance
Inspect provenance metadata. Usage: /semantica:provenance <task> [args]
$ARGUMENTS = task + optional node, edge, or time range.
trace <node_id> [--depth N]
Trace the provenance of a node or fact.
from semantica.provenance import ProvenanceTracer
tracer = ProvenanceTracer()
trace = tracer.trace_node(node_id=node_id, depth=depth)
Output: source chain, authors, timestamps, and validation status.
audit [--since <ts>] [--actor <id>]
View audit logs for graph changes.
audit_log = tracer.get_audit_log(since=since, actor=actor)
Return: change events, actor, affected objects, and action details.
Version History
- 9094f1e Current 2026-07-05 09:26


