Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

medium-plan中期计划

Agent Skill

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

总安装

318

周安装

13

GitHub Stars

公开资料未说明

下载量

102
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/vitadynamics/vita-cc-market --skill medium-plan

简介

medium-plan 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景定位候选结果。

  • 适用于需要快速获取信息或线索的场景,如计划制定或资源规划。
  • 通过关键词、来源仓库或任务描述触发检索,返回结构化候选列表。
  • 安装前需确认权限范围,注意是否会触发联网或文件操作,建议检查维护状态。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Plan Skill

Purpose: Transform feature descriptions, bug reports, or improvement ideas into well-structured markdown files that follow project conventions and best practices.

Feature Description

<feature_description> ${ARGUMENTS} </feature_description>

If the feature description above is empty, ask the user: "What would you like to plan? Please describe the feature, bug fix, or improvement you have in mind."

Do not proceed until you have a clear feature description from the user.

Main Tasks

1. Repository Research & Context Gathering

Run these three agents in parallel at the same time. For each agent: read the referenced file to get the system prompt (use the body after the YAML frontmatter ---), then launch a general-purpose Task agent with that system prompt.

Agent 1 — Repository Research:

  • System prompt file: plugins/Vengineer/agents/research/repo-research-analyst.md
  • User prompt: "Research repository conventions and patterns for: {feature_description}"

Agent 2 — Best Practices Research:

  • System prompt file: plugins/Vengineer/agents/research/best-practice-research.md
  • User prompt: "Research industry best practices relevant to: {feature_description}"

Agent 3 — Framework Documentation:

  • System prompt file: plugins/Vengineer/agents/research/framework-docs-researcher.md
  • User prompt: "Research framework and library documentation relevant to: {feature_description}"

Reference Collection:

  • Document all research findings with specific file paths (e.g., app/services/example_service.rb:42)
  • Include URLs to external documentation and best practices guides
  • Create a reference list of similar issues or PRs (e.g., #123, #456)
  • Note any team conventions discovered in CLAUDE.md or team documentation

2. Issue Planning & Structure

Title & Categorization:

  • Draft clear, searchable issue title using conventional format (e.g., feat:, fix:, docs:)
  • Determine issue type: enhancement, bug, refactor

Stakeholder Analysis:

  • Identify who will be affected by this issue (end users, developers, operations)
  • Consider implementation complexity and required expertise

Content Planning:

  • Choose appropriate detail level based on issue complexity and audience
  • List all necessary sections for the chosen template
  • Gather supporting materials (error logs, screenshots, design mockups)
  • Prepare code examples or reproduction steps if applicable, name the mock filenames in the lists

3. SpecFlow Analysis

After planning the issue structure, run SpecFlow Analyzer to validate and refine the feature specification:

Launch a general-purpose Task agent (prefer a fast/small model like Claude Haiku if available) with:

  • System prompt file: plugins/Vengineer/agents/core/spec-flow-analyzer.md (body after the YAML frontmatter)
  • User prompt: "{feature_description}. Research findings: {research_findings}"

SpecFlow Analyzer Output:

  • Review SpecFlow analysis results
  • Incorporate any identified gaps or edge cases into the issue
  • Update acceptance criteria based on SpecFlow findings

4. Design Visualization (Strongly Recommended)

Every plan SHOULD include at least one Mermaid diagram showing the design flow. This helps visualize:

  • Input → Processing → Output flow
  • Module interactions and boundaries
  • Data relationships

Choose the most appropriate diagram type:

Sequence Diagram (for interactions/flows)

sequenceDiagram
    participant User
    participant Frontend
    participant API
    participant Database

    User->>Frontend: Action
    Frontend->>API: Request
    API->>Database: Query
    Database-->>API: Result
    API-->>Frontend: Response
    Frontend-->>User: Display

Flowchart (for processing logic)

flowchart TD
    A[Input] --> B{Validate}
    B -->|Valid| C[Process]
    B -->|Invalid| D[Error]
    C --> E[Transform]
    E --> F[Output]

Entity Relationship (for data models)

erDiagram
    USER ||--o{ ORDER : places
    ORDER ||--|{ LINE_ITEM : contains
    PRODUCT ||--o{ LINE_ITEM : "ordered in"

Diagram Checklist:

  • Shows input → processing → output flow
  • Identifies key modules/components involved
  • Highlights integration points or boundaries
  • Uses clear, descriptive labels

When to use which:

Diagram TypeUse When
SequenceAPI calls, user flows, service interactions
FlowchartDecision logic, data processing, state machines
ERDNew models, database changes, entity relationships
ClassObject relationships, inheritance, interfaces

5. Parallelization Strategy

Every plan MUST include an Execution Strategy section identifying which implementation phases can run concurrently.

Required elements:

  1. Mermaid graph LR dependency diagram — nodes = phases, directed edges = "must complete before"; green fill (style X fill:#d4edda) = can start immediately with no prerequisites
  2. Phase table:
PhaseNameDepends OnCan Parallelize WithEffort
AExample PhaseBM
BAnother PhaseAS
CThird PhaseA, BL
  1. Inline task tags within each phase's task list:

- [PARALLEL:group-id] — tasks with the same group-id can run simultaneously - [SERIAL:after-group-id] — task depends on all tasks in that group completing

Example:

graph LR
  A[Phase 1: Schema] --> C[Phase 3: API]
  B[Phase 2: Auth]   --> C
  C --> D[Phase 4: Frontend]
  C --> E[Phase 5: Jobs]
  D --> F[Phase 6: Tests]
  E --> F
  style A fill:#d4edda
  style B fill:#d4edda

6. Choose Implementation Detail Level

Select how comprehensive you want the issue to be, simpler is mostly better.

📄 MINIMAL (Quick Issue)

Best for: Simple bugs, small improvements, clear features

Includes:

  • Problem statement or feature description
  • Basic acceptance criteria
  • Essential context only

Structure:

[Brief problem/feature description]

## Acceptance Criteria

- [ ] Core requirement 1
- [ ] Core requirement 2

## Context

[Any critical information]

## MVP

### test.rb

class Test def initialize @name = "test" end end


## References

- Related issue: #[issue_number]
- Documentation: [relevant_docs_url]

📋 MORE (Standard Issue)

Best for: Most features, complex bugs, team collaboration

Includes everything from MINIMAL plus:

  • Detailed background and motivation
  • Technical considerations
  • Success metrics
  • Dependencies and risks
  • Basic implementation suggestions

Structure:

## Overview

[Comprehensive description]

## Background & Motivation

[Why this is needed]

## Technical Considerations

[Architecture, performance, security implications]

## Success Metrics

[How to measure success]

## Dependencies & Risks

[What could go wrong]

## Implementation Suggestions

[High-level approach]

## References

[Links to related work]

📚 A LOT (Comprehensive Specification)

Best for: Major features, architectural changes, critical bug fixes

Includes everything from MORE plus:

  • Detailed implementation steps
  • API design specifications
  • Testing strategy
  • Migration plan
  • Rollout strategy
  • Monitoring requirements

Structure:

## Executive Summary

[High-level overview]

## Detailed Requirements

[Complete specification]

## API Design

[Endpoints, schemas, examples]

## Implementation Steps

[Phase-by-phase breakdown]

## Testing Strategy

[Unit, integration, E2E tests]

## Migration Plan

[Data migration, backward compatibility]

## Rollout Strategy

[Phased rollout, feature flags]

## Monitoring & Observability

[Metrics, alerts, dashboards]

## References

[All relevant documentation]

6. AI-Era Considerations

  • Account for accelerated development with AI pair programming
  • Include prompts or instructions that worked well during research
  • Note which AI tools were used for initial exploration (Claude, Copilot, etc.)
  • Emphasize comprehensive testing given rapid implementation
  • Document any AI-generated code that needs human review

7. Final Review & Submission

Pre-submission Checklist:

  • Title is searchable and descriptive
  • Labels accurately categorize the issue
  • All template sections are complete
  • Links and references are working
  • Acceptance criteria are measurable
  • Add names of files in pseudo code examples and todo lists
  • Strongly Recommended: At least one Mermaid diagram showing design flow (sequence, flowchart, or ERD)
  • If no diagram included, add a note explaining why (e.g., "trivial change, no visualization needed")

Ambiguity Check before Plan Finalization

After the initial plan is generated, but before engaging in general refinement, evaluate the situation against this ambiguity matrix:

SituationAction
Single valid interpretationProceed
Multiple interpretations, similar effortProceed with reasonable default, note assumption
Multiple interpretations, 2x+ effort differenceMUST ask
Missing critical info (file, error, context)MUST ask
User's design seems flawed or suboptimalMUST raise concern before implementing

If the action requires you to MUST ask or MUST raise concern, use the AskUserQuestion tool immediately to resolve these specific issues before proceeding to the standard refinement phase.

Output Format

Write the plan to docs/plans/<feature-name>.md

Add YAML frontmatter at the top of the plan file:

---
stage: plan
created: YYYY-MM-DD
feature: <feature-name>
source-spec: <path to input spec file if input was from docs/specs/, else omit>
status: draft
---

If the input was from docs/specs/, also update the spec file's frontmatter to add:

next-plan: docs/plans/<feature-name>.md

Use the Edit tool to append this field inside the existing --- block without corrupting other fields.

Refine Plan

After the first Plan is generated, engage in multiple rounds of interaction with the user to Refine the Plan.

NOTE THAT YOU SHOULD USE THE TOOL AskUserQuestion TO INTERACT WITH THE USER OR ANY OTHER TOOLS THAT CAN INVOLVE THE USER IN THE PROCESS.

Interaction Guidelines:

  • When weighing the pros and cons, ask the user explicit questions or solicit their input.
  • Note: You can ask the user questions or clarify at any time during this workflow. Do not make too many assumptions about the user's intentions.
  • Iterate on the plan content in plans/<issue_title>.md based on feedback.

Only proceed to Post-Generation Options once the user is satisfied with the refined plan.

Post-Generation Options

After writing the plan file, use the AskUserQuestion tool to present these options:

Question: "Plan ready at docs/plans/<feature-name>.md. What would you like to do next?"

Options:

  1. Open plan in editor - Open the plan file for review
  2. Run /core:clarify - Ask targeted questions to reduce ambiguity in the plan
  3. Run /core:deepen-plan - Enhance each section with parallel research agents (best practices, performance, UI)
  4. Run /core:plan_review - Get feedback from specialized reviewers
  5. Generate ADR - Capture architectural decisions from this plan as permanent records (adr)
  6. Start /core:work - Begin implementing this plan
  7. Simplify - Reduce detail level

Based on selection:

  • Open plan in editor → Run open docs/plans/<feature-name>.md to open the file in the user's default editor
  • /core:clarify → Call the command with the plan file path to ask targeted clarification questions
  • /core:deepen-plan → Call the command with the plan file path to enhance with research
  • /core:plan_review → Call the command with the plan file path. Spawn reviewers based on project conventions
  • Generate ADR → Run the adr skill with docs/plans/<feature-name>.md as input
  • /core:work → Call the command with the plan file path
  • Simplify → Ask "What should I simplify?" then regenerate simpler version
  • Other (automatically provided) → Accept free text for rework or specific changes

Note: If running /core:plan with ultrathink enabled, automatically run /core:deepen-plan after plan creation for maximum depth and grounding.

Loop back to options after Simplify or Other changes until user selects /core:work or /core:plan_review.

NEVER CODE! Just research and write the plan.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.64%
按下载量换算39

Claude

31.62%
按下载量换算32

Cursor

18.96%
按下载量换算19

Gemini CLI

8.58%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills