corpus-capture

corpus-capture is a skill for Claude Code, Codex from GYF0311/lorekit. It costs 42 tokens per session (654 once invoked), scanned A, original, MIT.

A capture tool for saving rough notes, ideas, observations, decisions, and temporary information into a configured corpus inbox. A corpus is the chosen collection of notes and project knowledge; the tool does not turn entries into permanent knowledge.

In plain words
What is it for?
Use it for cross-project programming decisions, unresolved ideas, quick observations, or external clues that you want to store for later processing.
Why use it?
It gives scattered information a designated place without requiring you to organize or fully write it up immediately. It needs an existing configuration that identifies the corpus and its workbench inbox.

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/gyf0311/lorekit/corpus-capture
Any agent
npx skills add GYF0311/lorekit --skill corpus-capture
Clone the repo
git clone --depth 1 https://github.com/GYF0311/lorekit

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 corpus-capture

README.md
[![agentmods](https://agentmods.dev/badge/skills/gyf0311/lorekit/corpus-capture.svg)](https://agentmods.dev/skills/gyf0311/lorekit/corpus-capture)
Your own site
<a href="https://agentmods.dev/skills/gyf0311/lorekit/corpus-capture"><img src="https://agentmods.dev/badge/skills/gyf0311/lorekit/corpus-capture.svg" alt="Measured on agentmods" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 654 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.00042 $0.00654
Opus 5 $0.00021 $0.00327
Sonnet 5 $0.00008 $0.00131
Haiku 4.5 $0.00004 $0.00065

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

Security

Grade A, and why

corpus-capture 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.

skills/corpus-capture/SKILL.md · 93 lines

How it starts

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

corpus-capture

Optional entry skill for cross-project capture. It collects fragments into the configured corpus workbench; it does not compile long-term knowledge.

Config

Read:

~/.config/lorekit/global-corpus.json

Expected fields:

{
  "default_corpus": "/ABSOLUTE/PATH/TO/CORPUS",
  "lorekit_bin": "/ABSOLUTE/PATH/TO/CORPUS/bin/lorekit",
  "workbench_inbox_dir": "_工作台/收件",
  "daily_inbox_dir": "_工作台/日记收件",
  "knowledge_dir": "知识库",
  "raw_dir": "原料",
  "output_dir": "输出"
}

If the config does not exist, ask the user to configure it. Do not guess the corpus path.

Use an absolute lorekit_bin from config, or <default_corpus>/bin/lorekit if it exists.

When To Use

Use for:

  • "记一下", "先存一下", "放到工作台", "收件箱"
  • unresolved ideas, observations, rough notes, external clues
  • cross-project programming decisions that are not a daily journal entry

Do not use for:

  • daily journal, todo, daily compile, rolling/weekly synthesis: use wiki-daily
  • confirmed long-term knowledge: use corpus-fileback
  • URL/file ingest that should become 原料/ + 知识库/: use corpus-ingest
  • deletion or cleanup

Action

  1. Read global-corpus.json.

  2. Detect current project name, cwd, git branch, and commit when available.

  3. Create one append-only Markdown fragment under:

    <default_corpus>/<workbench_inbox_dir>/<YYYY-MM-DD>/<timestamp>-<slug>.md

  4. Use frontmatter:

---
type: inbox-note
status: inbox
captured_at: 2026-05-18T10:30:00+08:00
source_project:
source_context:
source_git_branch:
source_git_commit:
privacy: normal
related: []
---
  1. Preserve the user's meaning. Lightly structure only when it helps.
  2. Do not modify 知识库/.
  3. Do not modify 每日/.
  4. Do not run lorekit sync for workbench-only capture.

Workbench Injection

If the user asks to inject content into the workbench, write to _工作台/收件/ by default.

If the user names a different workbench folder, only write under _工作台/. Do not write outside the configured corpus.

Failure Handling

Read the full file on GitHub · 93 lines

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 · 93 lines · 42 tokens per session scan A ea34201f6113

Subscribe to this mod's changes

corpus-capture is a skill published in the GitHub repository GYF0311/lorekit (5 stars, last pushed 1mo ago), licensed MIT. It adds 42 tokens to every session and 654 once invoked, about $0.0002 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-31.

Related

Other skills, from other repositories

mindbase

Maintain a persistent AI-tended research wiki. Activates when the user wants to ingest a source (PDF, URL, article, paste), capture a thought, build the wiki context, query what's already known, lint for orphans/contradictions, or maintain page conventions. Phrases include "add this to my wiki", "today I decided…"…

frankchu91/mindbase-llm-wiki · 105 tokens

llm-wiki

Build and maintain a persistent, interlinked Obsidian-compatible markdown wiki using Karpathy's LLM Wiki pattern. Extension-backed with auto-generated metadata, guardrails, and 14 custom tools (+3 opt-in agent-trajectory tools).

zosmaai/pi-llm-wiki · 52 tokens

karpathy-llm-wiki

Use when building or maintaining a personal LLM-powered knowledge base. Triggers: ingesting sources into a wiki, querying wiki knowledge, linting wiki quality, 'add to wiki', 'what do I know about', or any mention of 'LLM wiki' or 'Karpathy wiki'.

Astro-Han/karpathy-llm-wiki · 67 tokens

openkb

Use when the user asks about content in their OpenKB knowledge base — research topics, concepts compiled from their documents, cross-document synthesis — or mentions openkb, an .openkb/ directory, or a wiki/ tree generated by openkb. The user may invoke you from any working directory; the active KB resolves via openkb…

VectifyAI/OpenKB · 102 tokens

openclaw-memory-tencentdb-setup

用于在 OpenClaw 环境中安装、配置并验证 @tencentdb-agent-memory/memory-tencentdb 插件。当用户提到"安装记忆插件""配置 memory-tencentdb""开启长期记忆/召回"或出现相关报错时应触发。.

TencentCloud/TencentDB-Agent-Memory · 70 tokens

link-memory

Use after important user-approved decisions, when durable context should be proposed or reviewed, and for explicit Link memory lifecycle work: remember, recall, review, update, archive, restore, forget, or explain local memories through the CLI without requiring MCP.

gowtham0992/link · 0 tokens