Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

story-context故事背景

Agent Skill

story-context 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

964

周安装

41

GitHub Stars

147

下载量

338
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:story-context(故事背景)
来源仓库:https://github.com/haowjy/creative-writing-skills
仓库路径:skills/story-context
安装命令:
npx skills add https://github.com/haowjy/creative-writing-skills --skill story-context
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/haowjy/creative-writing-skills --skill story-context

简介

story-context 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位内容。

  • 适用于基于关键词或任务场景从来源线索中提取信息的场景。
  • 通过 npx skills add 命令安装,需结合原始 README 确认使用方法。
  • 安装前建议核实权限范围、维护状态及是否涉及联网或文件操作。
  • 可参考来源仓库进一步验证功能细节。

SKILL.md

Story Context

Every spawn starts with a context decision. Get it wrong and the writer invents facts that contradict established canon, the critic misses a continuity issue because it never saw the relevant chapter, or the brainstormer explores territory the author already rejected.

The /meridian-spawn skill teaches the mechanics of -f, --from, and spawn commands. This skill teaches the judgment — what story context to pass, when to materialize decisions before spawning, and how much is enough.

Choose the Right Mechanism

-f — concrete artifacts. Use when the context already exists as files: chapters, outlines, wiki pages, style files, character state files. The agent reads exactly what you point it at. This is the default choice because files are stable, inspectable, and survive compaction.

KB=$(meridian context kb)
WORK=$(meridian context work)

# Good: writer gets the scene brief, relevant style files, and prior chapter for continuity
meridian spawn -a writer -p "Draft the Route 1 encounter scene" \
  -f $WORK/outline/route1-brief.md \
  -f $KB/styles/[relevant style files] \
  -f $KB/styles/[relevant scene-type files] \
  -f story/chapter4/4chapter.md

# Bad: dumping every chapter and style file "just in case"
meridian spawn -a writer -p "Draft the Route 1 encounter" \
  -f story/**/*.md -f $KB/styles/*.md

--from — conversation history. Use when the agent needs to understand decisions, reasoning, or brainstorm context that hasn't been written down yet. Session history captures the *why* behind choices — why the author picked this meeting angle, what tone they want, what they explicitly rejected.

# Good: critic needs to understand the author's intent for this scene
meridian spawn -a critic --from p203 -p "Review for voice consistency" \
  -f $WORK/drafts/route1-v1.md

# Bad: passing --from when the direction is already captured in an outline

Materialize first — when context is too important to be ephemeral. If critical story decisions only live in conversation, write them to the kb or work directory *before* spawning. Story direction decisions are especially important to materialize — if the author chose "comedic misunderstanding" over "shared threat" for a meeting scene, that reasoning needs to survive compaction. The writer who drafts the scene weeks later needs to know not just what was chosen, but what was rejected.

Rule of thumb: if a writer could accidentally contradict this context, materialize it. If it's supplementary background that enriches but isn't load-bearing, --from is fine.

What Each Agent Needs

Writers

Writers need enough to stay in voice and on-canon, not everything ever written. The essential context:

  • Scene brief or outline — what happens in this scene, the beats to hit
  • Relevant style files — look at what exists in the styles directory and pick the files that match the scene. Character files for whoever appears, scene-type files for the kind of scene being written. Each style file is self-describing — read the top to know when it applies.
  • Continuity anchors — the immediately preceding chapter or scene (for flow), plus any chapters that establish facts this scene references. Two to four files, not the entire manuscript.
  • Character state — character files for characters who appear in the scene, especially if their emotional state or knowledge has changed recently

Tell the writer where to find more if it needs to explore — "the full arc outline is in the work directory, focus on the Route 1 section" — rather than attaching everything preemptively.

Critics

Critics need the draft plus enough context to judge it against:

  • The draft being reviewed — always via -f
  • The scene brief or outline — so the critic can check whether the draft achieved what it was supposed to
  • Relevant style files — so voice critics can compare against the target voice
  • Prior chapters for continuity — so continuity critics can cross-reference facts
  • Author intent — via --from if the orchestrator discussed direction with the author, or via materialized decision notes
  • Known issues — tracked issues if the critic should watch for specific recurring problems

Brainstormers

Brainstormers need constraints, not answers:

  • The question being explored — scoped tightly in the prompt
  • Established context that constrains the answer — character profiles, timeline, prior decisions that limit the design space
  • What's been rejected — so they don't re-propose dead ends

Don't pass too much — brainstormers that receive the full project history tend to produce conservative ideas that fit neatly into existing patterns instead of exploring fresh territory.

Knowledge Maintenance Agents

  • Session-miner: --from pointing at the conversation to mine, plus kb paths for where to write findings
  • Chronicler: the chapter(s) to extract facts from via -f, plus existing canon files and timeline entries for deduplication
  • Graph-maintainer: the kb directory structure — it needs to see everything to rebuild connections

Cross-Phase Context

Use --from <prior-spawn-id> to carry forward what a previous phase learned. The revision writer benefits from seeing what the first-draft writer discovered — where the outline was ambiguous, what choices were made to fill gaps. The critic benefits from seeing prior critique rounds — what was already flagged and addressed.

Combine mechanisms when phases produce artifacts: pass the prior spawn's report via --from for reasoning context, and the files it created via -f for concrete outputs.

WORK=$(meridian context work)

# Revision writer gets the critique synthesis AND the original draft
meridian spawn -a writer \
  --from p301 \
  -f $WORK/drafts/route1-v1.md \
  -f $WORK/critique-reports/round1-synthesis.md \
  -p "Revise the Route 1 scene, addressing the pacing and voice findings"

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.35%
按下载量换算123

Claude

32.44%
按下载量换算110

Cursor

17.82%
按下载量换算60

Gemini CLI

9.81%
按下载量换算33

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/haowjy/creative-writing-skills --skill story-context 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills