smithery/mahirkurt

audit-log-evidence-pointer

Her karar/çıkarım için kanıt referansı (evidence_pointer) standardı ve JSONL audit log formatı.

Installation

$ npx skills add smithery/mahirkurt --skill audit-log-evidence-pointer

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/mahirkurt.

npx skills add smithery/mahirkurt

Browse all from smithery/mahirkurt

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,183 B
  • docs SUMMARY.md 137 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Audit Log + Evidence Pointer Standardı

Amaç

LLM/insan kararlarının ve çıkarımlarının her zaman bir kanıt parçasına (PDF sayfa, satır, tablo, DOI/PMID linki, query run) bağlanması.

evidence_pointer şeması (öneri)

{
  "evidence_pointer": {
    "source_type": "pdf|html|abstract|database_record",
    "source_locator": {
      "path": "data/raw/pdfs/.../paper.pdf",
      "url": "https://...",
      "document_id": "doi:...|pmid:..."
    },
    "location": {
      "page": 4,
      "table": "Table 2",
      "figure": null,
      "quote": "verbatim excerpt..."
    }
  }
}

Audit log (JSONL) formatı

logs/audit_log.jsonl her satır bir event:

{
  "timestamp": "YYYY-MM-DDTHH:mm:ssZ",
  "actor": "agent|human",
  "action": "screening_decision|data_extraction|risk_of_bias|analysis_choice",
  "record_id": "canonical_id|source_id",
  "payload": {},
  "evidence_pointer": {"source_type":"pdf","source_locator":{"path":"..."},"location":{"page":4}},
  "notes": "..."
}