Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

gsdl-create-plangsdl 创建计划

Agent Skill

gsdl-create-plan 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

808

周安装

33

GitHub Stars

3

下载量

259
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/nsantini/gsdl --skill gsdl-create-plan

简介

gsdl-create-plan 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理时使用。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Generate Task List from PRD

Generates a detailed, step-by-step task list in Markdown format based on an existing Product Requirements Document (PRD). The task list guides a developer through implementation with parent tasks and detailed sub-tasks.

Prerequisites

Before generating a task list:

  1. Project exists: The project should have its own folder at .planning/[project-name]/
  2. PRD exists: Ensure the PRD file exists at .planning/[project-name]/prd-[feature-name].md

Output

The task list will be saved as:

  • Format: Markdown (.md)
  • Location: .planning/[project-name]/
  • Filename: tasks-[prd-file-name].md (e.g., tasks-prd-user-profile-editing.md)
  • Full Path Example: .planning/my-cool-project/tasks-prd-user-authentication.md

Two-Phase Process

This skill follows a two-phase workflow to ensure alignment before diving into details.

Phase 1: Generate Parent Tasks

  1. Receive PRD Reference: The user points to a specific PRD file
  2. Read PRD from disk: Read the PRD file directly from disk at its path — do not rely on any in-context version. The user may have edited the file since it was generated.
  3. Analyze PRD: Analyze the functional requirements, user stories, and other sections from the file just read
  4. Create Parent Tasks: Generate 5-7 high-level tasks required to implement the feature
  5. Present to User: Show the parent tasks in the specified format (without sub-tasks yet)
  6. Pause for Confirmation: Inform the user: "I have generated the high-level tasks based on the PRD. Review the tasks above — feel free to edit the PRD or suggest changes before we continue. Respond with 'Go' to generate the sub-tasks."

Phase 2: Generate Sub-Tasks

  1. Wait for "Go": Only proceed after the user confirms with "Go"
  2. Re-read PRD from disk: Before generating sub-tasks, read the PRD file from disk again to pick up any edits the user may have made since Phase 1
  3. Break Down Tasks: For each parent task, create smaller, actionable sub-tasks based on the current PRD content
  4. Identify Files: List potential files that will need to be created or modified
  5. Generate Final Output: Combine everything into the complete task list structure
  6. Save Task List: Save to the project's tasks directory

Task List Structure

The generated task list must follow this exact format:

## Relevant Files

- `src/path/to/potential/file1.ts` - Brief description of why this file is relevant (e.g., Contains the main component for this feature).
- `src/path/to/file1.test.ts` - Unit tests for `file1.ts`.
- `src/path/to/another/file.tsx` - Brief description (e.g., API route handler for data submission).
- `src/path/to/another/file.test.tsx` - Unit tests for `another/file.tsx`.
- `lib/utils/helpers.ts` - Brief description (e.g., Utility functions needed for calculations).
- `lib/utils/helpers.test.ts` - Unit tests for `helpers.ts`.

### Notes

- Implementation file paths are relative to the workspace root (e.g., `src/components/MyComponent.tsx`). Planning files (PRDs, task lists) live under `.planning/[project-name]/`.
- Unit tests should typically be placed alongside the code files they are testing (e.g., `MyComponent.tsx` and `MyComponent.test.tsx` in the same directory).
- Use `npx jest [optional/path/to/test/file]` to run tests. Running without a path executes all tests found by the Jest configuration.

## Tasks

- [ ] 1.0 Parent Task Title
  - [ ] 1.1 [Sub-task description 1.1]
  - [ ] 1.2 [Sub-task description 1.2]
- [ ] 2.0 Parent Task Title
  - [ ] 2.1 [Sub-task description 2.1]
- [ ] 3.0 Parent Task Title (may not require sub-tasks if purely structural or configuration)

Task Breakdown Guidelines

Parent Tasks

  • Create 5-7 high-level tasks that represent major implementation phases
  • Use numbered format: 1.0, 2.0, 3.0, etc.
  • Each parent task should represent a significant milestone
  • Examples: "Set up project structure", "Implement core functionality", "Add validation and error handling"

Sub-Tasks

  • Break each parent task into specific, actionable items
  • Use nested numbering: 1.1, 1.2, 1.3 under parent 1.0
  • Each sub-task should be concrete and implementable
  • Sub-tasks should logically follow from the parent task
  • Not all parent tasks require sub-tasks (e.g., simple configuration tasks)

Relevant Files

  • List every file that will be created or modified
  • Include both implementation files and test files
  • Use full paths relative to workspace root
  • Provide a brief description for each file explaining its purpose
  • Group related files together (implementation + tests)

Target Audience

The task list is designed for a junior developer who will implement the feature. Tasks should be:

  • Clear and specific
  • Implementable without extensive guidance
  • Ordered logically to build up the feature step by step

Interaction Model

IMPORTANT: This skill requires user confirmation between phases:

  1. Generate parent tasks → Show to user → Wait for "Go"
  2. User responds with "Go" → Generate sub-tasks and complete the file

Do not proceed to Phase 2 until the user explicitly confirms the parent tasks are correct.

Examples

Phase 1 Output (Parent Tasks Only)

## Tasks

- [ ] 1.0 Set up authentication module structure
- [ ] 2.0 Implement user login functionality
- [ ] 3.0 Implement user registration
- [ ] 4.0 Add session management
- [ ] 5.0 Create authentication UI components
- [ ] 6.0 Add error handling and validation
- [ ] 7.0 Write tests and documentation

Phase 2 Output (Complete with Sub-Tasks)

## Relevant Files

- `src/auth/login.ts` - Login endpoint handler
- `src/auth/login.test.ts` - Tests for login functionality
[... more files ...]

## Tasks

- [ ] 1.0 Set up authentication module structure
  - [ ] 1.1 Create auth directory structure
  - [ ] 1.2 Set up authentication configuration
  - [ ] 1.3 Install required dependencies
- [ ] 2.0 Implement user login functionality
  - [ ] 2.1 Create login endpoint
  - [ ] 2.2 Implement credential validation
  - [ ] 2.3 Generate and return JWT token
[... more tasks ...]

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.63%
按下载量换算90

Claude

30.08%
按下载量换算78

Cursor

19.49%
按下载量换算50

Gemini CLI

9.01%
按下载量换算23

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills