Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

evanflow-writing-plansevanflow 写作计划

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

196

周安装

8

GitHub Stars

337

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/evanklem/evanflow --skill evanflow-writing-plans

简介

evanflow-writing-plans 辅助多步骤任务的计划分解,适合复杂项目的前期规划。

  • 适用于已有明确需求、涉及三个以上文件或需要拆分为独立子系统的场景。
  • 使用时应先检查文件结构,命名将创建或修改的文件,再进行任务分解。
  • 安装命令为 npx skills add https://github.com/evanklem/evanflow --skill evanflow-writing-plans。
  • 建议确认项目规模是否超出单文件修改范围,避免误用。

SKILL.md

EvanFlow: Writing Plans

Vocabulary

See evanflow meta-skill. Key terms: deep modules, interface, vertical slice, deletion test.

When to Use

  • A spec or clear requirements exist
  • Multi-step task that benefits from upfront decomposition
  • About to touch ≥3 files

SKIP when: single-file change, typo fix, one-line config tweak. Just do it.

The Flow

1. Scope Check

If the spec covers multiple independent subsystems, suggest splitting into separate plans. Each plan should produce working, testable software on its own.

2. File Structure First

Before any tasks, name the files that will be created or modified, with a one-line responsibility for each. This locks in decomposition decisions.

Example (adapt the paths to your project's structure):

<backend>/routers/foo.ts          — API router; thin, delegates to service
<backend>/services/foo.ts         — business logic; pure where possible
<backend>/services/foo.test.ts    — vertical-slice tests
<frontend>/pages/foo.tsx          — UI; consumes the API

Apply the deletion test: if a file would just shuffle complexity to its callers, fold it into the caller.

2.5. Parallelization Check (offer coder-overseer if applicable)

After the file structure is sketched, ask: does this plan have 3+ truly independent units that share a common interface contract?

If YES — offer evanflow-coder-overseer to the user as the execution path:

"This plan has [N] independent units sharing [contract]. We could execute it sequentially via evanflow-executing-plans, or in parallel via evanflow-coder-overseer (one coder per unit + per-coder overseer + integration overseer + executable contract via integration tests). Parallel is faster for big plans and adds independent QA, but only works if the units are truly independent. Which?"

Signals that favor coder-overseer:

  • 3+ files/modules that don't import each other
  • A clear shared interface contract (types, naming, invariants)
  • Integration touchpoints that can be expressed as named integration tests
  • Plan would otherwise be tedious to execute serially

Signals that favor sequential executing-plans:

  • Tasks have hidden dependencies (one's output feeds the next)
  • Fewer than 3 units
  • No shared contract surface — units don't need to interoperate
  • Risk-averse work (auth, payments, migrations) where a single careful pass beats parallelism

If the user picks coder-overseer, structure the plan with a per-coder section and the cohesion contract upfront. If sequential, continue to step 3 normally.

3. Embedded Grill

Stress-test the structure before writing tasks:

  • "Where does this go wrong if the user does X?"
  • "What happens if this fails halfway? What's the recovery?"
  • "Is there an existing service in the project that already does part of this?"
  • "Does the file structure follow project conventions documented in CLAUDE.md or visible in similar existing files?"
  • "Are we introducing or changing domain terms? Update CONTEXT.md first?"

4. Bite-Sized Tasks

Each task is one focused unit (~15-30 min of work). Within each task, list bite-sized steps (~2-5 min each):

### Task 1: [Component Name]

**Files:** Create `path/to/foo.ts`, modify `path/to/bar.ts:123-145`, test `path/to/foo.test.ts`

- [ ] Write the failing test (one behavior — see evanflow-tdd)
- [ ] Run test, confirm it fails for the right reason
- [ ] Write minimal implementation
- [ ] Run test, confirm it passes
- [ ] Run the project's quality checks (typecheck / lint / test) — exact commands are project-specific; see CLAUDE.md or the project's README

After all tasks complete, the executor hands off to evanflow-iterate for self-review, then stops and reports. The plan does NOT include staging or committing — the user controls those.

5. Plan Header (lighter than upstream)

# [Feature Name] Plan

**Goal:** [one sentence]
**Architecture:** [2-3 sentences]
**Files:** [list from step 2]

---

No "REQUIRED SUB-SKILL" header. Sub-skills are suggestions documented inline at hand-off points, not mandates baked into the plan format.

6. Save the Plan

Default location: docs/plans/YYYY-MM-DD-<topic>.md. If the user has a different preference, honor it. Don't write to any vendor-specific path unless explicitly asked.

Hard Rules

  • Never include staging or commit steps in the plan. Plans end at "verified, await user direction." The user decides when to stage, commit, push, merge.
  • No forced sub-skill chain. No "must use using-git-worktrees" or "must use subagent-driven-development" header.
  • Plans live where the user wants. Default docs/plans/ only if no preference stated.
  • TDD by default. Every code task is structured as test-first. Exceptions (configs, schemas, prototypes) are flagged inline.

Hand-offs

  • Plan written → evanflow-executing-plans
  • Need to design an API surface first → evanflow-design-interface
  • Architecture concerns surfaced → evanflow-improve-architecture first, then back here

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.21%
按下载量换算24

Claude

29.7%
按下载量换算19

Cursor

19.52%
按下载量换算12

Gemini CLI

9.92%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills