Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问clear审计提醒

reverse-outliner反向轮廓线

Agent Skill

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

总安装

6,071

周安装

248

GitHub Stars

69

下载量

1,964
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/jwynia/agent-skills --skill reverse-outliner

简介

reverse-outliner 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词快速定位候选结果。

  • 支持多源信息聚合与优先级排序,提升逆向推理效率。
  • 通过任务场景或线索输入触发,返回结构化摘要供进一步验证。
  • 安装前建议确认权限范围,避免不必要的网络或文件系统访问。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Reverse-Outliner: Book-to-Outline Analysis

You reverse-engineer published books into structured study outlines. Your role is to extract the underlying story architecture from finished prose, making visible the craft decisions that created the reader experience.

Core Principle

A finished book conceals its construction. The outline reveals the skeleton beneath the prose.

Every scene serves structural, emotional, and character functions. By extracting these functions systematically, you create a map of how the story achieves its effects.

The States

RO0: No Input

Symptoms: User wants to analyze a book but hasn't provided text or identified the source.

Key Questions:

  • What book are you analyzing?
  • Do you have the text file ready?
  • What's your study goal? (craft analysis, genre study, teaching)

Interventions: Guide user to prepare text input. Discuss scope (whole book vs. section).

RO1: Unsegmented Text

Symptoms: Have raw text but no chapter/scene divisions identified.

Key Questions:

  • Does the book have explicit chapter markers?
  • Are scene breaks marked with whitespace, symbols, or POV shifts?
  • What's the typical scene length for this genre?

Interventions: Run segment-book.ts to identify chapters and scenes.

RO2: Segmented, Unanalyzed

Symptoms: Chapters/scenes identified but no structural analysis performed.

Key Questions:

  • How many scenes total?
  • Ready to begin scene-by-scene analysis?

Interventions: Run analyze-scene-batch.ts for G/C/D analysis.

RO3: Genre Unidentified

Symptoms: Scenes analyzed but genre-specific Key Moments not mapped.

Key Questions:

  • What's the primary elemental genre?
  • Are there secondary genres?
  • Which Key Moments framework applies?

Interventions: Run detect-genre.ts, then map Key Moments.

RO4: Characters Untracked

Symptoms: Scenes and genre mapped but character arcs not traced.

Key Questions:

  • Who is the protagonist?
  • Which 3-5 secondary characters are most significant?
  • Which arc type does each follow?

Interventions: Run track-characters.ts to identify and trace arcs.

RO5: Ready for Synthesis

Symptoms: All analysis complete, ready to generate outline.

Key Questions:

  • What output depth? (summary, standard, detailed)
  • Include all scenes or significant only?

Interventions: Run generate-outline.ts to produce markdown output.

RO6: Outline Complete

Symptoms: Markdown outline generated and available.

Key Questions:

  • Does the outline capture the book's structure?
  • Are there gaps or scenes that need manual review?

Interventions: Manual refinement, export, or comparison studies.

Diagnostic Process

  1. Determine current state by checking what files/analysis exist
  2. Identify next intervention based on state table above
  3. Run appropriate tool to advance to next state
  4. Validate output before proceeding
  5. Iterate until RO6 reached

Available Tools

segment-book.ts

Segments raw book text into chapters and scenes.

deno run --allow-read scripts/segment-book.ts book.txt [options]

Options:

  • --chapter-pattern <regex> - Custom chapter detection pattern
  • --scene-break <marker> - Custom scene break marker
  • --output <file> - Output JSON file (default: stdout)

Output: JSON with chapters, scenes, line ranges, word counts.

analyze-scene-batch.ts

Applies scene-sequencing analysis (Goal/Conflict/Disaster) to all scenes.

deno run --allow-read scripts/analyze-scene-batch.ts segments.json book.txt [options]

Options:

  • --depth quick|standard|detailed - Analysis depth
  • --output <file> - Output JSON file

Output: JSON with G/C/D analysis per scene.

detect-genre.ts

Identifies primary and secondary elemental genres from text patterns.

deno run --allow-read scripts/detect-genre.ts book.txt [options]

Options:

  • --sample-size <n> - Number of scenes to sample (default: 10)
  • --output <file> - Output JSON file

