mirror of
https://github.com/github/awesome-copilot.git
synced 2026-02-20 02:15:12 +00:00
Prototyping out some plugins
This commit is contained in:
10
plugins/project-planning/.github/plugin/plugin.json
vendored
Normal file
10
plugins/project-planning/.github/plugin/plugin.json
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"name": "project-planning",
|
||||
"description": "Tools and guidance for software project planning, feature breakdown, epic management, implementation planning, and task organization for development teams.",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Awesome Copilot Community"
|
||||
},
|
||||
"repository": "https://github.com/github/awesome-copilot",
|
||||
"license": "MIT"
|
||||
}
|
||||
73
plugins/project-planning/README.md
Normal file
73
plugins/project-planning/README.md
Normal file
@@ -0,0 +1,73 @@
|
||||
# Project Planning Plugin
|
||||
|
||||
Tools and guidance for software project planning, feature breakdown, epic management, implementation planning, and task organization for development teams.
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
# Using Copilot CLI
|
||||
copilot plugin install github/awesome-copilot/plugins/project-planning
|
||||
```
|
||||
|
||||
## What's Included
|
||||
|
||||
### Commands (Slash Commands)
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `/project-planning:breakdown-feature-implementation` | Create detailed feature implementation plans |
|
||||
| `/project-planning:breakdown-feature-prd` | Break down features into PRD format |
|
||||
| `/project-planning:breakdown-epic-arch` | Architecture breakdown for epics |
|
||||
| `/project-planning:breakdown-epic-pm` | Product management breakdown for epics |
|
||||
| `/project-planning:create-implementation-plan` | Generate implementation plans |
|
||||
| `/project-planning:update-implementation-plan` | Update existing implementation plans |
|
||||
| `/project-planning:create-github-issues-feature-from-implementation-plan` | Create GitHub issues from plans |
|
||||
| `/project-planning:create-technical-spike` | Create technical spike documents |
|
||||
|
||||
### Agents
|
||||
|
||||
| Agent | Description |
|
||||
|-------|-------------|
|
||||
| `task-planner` | Plan and organize development tasks |
|
||||
| `task-researcher` | Research context for task planning |
|
||||
| `planner` | General planning assistance |
|
||||
| `plan` | Quick planning mode |
|
||||
| `prd` | Product Requirements Document creation |
|
||||
| `implementation-plan` | Detailed implementation planning |
|
||||
| `research-technical-spike` | Technical spike research and documentation |
|
||||
|
||||
### Skills
|
||||
|
||||
| Skill | Description |
|
||||
|-------|-------------|
|
||||
| `planning-guidelines` | Guidelines for task tracking and spec-driven workflows |
|
||||
|
||||
## Usage Examples
|
||||
|
||||
### Break down a feature
|
||||
```
|
||||
/project-planning:breakdown-feature-implementation
|
||||
|
||||
I need to implement user authentication with OAuth2
|
||||
```
|
||||
|
||||
### Create an implementation plan
|
||||
```
|
||||
/project-planning:create-implementation-plan
|
||||
|
||||
Feature: Shopping cart checkout flow
|
||||
Requirements: Support credit cards, PayPal, and Apple Pay
|
||||
```
|
||||
|
||||
### Use the planning agent
|
||||
```
|
||||
@task-planner Help me plan the migration from REST to GraphQL
|
||||
```
|
||||
|
||||
## Source
|
||||
|
||||
This plugin is part of [Awesome Copilot](https://github.com/github/awesome-copilot), a community-driven collection of GitHub Copilot extensions.
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
1
plugins/project-planning/agents/implementation-plan.md
Symbolic link
1
plugins/project-planning/agents/implementation-plan.md
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../agents/implementation-plan.agent.md
|
||||
1
plugins/project-planning/agents/plan.md
Symbolic link
1
plugins/project-planning/agents/plan.md
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../agents/plan.agent.md
|
||||
1
plugins/project-planning/agents/planner.md
Symbolic link
1
plugins/project-planning/agents/planner.md
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../agents/planner.agent.md
|
||||
1
plugins/project-planning/agents/prd.md
Symbolic link
1
plugins/project-planning/agents/prd.md
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../agents/prd.agent.md
|
||||
1
plugins/project-planning/agents/research-technical-spike.md
Symbolic link
1
plugins/project-planning/agents/research-technical-spike.md
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../agents/research-technical-spike.agent.md
|
||||
1
plugins/project-planning/agents/task-planner.md
Symbolic link
1
plugins/project-planning/agents/task-planner.md
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../agents/task-planner.agent.md
|
||||
1
plugins/project-planning/agents/task-researcher.md
Symbolic link
1
plugins/project-planning/agents/task-researcher.md
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../agents/task-researcher.agent.md
|
||||
1
plugins/project-planning/commands/breakdown-epic-arch.md
Symbolic link
1
plugins/project-planning/commands/breakdown-epic-arch.md
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../prompts/breakdown-epic-arch.prompt.md
|
||||
1
plugins/project-planning/commands/breakdown-epic-pm.md
Symbolic link
1
plugins/project-planning/commands/breakdown-epic-pm.md
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../prompts/breakdown-epic-pm.prompt.md
|
||||
@@ -0,0 +1 @@
|
||||
../../../prompts/breakdown-feature-implementation.prompt.md
|
||||
1
plugins/project-planning/commands/breakdown-feature-prd.md
Symbolic link
1
plugins/project-planning/commands/breakdown-feature-prd.md
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../prompts/breakdown-feature-prd.prompt.md
|
||||
@@ -0,0 +1 @@
|
||||
../../../prompts/create-github-issues-feature-from-implementation-plan.prompt.md
|
||||
1
plugins/project-planning/commands/create-implementation-plan.md
Symbolic link
1
plugins/project-planning/commands/create-implementation-plan.md
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../prompts/create-implementation-plan.prompt.md
|
||||
1
plugins/project-planning/commands/create-technical-spike.md
Symbolic link
1
plugins/project-planning/commands/create-technical-spike.md
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../prompts/create-technical-spike.prompt.md
|
||||
1
plugins/project-planning/commands/update-implementation-plan.md
Symbolic link
1
plugins/project-planning/commands/update-implementation-plan.md
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../prompts/update-implementation-plan.prompt.md
|
||||
41
plugins/project-planning/skills/planning-guidelines/SKILL.md
Normal file
41
plugins/project-planning/skills/planning-guidelines/SKILL.md
Normal file
@@ -0,0 +1,41 @@
|
||||
---
|
||||
name: planning-guidelines
|
||||
description: 'Project planning guidelines including task implementation tracking and specification-driven workflow practices for software development teams.'
|
||||
---
|
||||
|
||||
# Planning Guidelines
|
||||
|
||||
This skill provides guidelines and best practices for project planning and implementation tracking.
|
||||
|
||||
## Included Guidelines
|
||||
|
||||
### Task Implementation Tracking
|
||||
Guidelines for implementing task plans with progressive tracking and change records.
|
||||
|
||||
See: [Task Implementation Instructions](../../../instructions/task-implementation.instructions.md)
|
||||
|
||||
Key practices:
|
||||
- Read and understand the complete plan before starting
|
||||
- Process tasks in order, one at a time
|
||||
- Track progress in `.copilot-tracking/changes/` files
|
||||
- Mark tasks complete as you go
|
||||
- Follow existing workspace patterns and conventions
|
||||
|
||||
### Specification-Driven Workflow
|
||||
A structured approach ensuring requirements are clearly defined, designs are planned, and implementations are documented.
|
||||
|
||||
See: [Spec-Driven Workflow v1](../../../instructions/spec-driven-workflow-v1.instructions.md)
|
||||
|
||||
Key artifacts to maintain:
|
||||
- **`requirements.md`**: User stories and acceptance criteria in EARS notation
|
||||
- **`design.md`**: Technical architecture and sequence diagrams
|
||||
- **`tasks.md`**: Detailed, trackable implementation plan
|
||||
|
||||
## When to Use
|
||||
|
||||
Activate these guidelines when:
|
||||
- Starting a new feature implementation
|
||||
- Breaking down epics into tasks
|
||||
- Creating implementation plans
|
||||
- Tracking progress on complex work
|
||||
- Ensuring documentation stays in sync with code
|
||||
Reference in New Issue
Block a user