Implement wiki-based Request for Comments system for capturing, reviewing, and tracking feature ideas through their lifecycle. New commands: - /rfc-create: Create RFC from conversation or clarified spec - /rfc-list: List RFCs grouped by status - /rfc-review: Submit Draft RFC for review - /rfc-approve: Approve RFC for sprint planning - /rfc-reject: Reject RFC with documented reason RFC lifecycle: Draft → Review → Approved → Implementing → Implemented Integration: - /sprint-plan detects approved RFCs and offers selection - /sprint-close updates RFC status on completion - clarity-assist suggests /rfc-create for feature ideas New MCP tool: allocate_rfc_number Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2.6 KiB
2.6 KiB
Sprint Management (projman)
This project uses the projman plugin for sprint planning and project management with Gitea integration.
Available Commands
| Command | Description |
|---|---|
/sprint-plan |
Start sprint planning with AI-guided architecture analysis |
/sprint-start |
Begin sprint execution with relevant lessons learned |
/sprint-status |
Check current sprint progress and identify blockers |
/sprint-close |
Complete sprint and capture lessons learned to Gitea Wiki |
/labels-sync |
Synchronize label taxonomy from Gitea |
/initial-setup |
Run initial setup for projman plugin |
/rfc-create |
Create new RFC from conversation or clarified spec |
/rfc-list |
List all RFCs grouped by status |
/rfc-review |
Submit Draft RFC for review |
/rfc-approve |
Approve RFC for sprint planning |
/rfc-reject |
Reject RFC with documented reason |
MCP Tools Available
The following Gitea MCP tools are available for issue and project management:
Issue Management:
list_issues- Query issues with filters (state, labels)get_issue- Fetch single issue detailscreate_issue- Create new issue with labelsupdate_issue- Modify existing issueadd_comment- Add comments to issues
Labels:
get_labels- Fetch org + repo label taxonomysuggest_labels- Analyze context and suggest appropriate labelscreate_label- Create missing required labels
Milestones:
list_milestones- List sprint milestonesget_milestone- Get milestone detailscreate_milestone- Create sprint milestoneupdate_milestone- Update/close milestone
Dependencies:
list_issue_dependencies- Get issue dependenciescreate_issue_dependency- Create dependency between issuesget_execution_order- Get parallel execution batches
Wiki (Lessons Learned & RFCs):
list_wiki_pages- List wiki pagesget_wiki_page- Fetch specific page contentcreate_wiki_page- Create new wiki pageupdate_wiki_page- Update existing wiki pagecreate_lesson- Create lessons learned documentsearch_lessons- Search past lessons by tagsallocate_rfc_number- Get next available RFC number
Usage Guidelines
- Always use
/sprint-planwhen starting new development work - Check
/sprint-statusregularly during active sprints - Run
/sprint-closeat the end of each sprint to capture lessons learned - Use
suggest_labelswhen creating issues to ensure proper categorization - Search lessons learned with
search_lessonsbefore implementing features to avoid repeated mistakes