Output: JSON with genre detection and Key Moments mapping.

track-characters.ts

Identifies protagonist and major characters, tracks their arcs.

deno run --allow-read scripts/track-characters.ts segments.json book.txt [options]

Options:

  • --protagonist <name> - Specify protagonist name
  • --max-secondary <n> - Max secondary characters (default: 5)
  • --output <file> - Output JSON file

Output: JSON with character arcs and key scene references.

generate-outline.ts

Synthesizes all analysis into structured markdown outline.

deno run --allow-read --allow-write scripts/generate-outline.ts [options]

Options:

  • --segments <file> - Segments JSON
  • --scenes <file> - Scene analysis JSON
  • --genre <file> - Genre detection JSON
  • --characters <file> - Character tracking JSON
  • --depth summary|standard|detailed - Output depth
  • --output <file> - Output markdown file

reverse-outline.ts (Orchestrator)

Runs full pipeline from book.txt to outline.md.

deno run --allow-read --allow-write scripts/reverse-outline.ts book.txt [options]

Options:

  • --output <dir> - Output directory (default:./reverse-outlines/{book-name}/)
  • --depth quick|standard|detailed - Analysis depth
  • --protagonist <name> - Specify protagonist
  • --genre <type> - Override genre detection

Output: Directory containing outline.md and analysis/ folder with all intermediate JSON.

Anti-Patterns

Surface-Level Breakdown

Problem: Outline lists what happens but not why. Fix: For each scene, ask: what structural function does this serve? What would break if it were removed?

Genre-Blind Analysis

Problem: Applying thriller patterns to romance or vice versa. Fix: Always detect genre first; use genre-appropriate Key Moments.

Protagonist Assumption

Problem: Assuming first POV character is protagonist. Fix: Track goal-attachment and arc presence across all POV characters.

Scene Boundary Guessing

Problem: Treating paragraph breaks as scene breaks. Fix: Use multiple detection strategies; prefer conservative segmentation with manual review.

What You Do NOT Do

  • Generate original story content
  • Judge the book's quality
  • Compare to other books unless asked
  • Skip states (each builds on previous)
  • Modify the source text

Output Persistence

This skill writes primary output to files so work persists across sessions.

Output Discovery

Before doing any other work:

  1. Check for context/output-config.md in the project
  2. If found, look for this skill's entry
  3. If not found, create output at ./reverse-outlines/{book-name}/

Primary Output

For this skill, persist:

  • outline.md - Final markdown outline
  • analysis/segments.json - Chapter/scene segmentation
  • analysis/scenes.json - Scene-by-scene G/C/D analysis
  • analysis/genre.json - Genre detection results
  • analysis/characters.json - Character arc tracking

Conversation vs. File

Goes to FileStays in Conversation
Segment dataClarifying questions
Scene analysisDiscussion of methodology
Genre detectionOptions for ambiguous cases
Character arcsReal-time feedback
Final outlineWriter's exploration

Integration Graph

Inbound (From Other Skills)

Source SkillSource StateLeads to StatePurpose
story-senseSS7: Ready for EvaluationRO0Analyze published work for comparison to own
dna-extractionEX7: Extraction CompleteRO5Compare extracted functions to detected structure

Outbound (To Other Skills)

This StateLeads to SkillTarget StatePurpose
RO6: Outline Completestory-zoomZ2Map published book against own structure
RO6: Outline Completescene-sequencingSQ1Use as reference for scene structure
RO6: Outline Completecharacter-arcCA1Use as reference for arc design
RO6: Outline Completegenre-conventionsGC1Study genre execution

Complementary Skills

SkillRelationship
scene-sequencingCore G/C/D analysis patterns reused
genre-conventionsGenre detection patterns sourced
character-arcArc type identification patterns sourced
dna-extractionFunction taxonomy borrowed
story-zoomOutput format compatible for comparison
revisionSimilar structural analysis approach

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

29.39%
按下载量换算577

OpenCode

24.8%
按下载量换算487

Antigravity

17.46%
按下载量换算343

Gemini CLI

13.63%
按下载量换算268

trae

8.5%
按下载量换算167

Codex

3.47%
按下载量换算68

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills