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

ln-220-story-coordinatorln 220 故事协调员

Agent Skill

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

总安装

6,344

周安装

267

GitHub Stars

437

下载量

2,221
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/levnikolaevich/claude-code-skills --skill ln-220-story-coordinator

简介

ln-220-story-coordinator 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Paths: File paths (shared/, references/, ../ln-*) are relative to skills repo root. If not found at CWD, locate this SKILL.md directory and go up one level for repo root.

Story Coordinator

Type: L2 Domain Coordinator Category: 2XX Planning

Runtime-backed Story planning coordinator. The runtime owns flow control, pause/resume, and worker result tracking.

MANDATORY READ

Load these before execution:

  • shared/references/coordinator_runtime_contract.md
  • shared/references/story_planning_runtime_contract.md
  • shared/references/coordinator_summary_contract.md
  • shared/references/environment_state_contract.md
  • shared/references/storage_mode_detection.md
  • shared/references/problem_solving.md

Purpose

  • assemble Epic planning context
  • perform focused standards research when it changes Technical Notes
  • build the ideal Story plan before checking existing Stories
  • detect routing and mode per epic group
  • batch child manifest/artifact preparation before delegation
  • delegate creation or replanning to standalone workers

Inputs

ParameterRequiredDescription
epicIdYesEpic to decompose
autoApproveNoIf false, runtime pauses on preview confirmation

Runtime

Runtime family: story-planning-runtime

Identifier:

  • epic-{epicId}

Phases:

  1. PHASE_0_CONFIG
  2. PHASE_1_CONTEXT_ASSEMBLY
  3. PHASE_2_RESEARCH
  4. PHASE_3_PLAN
  5. PHASE_4_ROUTING
  6. PHASE_5_MODE_DETECTION
  7. PHASE_6_DELEGATE
  8. PHASE_7_FINALIZE
  9. PHASE_8_SELF_CHECK

Terminal phases:

  • DONE
  • PAUSED

Summary flow:

  • consume child story-plan-worker artifacts from ln-221 / ln-222
  • write coordinator story-plan artifact during PHASE_7_FINALIZE

Phase Map

Phase 1: Context Assembly

Resolve Epic and assemble only the planning inputs that change Story decomposition:

  • Epic scope
  • success criteria
  • known personas and constraints
  • project task provider

Checkpoint payload:

  • context_ready

Phase 2: Research

Do focused research only when it changes Story Technical Notes or implementation constraints.

Do not let research expand Story scope.

Checkpoint payload:

  • research_status
  • research_file

Phase 3: Plan

Build the ideal Story plan before looking at existing Stories.

Rules:

  • vertical slices only
  • 5-10 Stories when Epic warrants it
  • concise Story statements and observable ACs
  • no orchestration prose inside the plan
  • delegate ACs must specify what equips the actor (context, instructions, tools, configuration), not just what the actor does

Checkpoint payload:

  • ideal_plan_summary

Phase 4: Routing

Route planned Stories to epic groups.

Fast path:

  • all Stories stay in the resolved Epic

Pause only when routing is ambiguous or requires confirmation.

Checkpoint payload:

  • routing_summary

Phase 5: Mode Detection

Determine mode per epic group:

  • CREATE
  • REPLAN
  • ADD

Checkpoint payload:

  • epic_group_modes

Phase 6: Delegate

Phase 6 has two internal steps.

Phase 6a: Prepare delegation

  • finalize routing groups
  • materialize worker manifests
  • precompute run_id and summary_artifact_path for each child
  • checkpoint the expected worker set before execution

Phase 6b: Execute delegation

Delegate by group:

  • ln-221-story-creator
  • ln-222-story-replanner

Workers remain standalone-capable. In managed mode the coordinator starts them through planning-worker-runtime, passes runId + summaryArtifactPath, stores the launch metadata in child_run, then records the resulting worker artifact through record-epic.

Worker summary kind:

  • story-plan-worker

Phase 7: Finalize

Finalize only after all expected worker summaries are recorded.

Coordinator output:

  • build one story-plan summary for the parent runtime
  • write it through node shared/scripts/story-planning-runtime/cli.mjs record-plan-summary
  • persist the artifact before advancing to PHASE_8_SELF_CHECK

