zettelforge

zettelforge is a skill for Claude Code, Codex from ThreatRecall/zettelforge. It costs 97 tokens per session (1,493 once invoked), scanned A, original, MIT.

A persistent memory system for cybersecurity threat intelligence, which is information about attacks, vulnerabilities, attackers, tools, and campaigns. It combines keyword, vector, and relationship-based retrieval to connect related facts.

In plain words
What is it for?
Use it to store and search cyber threat reports, extract entities such as CVEs and threat actors, connect related tools or campaigns, and produce answers, briefs, timelines, or relationship maps.
Why use it?
It lets an agent save threat-intelligence notes and retrieve linked information later, including connections across entities and events.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/threatrecall/zettelforge/archive
Any agent
npx skills add ThreatRecall/zettelforge --skill archive
Clone the repo
git clone --depth 1 https://github.com/ThreatRecall/zettelforge

Made for: Claude Code, Codex.

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 zettelforge

README.md
[![agentmods](https://agentmods.dev/badge/skills/threatrecall/zettelforge/archive.svg)](https://agentmods.dev/skills/threatrecall/zettelforge/archive)
Your own site
<a href="https://agentmods.dev/skills/threatrecall/zettelforge/archive"><img src="https://agentmods.dev/badge/skills/threatrecall/zettelforge/archive.svg" alt="Measured on agentmods" height="20"></a>
Per session 97 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,493 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00097 $0.01493
Opus 5 $0.00048 $0.00746
Sonnet 5 $0.00019 $0.00299
Haiku 4.5 $0.00010 $0.00149

Measured 4d ago against content hash b7fcd7b01b75, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

zettelforge 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 4d 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.

docs/archive/SKILL.md · 159 lines

How it starts

The opening of the file, as written. The whole thing — 159 lines — stays where its author put it; the contents beside it link to each section on GitHub.

ZettelForge v2.0.0: Agentic Memory System

Production-grade memory for CTI analysis. Hybrid TypeDB (STIX 2.1) + LanceDB (vectors). Zero external AI dependencies.

Status (2026-04-10)

All systems operational:

  • ✅ Vector retrieval (fastembed, in-memory cosine similarity)
  • ✅ Knowledge graph (TypeDB STIX 2.1 with JSONL fallback)
  • ✅ Entity extraction (10 types: CVE, actor, tool, campaign, person, location, org, event, activity, temporal)
  • ✅ Two-phase extraction pipeline (FactExtractor → MemoryUpdater)
  • ✅ Cross-encoder reranking (ms-marco-MiniLM)
  • ✅ Synthesis layer (direct_answer, synthesized_brief, timeline_analysis, relationship_map)
  • ✅ 36 CTI aliases seeded (APT28/Fancy Bear/Strontium, etc.)

Benchmarks

Benchmark Score What it tests
CTI Retrieval 75.0% Attribution, CVE linkage, tools, temporal, multi-hop
LOCOMO 18.0% Conversational memory recall
RAGAS 78.1% Retrieval quality (keyword presence)

Quick Start

from zettelforge import MemoryManager

mm = MemoryManager()

# Store threat intel
note, status = mm.remember(
    "APT28 uses Cobalt Strike for lateral movement via CVE-2024-1111",
    domain="cti"
)

# Two-phase extraction (selective, deduplicating)
results = mm.remember_with_extraction(
    "APT28 dropped DROPBEAR, now exploits edge devices.",
    domain="cti"
)

# Ingest reports (auto-chunks)
results = mm.remember_report(
    content="Full threat report text...",
    source_url="https://example.com/report",
    domain="cti"
)

# Retrieve — blended vector + graph, cross-encoder reranked
results = mm.recall("What tools does APT28 use?", k=10)

# Alias resolution works automatically
results = mm.recall_actor("Fancy Bear")  # resolves to APT28

# Entity lookups
mm.recall_cve("CVE-2024-3094")
mm.recall_tool("cobalt-strike")

# Graph traversal
paths = mm.traverse_graph("actor", "apt28", max_depth=2)

# Synthesize answers
result = mm.synthesize("Summarize APT28 activity", format="synthesized_brief")

Read the full file on GitHub · 159 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 4d ago First seen · 159 lines · 97 tokens per session scan A b7fcd7b01b75

Subscribe to this mod's changes

zettelforge is a skill published in the GitHub repository ThreatRecall/zettelforge (58 stars, last pushed 21d ago), licensed MIT. It adds 97 tokens to every session and 1,493 once invoked, about $0.0005 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.

Related

Other skills, from other repositories

agent-messaging

Send, poll, wait for, and acknowledge durable addressed agent-to-agent messages in Aionforge Memory (messagesend, messagepoll, messagewait, messageack) and subscribe to room resources. Use to hand a brief to another agent, page a teammate, wait for a reply, coordinate a multi-agent workflow, or drain an inbox …

jscott3201/aionforge-memory · 79 tokens

memory-bootstrap

One-time setup that lays a foundational Aionforge Memory substrate for a fresh project — resolve identity, seed conventions and architecture decisions as captures, stand up a work-item backlog skeleton, and verify recall. Use when a project's memory is empty or new, or when the user asks to set up, bootstrap…

jscott3201/aionforge-memory · 71 tokens

work-tracking

Track tasks, blockers, TODOs, plans, and follow-ups as durable Aionforge Memory work items. Use proactively when a multi-step task, backlog, plan, or handoff appears, and whenever the user mentions tasks, status, or what is left to do. Work items are persistent and status-tracked, distinct from decaying memory…

jscott3201/aionforge-memory · 75 tokens

memory-capture

Capture durable Aionforge Memory records for decisions, user preferences, project facts, release outcomes, validation results, handoffs, corrections, and reusable failure patterns. Use proactively during substantial work and whenever the user asks to remember or update memory.

jscott3201/aionforge-memory · 52 tokens

memory-loop

Use Aionforge Memory as the working substrate for a multi-step task. Trigger for implementation, debugging, review, release, planning, incidents, handoffs, or any session where prior context and durable follow-up matter.

jscott3201/aionforge-memory · 47 tokens

memory-recall

Search Aionforge Memory before planning, answering, coding, review, debugging, release, or continuation work. Use proactively whenever prior decisions, user preferences, project facts, failures, or handoffs could change the answer.

jscott3201/aionforge-memory · 48 tokens