sprint-planning placeholder for future integration with jira linear and trello

This commit is contained in:
Brian Madison
2025-10-21 18:13:34 -05:00
parent 419043e704
commit 1b1947d240
5 changed files with 114 additions and 7 deletions

View File

@@ -56,12 +56,12 @@ development_status:
**Story file detection:**
- Check: `{story_dir}/{story-key}.md` (e.g., `stories/1-1-user-authentication.md`)
- Check: `{story_location}/{story-key}.md` (e.g., `stories/1-1-user-authentication.md`)
- If exists → upgrade status to at least `drafted`
**Story context detection:**
- Check: `{story_dir}/{story-key}-context.md` (e.g., `stories/1-1-user-authentication-context.md`)
- Check: `{story_location}/{story-key}-context.md` (e.g., `stories/1-1-user-authentication-context.md`)
- If exists → upgrade status to at least `ready-for-dev`
**Preservation rule:**
@@ -84,9 +84,21 @@ development_status:
```yaml
# Sprint Status - Generated {date}
# Project: {project_name}
# Status Definitions:
# Project Key: {project_key}
# Language: {document_output_language}
#
# TRACKING SYSTEM:
# ================
# System: {tracking_system}
# Story Location: {story_location}
#
# STATUS DEFINITIONS:
# ==================
# Epic Status:
# Epic: backlog → contexted
# Story Status:
# Story: backlog → drafted → ready-for-dev → in-progress → review → done
# Retrospective Status:
# Retrospective: optional → completed
```

View File

@@ -4,8 +4,14 @@
#
# Generated: {date}
# Project: {project_name}
# Project Key: {project_key}
# Language: {document_output_language}
#
# TRACKING SYSTEM:
# ================
# System: {tracking_system}
# Story Location: {story_location}
#
# STATUS DEFINITIONS:
# ==================
# Epic Status:

View File

@@ -20,17 +20,19 @@ validation: "{installed_path}/checklist.md"
variables:
# Project identification
project_name: "{config_source}:project_name"
project_key: "{config_source}:project_name" # Future: Jira project key, Linear workspace ID, etc.
# Source files
# Tracking system configuration
tracking_system: "file-system" # Options: file-system, Future will support other options from config of mcp such as jira, linear, trello
story_location: "{config_source}:dev_story_location" # File path for file-system, Future will support URL for Jira/Linear/Trello
# Source files (file-system only)
epics_location: "{output_folder}" # Directory containing epic*.md files
epics_pattern: "epic*.md" # Pattern to find epic files
# Output configuration
status_file: "{output_folder}/sprint-status.yaml"
# Story locations
story_dir: "{config_source}:dev_story_location" # Where story files are created
# Output configuration
default_output_file: "{status_file}"