Template compliance gate: Fetch each created Story via get_issue. Run validateTemplateCompliance(description, 'story') from planning-runtime/lib/template-compliance.mjs. All stories must pass (9 sections in order). Record template_compliance_passed in state. Guard blocks SELF_CHECK without it.

Checkpoint payload:

  • final_result
  • template_compliance_passed

Phase 8: Self-Check

Confirm:

  • phase coverage
  • planned vs produced Story counts
  • no missing epic groups

Checkpoint payload:

  • pass
  • final_result

Pending Decisions

Use runtime PAUSED + pending_decision for:

  • missing context
  • routing confirmation
  • ambiguous ADD vs REPLAN
  • preview confirmation when autoApprove=false

Do not hold these decisions only in chat.

Worker Contract

Workers:

  • do not know the coordinator
  • do not read runtime state
  • remain standalone
  • may receive summaryArtifactPath
  • return shared summary envelope either way

Expected summary kind:

  • child workers: story-plan-worker
  • coordinator output: story-plan

Worker Invocation (MANDATORY)

PhaseWorkerContext
6ln-221-story-creatorCREATE or ADD path
6ln-222-story-replannerREPLAN path
node shared/scripts/planning-worker-runtime/cli.mjs start --skill {worker} --identifier {identifier} --manifest-file {workerManifestPath} --run-id {childRunId} --summary-artifact-path {childSummaryArtifactPath}
child_run = { skill, run_id, identifier, summary_artifact_path }
childSummaryArtifactPath = .hex-skills/runtime-artifacts/runs/{parent_run_id}/story-plan-worker/{worker}--{identifier}.json
Skill(skill: "{worker}", args: "{identifier} --ideal-plan {idealPlanJSON} --epic {epicId} --run-id {childRunId} --summary-artifact-path {childSummaryArtifactPath}")
Read {childSummaryArtifactPath}
node shared/scripts/story-planning-runtime/cli.mjs record-epic --epic {epicId} --payload-file {childSummaryArtifactPath}
node shared/scripts/story-planning-runtime/cli.mjs record-plan-summary --epic {epicId} --payload-file {coordinatorSummaryPath}

TodoWrite format (mandatory)

- Phase 1: Assemble context (pending)
- Phase 2: Research only what changes Technical Notes (pending)
- Phase 3: Build ideal Story plan (pending)
- Phase 4: Route Stories by Epic (pending)
- Phase 5: Detect mode per group (pending)
- Phase 6a: Prepare delegation batch (pending)
- Phase 6b: Execute worker(s) sequentially (pending)
- Phase 7: Finalize result (pending)
- Phase 8: Self-check (pending)

Critical Rules

  • Build the ideal plan before checking existing Stories.
  • Use research only to improve Technical Notes and implementation realism.
  • Do not keep routing or preview approvals in chat-only state.
  • Batch only read-only preparation. Do not parallelize Story mutations across routed groups unless runtime semantics explicitly allow it.
  • Do not create or update Stories directly when a worker should do it.
  • Consume worker summaries, not free-text worker prose.

Definition of Done

  • Runtime started with Epic-scoped identifier
  • Context assembly checkpointed
  • Research checkpointed or explicitly minimal
  • Ideal plan checkpointed
  • Routing checkpointed
  • Mode detection checkpointed
  • All expected worker summaries recorded
  • Coordinator story-plan summary recorded
  • Final result checkpointed
  • Template compliance passed for all created Stories
  • Self-check passed

Meta-Analysis

MANDATORY READ: Load shared/references/meta_analysis_protocol.md

Skill type: planning-coordinator. Run after all phases complete. Output to chat using the protocol format.

Reference Files

  • shared/references/environment_state_contract.md
  • shared/references/storage_mode_detection.md
  • references/replan_algorithm.md

Version: 5.0.0 Last Updated: 2026-02-03

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

30.8%
按下载量换算684

Gemini CLI

25.16%
按下载量换算559

Codex

18.3%
按下载量换算406

OpenCode

12.99%
按下载量换算289

Antigravity

7.28%
按下载量换算162

windsurf

3.31%
按下载量换算74

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills