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

writing-plans写作计划

Agent Skill

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

总安装

451

周安装

19

GitHub Stars

8

下载量

158
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/vamseeachanta/workspace-hub --skill writing-plans

简介

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写,适合提炼结构、补齐章节、统一术语或检查链接。

  • 使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论。
  • 涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。
  • 安装命令:npx skills add https://github.com/vamseeachanta/workspace-hub --skill writing-plans
  • 适用于 Codex、Claude、Cursor、Gemini CLI 等宿主环境。

SKILL.md

Writing Plans Skill

Overview

This skill guides creating detailed implementation plans for multi-step development tasks. Plans are designed for engineers with limited codebase familiarity, with granular steps (2-5 minutes each) and complete code snippets.

Quick Start

  1. Announce - "I'm using the writing-plans skill to create the implementation plan."
  2. Write header - Feature name, goal, architecture, tech stack
  3. Create tasks - Break into 2-5 minute actionable steps
  4. Include code - Complete snippets, not abstractions
  5. Offer execution - Subagent-driven or parallel session

When to Use

  • Multi-step feature implementations
  • Complex bug fixes requiring multiple changes
  • Refactoring across multiple files
  • Any task requiring more than 30 minutes
  • When context needs to be preserved across sessions

Core Principles

DRY. YAGNI. TDD. Frequent Commits.

  • DRY - Don't Repeat Yourself: identify common patterns
  • YAGNI - You Aren't Gonna Need It: only what's needed now
  • TDD - Test-Driven Development: tests before code
  • Frequent Commits - Checkpoint progress regularly

Assumptions

  • Developer is skilled but unfamiliar with specific toolset
  • Breaking work into granular steps prevents confusion
  • Complete code snippets are better than abstractions
  • Commands should include expected outputs

Plan Structure

Header Format

# Implementation Plan: [Feature Name]

## Goal
[One sentence describing the outcome]

## Architecture
[Brief description of how this fits into the system]

## Tech Stack
- Language: [language]
- Framework: [framework]
- Testing: [test framework]
- Dependencies: [key dependencies]

## Tasks

Task Format

Each task specifies:

  1. Exact file paths (create/modify/test)
  2. Five sequential steps:

- Write failing test - Verify test failure - Implement minimal code - Verify test passes - Commit changes

Task Template

### Task 1: [Descriptive Name]

**Files:**
- Create: `path/to/new/file.ts`
- Modify: `path/to/existing/file.ts`
- Test: `path/to/test/file.test.ts`

**Step 1: Write failing test**
\`\`\`typescript
// path/to/test/file.test.ts
describe('FeatureName', () => {
  it('should do expected behavior', () => {
    // Complete test code
  });
});
\`\`\`

**Step 2: Verify test failure**
\`\`\`bash
npm test -- --grep "should do expected behavior"
# Expected: FAIL - Cannot find module 'path/to/file'
\`\`\`

**Step 3: Implement minimal code**
\`\`\`typescript
// path/to/file.ts
// Complete implementation code
\`\`\`

**Step 4: Verify test passes**
\`\`\`bash
npm test -- --grep "should do expected behavior"
# Expected: PASS
\`\`\`

**Step 5: Commit**
\`\`\`bash
git add .
git commit -m "feat: add expected behavior for FeatureName"
\`\`\`

Task Granularity

Target: 2-5 Minutes Per Task

Too BigJust RightToo Small
"Implement authentication""Add password validation function""Add semicolon"
"Build API endpoints""Create POST /users endpoint""Import express"
"Write tests""Test user creation happy path""Add describe block"

Splitting Large Tasks

If a task takes longer than 5 minutes:

  1. Identify sub-components
  2. Create separate tasks for each
  3. Add dependencies between tasks
  4. Keep tests focused on one behavior

Code Snippet Requirements

Do Include

  • Complete, copy-pasteable code
  • All imports and dependencies
  • Type definitions (if TypeScript)
  • Error handling
  • Comments for non-obvious logic

Don't Include

  • Placeholder comments (// TODO: implement)
  • Abstract descriptions ("add the necessary code")
  • Partial implementations
  • Untested code

Execution Handoff

After completing the plan, offer two approaches:

Option 1: Subagent-Driven

Fresh subagent per task in current session.

  • Best for: Independent tasks, staying in context
  • Uses: subagent-driven skill

Option 2: Parallel Session

Separate session using executing-plans skill.

  • Best for: Tightly coupled tasks, long plans
  • Uses: executing-plans skill in new terminal

Plan Review Checklist

Before presenting plan:

  • Header complete (goal, architecture, tech stack)
  • Tasks are 2-5 minutes each
  • File paths are exact
  • Code snippets are complete
  • Test commands include expected output
  • Commits are atomic and descriptive
  • Dependencies between tasks are clear

Best Practices

Do

  1. Start with the goal, not the tasks
  2. Order tasks by dependency
  3. Include rollback strategies for risky changes
  4. Reference existing patterns in codebase
  5. Use consistent naming conventions
  6. Group related tasks logically

Don't

  1. Write vague task descriptions
  2. Skip the test-first steps
  3. Combine unrelated changes
  4. Assume prior knowledge
  5. Leave out error scenarios
  6. Make tasks too big or too small

Error Handling

SituationAction
Unclear requirementsReturn to brainstorming skill
Task too complexSplit into smaller tasks
Dependency discoveredAdd prerequisite task
Plan exceeds scopeDocument out-of-scope items

Metrics

MetricTargetDescription
Task completion rate>95%Tasks completable as written
Average task time2-5 minGranular but meaningful
Rework rate<10%Tasks needing revision
Test coverage100%Every task has tests

Related Skills


Version History

  • 1.0.0 (2026-01-19): Initial release adapted from obra/superpowers

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

28.05%
按下载量换算44

windsurf

22.26%
按下载量换算35

trae

18.87%
按下载量换算30

OpenCode

13.17%
按下载量换算21

Cursor

8.92%
按下载量换算14

Codex

3.23%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills