story-bible

story-bible is a skill for Claude Code from jedikim/storyai. It costs 90 tokens per session (729 once invoked), scanned A, original, MIT.

A story reference guide for tracking characters, places, objects, world rules, relationships, and foreshadowing in a novel.

In plain words
What is it for?
Looking up or adding story facts, extracting established facts from chapters for review, tracing relationships, and checking information as of a particular chapter.
Why use it?
It helps keep new writing consistent with established facts and prevents details revealed later in the story from leaking into earlier chapters.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the storyai plugin — 3 skills, 1 MCP server shipped together

Good fit Looking up or adding story facts, extracting established facts from chapters for review, tracing relationships, and checking information as of a particular chapter.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jedikim/storyai/story-bible
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.

Any agent
npx skills add jedikim/storyai --skill story-bible
Clone the repo
git clone --depth 1 https://github.com/jedikim/storyai

Made for: Claude Code.

Or install storyai, the plugin that ships this one along with the rest of its 3 skills, 1 MCP server.

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 story-bible

README.md
[![agentmods](https://agentmods.dev/badge/skills/jedikim/storyai/story-bible/github.svg)](https://agentmods.dev/skills/jedikim/storyai/story-bible)
Your own site
<a href="https://agentmods.dev/skills/jedikim/storyai/story-bible"><img src="https://agentmods.dev/badge/skills/jedikim/storyai/story-bible/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for story-bible

Your own site · 80×15
<a href="https://agentmods.dev/skills/jedikim/storyai/story-bible"><img src="https://agentmods.dev/badge/skills/jedikim/storyai/story-bible.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 90 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 729 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00090 $0.00729
Opus 5 $0.00045 $0.00365
Sonnet 5 $0.00018 $0.00146
Haiku 4.5 $0.00009 $0.00073

Measured 11d ago against content hash fce72b39c5a4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

story-bible 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 11d 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/story-bible/SKILL.md · 54 lines

What it actually says

설정집

조회

find("한도영")                      # 이름·별칭 퍼지 검색
get("character/한도영")             # 요약 (기본값)
get("character/한도영", include="body", as_of=14)  # 14장 시점의 전체 상태
refs("character/한도영", dir="in")  # 이 인물을 건드리는 모든 씬
trace(from="object/놋쇠열쇠")       # 이 소품이 어떤 서사 장치로 이어지는가

as_of를 주면 그 시점 이후에 밝혀진 사실은 숨겨집니다. n+1장을 쓰는 중이라면 as_of=n으로 조회해서 미래 정보 유출을 막으세요.

등록

새 요소는 다음을 채워 propose합니다.

  • id — 사람이 읽는 주소. character/이름, object/이름 형식. UUID 금지
  • title, aliases — 별칭은 산문 속 언급을 묶는 데 쓰이니 빠짐없이
  • story_from / story_to — 작중 언제부터 언제까지 존재·유효한가
  • reveal_at — 독자에게 언제 드러났는가. story_from보다 크면 회상입니다
  • evidence — 이 사실이 확립된 원문 위치

원고에서 추출

ingest(chapter="A2/ch14") — 확정된 원고에서 노드와 간선을 뽑아 제안으로 올립니다. 자동 커밋되지 않습니다. 추출 결과를 사람이 검토합니다.

이미 인덱싱된 챕터를 고쳤다면 ingest(chapter=..., mode="reindex")로 다시 돌리세요. 그 지점 이후의 파생 간선이 무효화됩니다.

세계관 규칙은 특별합니다

kind="Rule"이고 locked=true인 노드는 정본입니다. 모순을 발견해도 고치지 말고 contradicts 간선을 남기세요. 정본을 바꾸는 건 사람의 결정입니다.

스키마가 헷갈리면

graph_schema()로 현재 노드 타입·간선 타입·태그 체계를 확인하세요. 손으로 빚은 툴로 안 풀리는 질의는 query(sql)로 직접 쓰면 됩니다.

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. 11d ago First seen · 54 lines · 90 tokens per session scan A fce72b39c5a4

Subscribe to this mod's changes

story-bible is a skill published in the GitHub repository jedikim/storyai (0 stars, last pushed 18d ago), licensed MIT. It adds 90 tokens to every session and 729 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-31.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens

insight-error-page

Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…

vercel/next.js · 83 tokens