# Repo Tickets
**Enterprise-grade, VCS-agnostic ticket management system optimized for agentic development workflows.**
[](https://pypi.org/project/repo-tickets/)
[](https://www.python.org/downloads/)
[](https://opensource.org/licenses/MIT)
[](ARCHITECTURE.md#performance-benchmarks)
[](ARCHITECTURE.md#scalability)
[](AGENT_GUIDE.md)
Repo-tickets is a file-based ticket management system that stores tickets as YAML files in your repository, providing:
- **๐ High Performance**: 10-500x speedups through intelligent caching, indexing, and batch operations
- **๐ค AI Agent Native**: Built-in agent coordination, ML-based task assignment, and workflow orchestration
- **๐ Event-Driven**: Real-time automation with pub/sub event bus (20+ event types)
- **๐ Workflow Engine**: Multi-step orchestration with dependency management and automatic progression
- **๐ Observability**: Comprehensive metrics, structured logging, and performance monitoring
- **โ
 Enterprise Features**: Schema validation, atomic transactions, health checks, and rollback support
## ๐ Project Status
<!-- AUTO-GENERATED STATUS - DO NOT EDIT MANUALLY -->
**Last Updated:** 2025-10-02 13:04:34
**Ticket Overview:**
- ๐ซ Total: 4
- ๐ Open: 2
- โก In Progress: 1
- โ
 Closed: 1
**Priority Items:**
- ๐ก High Priority: 1
**Recent Progress:**
- โ
 IMPLEMEN-1: Implement user authentication (2025-10-02)
**๐ค AI Agents:** 2/2 active, 2 active tasks
<!-- END AUTO-GENERATED STATUS -->
A CLI ticket system that works with git, mercurial, and Jujutsu repositories without external services.
## Features
- **VCS Agnostic**: Works with git, mercurial (hg), and Jujutsu (jj) repositories
- **Self-contained**: No external services required - tickets stored in your repository
- **Distributed**: Tickets travel with your code through branches and merges
- **CLI-first**: Designed for developers who live in the terminal
- **๐ค AI Agent System**: Automated task assignment and coordination with multiple AI agents
- **Professional HTML Reports**: Interactive dashboards with charts and analytics
- **Advanced Analytics**: Risk assessment, velocity metrics, and team insights
- **Project Management**: Journal entries, time tracking, and performance metrics
- **Time Tracking**: Start/stop timers, manual time entry, and detailed logging
- **Performance Metrics**: Effort estimation, story points, and completion tracking
- **๐ Requirements Management**: Comprehensive requirement tracking, user stories, and acceptance criteria
- **๐งช BDD Testing**: Gherkin scenario support with Given-When-Then format
- **๐ฏ Epic Management**: Large-scale feature planning with epic-level tracking and relationships
- **๐ Product Backlog**: Advanced backlog management with prioritization scoring and sprint planning
- **๐ Sprint Planning**: Backlog grooming, readiness detection, and backlog-to-ticket conversion
- **Flexible**: Support for custom labels, statuses, and workflows
## Installation
### From PyPI (Recommended)
```bash
pip install repo-tickets
```
### From Source
```bash
git clone https://github.com/thinmanj/repo-tickets.git
cd repo-tickets
pip install -e .
```
### Requirements
- Python 3.8 or higher
- git, mercurial, or Jujutsu (for VCS integration)
## Quick Start
```bash
# Initialize tickets in your repository
tickets init
# Create a new ticket
tickets create "Fix login bug" --description "Users can't login with special characters"
# List all tickets
tickets list
# Show a specific ticket
tickets show TICKET-1
# Update ticket status
tickets update TICKET-1 --status in-progress
# Add labels
tickets update TICKET-1 --labels bug,urgent
# Search tickets
tickets search "login"
# Close a ticket
tickets close TICKET-1
# Check project status
tickets status
tickets status --format detailed
tickets status --update-readme --generate-report
# Generate professional HTML report
tickets report
# Add PM journal entry with metrics
tickets journal TICKET-1 "Completed feature implementation" --type progress --completion 80 --spent 4.5
# Track time on a ticket
tickets time TICKET-1 --start --description "Working on bug fix"
tickets time TICKET-1 --stop
# Create AI agents for automated task handling
tickets agent create "CodeBot" --type developer --max-tasks 3 --model "gpt-4"
tickets agent create "TestBot" --type tester --max-tasks 5 --model "claude-3-opus"
# List available agents
tickets agent list
# Assign task to specific agent
tickets agent assign TICKET-1 AGENT-CODEBOT code "Implement login fix" --priority high
# Auto-assign task to best available agent
tickets agent auto-assign TICKET-2 test "Write unit tests" --priority medium
# View agent tasks and performance
tickets agent tasks
tickets agent show AGENT-CODEBOT
# Epic and backlog management
tickets epic create "User Management System" --description "Complete user auth and profiles" --priority high --target-version "v1.0"
tickets backlog add "User Registration" --type feature --priority high --story-points 8 --business-value 90 --epic-id USER-1
tickets epic add-ticket USER-1 AUTH-1
tickets epic show USER-1
# Requirements management
tickets requirements add TICKET-1 --title "User Authentication" --priority high
tickets requirements story TICKET-1 --persona "user" --goal "log in securely" --benefit "access my account" --points 5
tickets requirements result TICKET-1 --description "Login page loads < 2s" --method automated
tickets requirements gherkin TICKET-1 --title "Valid login" --given "I am on login page" --when "I enter valid credentials" --then "I should be logged in"
tickets requirements list TICKET-1
```
## How it works
Repo-tickets stores tickets as YAML files in a `.tickets/` directory in your repository root. This approach:
- Keeps tickets versioned alongside your code
- Allows tickets to be shared through normal VCS operations (push/pull/merge)
- Works offline and doesn't depend on external services
- Integrates naturally with your existing development workflow
## ๐ค Agent Integration
repo-tickets is designed from the ground up to work seamlessly with AI agents. The system provides comprehensive APIs, documentation, and automation capabilities specifically for autonomous agent interaction.
### Agent-Friendly Features:
- **JSON-First CLI**: All commands support `--format json` for easy parsing
- **Predictable Data Structure**: Consistent file layouts and naming conventions
- **Complete API Coverage**: Programmatic access to all features through CLI and direct file access
- **Automation Scripts**: Pre-built workflows for common agent tasks
- **Error Handling**: Robust error responses with detailed context
- **Bulk Operations**: Efficient batch processing capabilities
- **State Monitoring**: Built-in health checks and system monitoring
### Quick Agent Setup:
```bash
# Agents can check system availability
tickets --help && tickets list --format json
# Create tickets programmatically
tickets create --title "Agent Task" --priority high --assignee "ai-agent" --format json
# Monitor system health
tickets list --status todo --format json | jq length
# Bulk operations
tickets list --assignee "ai-agent" --format json | jq -r '.[].id' | xargs -I {} tickets update {} --status "in-progress"
```
### Agent Resources:
- **[AGENT_GUIDE.md](AGENT_GUIDE.md)** - Comprehensive guide for AI agent integration
- **[AGENT_API.md](AGENT_API.md)** - Technical API reference and data structures
- **[examples/](examples/)** - Ready-to-use automation scripts and workflows
  - `agent_workflow.sh` - Complete autonomous workflow example
  - `bulk_operations.py` - Python automation library
  - `monitoring.sh` - Continuous system monitoring
### Agent Workflow Example:
```bash
# Autonomous epic creation and management
epic_id=$(tickets epic create --name "AI Feature" --format json | jq -r '.id')
tickets create --title "Implement AI" --epic-id "$epic_id" --assignee "agent" --format json
tickets backlog add --title "AI Testing" --priority-score 90 --format json
```
Agents can fully manage the entire project lifecycle from epic planning through ticket completion, with complete audit trails and collaboration capabilities.
---
## ๐ Documentation
### Core Documentation
- **[USAGE_GUIDE.md](USAGE_GUIDE.md)** - Complete usage guide with examples and best practices
  - Quick start and basic operations
  - Advanced features (batch operations, event-driven automation)
  - Performance optimization techniques
  - Monitoring and observability
  - Best practices for agentic development
- **[ARCHITECTURE.md](ARCHITECTURE.md)** - System architecture and design
  - High-level architecture diagrams
  - Module structure and responsibilities
  - Performance architecture (caching, indexing, batching)
  - Event system and workflow engine design
  - Agent learning algorithm details
  - Design patterns and benchmarks
- **[WORKFLOWS.md](WORKFLOWS.md)** - Workflow patterns and real-world examples
  - Feature development workflow
  - Bug fix workflow
  - Multi-agent coordination patterns
  - Event-driven automation examples
  - Custom workflow creation
  - Complete real-world case studies
### Agent Integration
- **[AGENT_GUIDE.md](AGENT_GUIDE.md)** - Comprehensive AI agent integration guide
- **[AGENT_API.md](AGENT_API.md)** - Technical API reference for agents
- **[examples/](examples/)** - Working code examples and automation scripts
### Feature Documentation
- **[REQUIREMENTS.md](REQUIREMENTS.md)** - Requirements management system
- **[EPICS.md](EPICS.md)** - Epic and backlog management
- **[REPORTING.md](REPORTING.md)** - Analytics and HTML report generation
- **[TUI_GUIDE.md](TUI_GUIDE.md)** - Text-based user interface
### Development
- **[WARP.md](WARP.md)** - Development guide for contributors
- **[OPTIMIZATION_OPPORTUNITIES.md](OPTIMIZATION_OPPORTUNITIES.md)** - Performance optimization analysis
- **[IMPLEMENTATION_PLAN.md](IMPLEMENTATION_PLAN.md)** - Feature roadmap and implementation plan
- **[PROGRESS.md](PROGRESS.md)** - Implementation progress tracking
---
## โก Performance
Repo-tickets is optimized for high performance with large ticket volumes:
### Benchmarks (10,000 tickets)
| Operation | Without Optimization | With Optimization | Speedup |
|-----------|---------------------|-------------------|----------|
| Load ticket (cached) | 10ms | 0.02ms | **500x** |
| Search (indexed) | 800ms | 4ms | **200x** |
| List summaries | 1200ms | 80ms | **15x** |
| Batch create (100) | 45s | 3s | **15x** |
| Batch update (50) | 22s | 1.5s | **14x** |
| Parallel tasks | 18s | 1.2s | **15x** |
### Key Performance Features
- **๐พ LRU Cache with TTL**: 100-500x faster repeated operations
- **๐ Fast Index Search**: 40-200x faster search without loading files
- **๐ฆ Batch Operations**: Atomic transactions with 10-15x speedup
- **โก Async Agent Ops**: Parallel task execution with ThreadPool
- **๐ Event Bus**: Instant reactivity without polling
See [ARCHITECTURE.md](ARCHITECTURE.md#performance-benchmarks) for detailed performance analysis.
---
## Commands
### Core Ticket Management
- `tickets init` - Initialize ticket system in current repository
- `tickets create TITLE` - Create a new ticket
- `tickets list` - List all tickets
- `tickets show ID` - Show ticket details
- `tickets update ID` - Update ticket properties
- `tickets close ID` - Close a ticket
- `tickets search QUERY` - Search tickets
### Epic Management ๐ฏ
- `tickets epic create TITLE` - Create a new epic with goals and success criteria
- `tickets epic list` - List all epics with status and progress
- `tickets epic show EPIC_ID` - Show detailed epic information and associated tickets
- `tickets epic update EPIC_ID` - Update epic properties, dates, and priorities
- `tickets epic add-ticket EPIC_ID TICKET_ID` - Add ticket to epic (bidirectional)
- `tickets epic remove-ticket EPIC_ID TICKET_ID` - Remove ticket from epic
### Product Backlog Management ๐
- `tickets backlog add TITLE` - Add item to backlog with business value and effort estimates
- `tickets backlog list` - List backlog items prioritized by scoring algorithm
- `tickets backlog show ITEM_ID` - Show detailed backlog item with acceptance criteria
- `tickets backlog update ITEM_ID` - Update backlog item properties and sprint assignment
- `tickets backlog convert ITEM_ID` - Convert backlog item to full ticket with requirements
### Requirements Management ๐
- `tickets requirements add TICKET_ID` - Add formal requirement with acceptance criteria
- `tickets requirements story TICKET_ID` - Add user story with persona, goal, and benefit
- `tickets requirements result TICKET_ID` - Add expected result with verification method
- `tickets requirements gherkin TICKET_ID` - Add Gherkin BDD scenario
- `tickets requirements list TICKET_ID` - View all requirements for a ticket
- `tickets requirements verify TICKET_ID RESULT_ID` - Mark expected result as verified
### AI Agent Management ๐ค
- `tickets agent create NAME` - Create a new AI agent
- `tickets agent list` - List all agents with status and metrics
- `tickets agent show ID` - Show detailed agent information
- `tickets agent assign TICKET_ID AGENT_ID TYPE DESC` - Assign task to specific agent
- `tickets agent auto-assign TICKET_ID TYPE DESC` - Auto-assign to best available agent
- `tickets agent tasks` - List all agent tasks
### Analytics & Reporting
- `tickets report` - Generate HTML report with analytics
- `tickets status` - Show project status summary with recent progress
- `tickets journal ID CONTENT` - Add PM journal entry with metrics
- `tickets time ID` - Track time spent on tickets
### Configuration
- `tickets config` - Manage configuration
## Configuration
The system supports per-repository and global configuration through `.tickets/config.yaml`:
```yaml
default_status: open
statuses:
  - open
  - in-progress  
  - closed
labels:
  - bug
  - feature
  - urgent
  - nice-to-have
```
## AI Agent System ๐ค
Repo-tickets includes a sophisticated AI agent system for automated task management and coordination. Create specialized AI agents to handle different types of work, assign tasks automatically, and track performance.
### Agent Types
- **developer** - Specialized in coding, implementation, and technical tasks
- **reviewer** - Focused on code review and quality assurance  
- **tester** - Handles testing, QA, and validation tasks
- **analyst** - Performs analysis, research, and documentation
- **documenter** - Creates and maintains documentation
- **project_manager** - Coordinates tasks and manages project workflows
- **general** - Can handle any type of task
### Creating Agents
```bash
# Create a developer agent with GPT-4
tickets agent create "CodeBot" \
  --description "AI developer specialized in Python and JavaScript" \
  --type developer \
  --max-tasks 3 \
  --model "gpt-4"
# Create a testing agent with Claude
tickets agent create "TestBot" \
  --description "AI testing agent for QA and automated testing" \
  --type tester \
  --max-tasks 5 \
  --model "claude-3-opus"
```
### Task Assignment
#### Manual Assignment
```bash
# Assign specific task to specific agent
tickets agent assign TICKET-1 AGENT-CODEBOT code \
  "Implement JWT authentication" \
  --priority high \
  --instructions "Create middleware, login endpoints, and API protection"
```
#### Automatic Assignment
```bash
# Let the system choose the best agent for the task
tickets agent auto-assign TICKET-2 test \
  "Write unit tests for authentication" \
  --priority medium
```
The auto-assignment system uses intelligent scoring to match:
- Agent type with task type
- Agent availability (current task load)
- Agent performance history
- Task priority and complexity
### Agent Management
```bash
# List all agents with status and metrics
tickets agent list
# View detailed agent information
tickets agent show AGENT-CODEBOT
# List all agent tasks across agents
tickets agent tasks
# Filter tasks by agent, ticket, or status
tickets agent tasks --agent AGENT-CODEBOT --status in-progress
```
### Agent Performance Tracking
Each agent automatically tracks:
- **Tasks completed/failed** - Success rate metrics
- **Execution time** - Average time per task type
- **Response time** - How quickly agents start tasks
- **Last activity** - Agent health monitoring
- **Task type breakdown** - Performance by task category
### Output Formats
Agent information supports multiple output formats:
```bash
# Table format (default)
tickets agent list
# JSON format for integration
tickets agent list --format json
# Simple format for scripts
tickets agent list --format simple
```
### Agent Integration
- **Ticket Assignment** - Agents can be assigned to tickets
- **Task Tracking** - Each ticket can have multiple agent tasks
- **Workflow Integration** - Agent tasks appear in reports and analytics
- **VCS Integration** - Agent data stored alongside tickets in `.tickets/agents/`
## Requirements Management ๐
Repo-tickets provides comprehensive requirements management capabilities that integrate seamlessly with ticket tracking. Define formal requirements, write user stories, specify expected results, and create Gherkin acceptance tests.
### Requirements Types
#### Formal Requirements
Structured requirements with priorities, statuses, and acceptance criteria:
```bash
# Add a requirement
tickets requirements add TICKET-1 \
  --title "Password Security" \
  --description "Implement secure password validation" \
  --priority critical \
  --criteria "Minimum 8 characters" \
  --criteria "Must contain uppercase, lowercase, and numbers"
```
#### User Stories  
Agile user stories following the "As a..., I want..., so that..." format:
```bash
# Add a user story
tickets requirements story TICKET-1 \
  --persona "developer" \
  --goal "track time on tickets" \
  --benefit "I can provide accurate estimates" \
  --priority high \
  --points 8 \
  --criteria "Timer can be started and stopped" \
  --criteria "Time is recorded accurately"
```
#### Expected Results
Verifiable outcomes with success criteria:
```bash
# Add expected result
tickets requirements result TICKET-1 \
  --description "Login API responds within 500ms" \
  --method automated \
  --criteria "95% of requests complete under 500ms" \
  --criteria "Error rate below 0.1%"
```
#### Gherkin Scenarios
BDD-style acceptance tests using Given-When-Then format:
```bash
# Add Gherkin scenario
tickets requirements gherkin TICKET-1 \
  --title "Successful user login" \
  --given "I am on the login page" \
  --given "I have valid credentials" \
  --when "I enter username and password" \
  --when "I click the login button" \
  --then "I should be redirected to dashboard" \
  --tags authentication --tags smoke
# Or load from file
tickets requirements gherkin TICKET-1 --file login_scenarios.feature
```
### Requirements Analytics
The system automatically calculates comprehensive metrics:
- **Requirements Coverage**: % of requirements implemented/verified
- **Test Pass Rate**: % of Gherkin scenarios passing  
- **Acceptance Rate**: % of tickets meeting acceptance criteria
- **Story Point Velocity**: Completed points over time
- **Verification Methods**: Distribution of testing approaches
These metrics appear in:
- HTML reports with visual dashboards
- Status command output
- README status sections
- JSON exports for automation
### Workflow Integration
Requirements integrate with the entire ticket lifecycle:
```bash
# View requirements summary
tickets requirements list TICKET-1
# View detailed breakdown
tickets requirements list TICKET-1 --format detailed
# View only Gherkin scenarios
tickets requirements list TICKET-1 --format gherkin
# Mark results as verified
tickets requirements verify TICKET-1 RESULT-123 --notes "Performance testing complete"
```
### Status Tracking
**Requirements**: draft โ approved โ implemented โ verified
**Scenarios**: draft โ ready โ passing/failing โ blocked
**Expected Results**: pending โ verified/failed โ blocked
### Best Practices
1. **Start with User Stories** - Define value before implementation
2. **Write Testable Requirements** - Use measurable acceptance criteria
3. **Use Consistent Tagging** - Organize scenarios by feature, risk, type
4. **Keep Scenarios Focused** - One behavior per scenario
5. **Verify Early and Often** - Update status as work progresses
See [REQUIREMENTS.md](REQUIREMENTS.md) for comprehensive documentation and examples.
## Epic and Backlog Management ๐ฏ๐
Repo-tickets provides enterprise-grade epic planning and product backlog management, enabling professional Agile/Scrum workflows with complete traceability from business goals to development tasks.
### Epic Management
Epics represent large bodies of work that span multiple sprints and tickets. They provide high-level tracking for major features, initiatives, or business goals.
**Epic Lifecycle:** Draft โ Active โ Completed / Cancelled
```bash
# Create a comprehensive epic
tickets epic create "E-commerce Platform" \
  --description "Complete online shopping experience" \
  --priority critical \
  --owner "Product Team" \
  --target-version "v2.0" \
  --target-date "2024-12-31" \
  --estimated-points 200
# Manage epic relationships
tickets epic add-ticket ECOM-1 CART-1
tickets epic add-ticket ECOM-1 PAYMENT-1
tickets epic add-ticket ECOM-1 CHECKOUT-1
# Track epic progress
tickets epic show ECOM-1
tickets epic list --status active
```
**Epic Features:**
- Target versions and completion dates with overdue detection
- Goals and measurable success criteria
- Story point estimation and progress tracking
- Bidirectional ticket relationships
- Owner assignment and team coordination
### Product Backlog Management
The backlog system enables professional product management with prioritization scoring, sprint planning, and requirement tracking.
**Backlog Lifecycle:** New โ Groomed โ Ready โ In Progress โ Done / Cancelled
```bash
# Add items with comprehensive metadata
tickets backlog add "User Registration" \
  --type feature \
  --priority high \
  --story-points 8 \
  --business-value 90 \
  --effort-estimate 16 \
  --risk-level medium \
  --epic-id USER-1 \
  --component "Authentication" \
  --theme "User Onboarding"
# Prioritized listing (automatic scoring)
tickets backlog list
# Sprint planning filters
tickets backlog list --status ready
tickets backlog list --epic USER-1
tickets backlog list --sprint SPRINT-1
```
### Advanced Prioritization
Backlog items are automatically prioritized using a sophisticated scoring algorithm:
**Priority Score = (Base Priority ร 100) + Business Value - (Story Points ร 2)**
This balances:
- **Strategic Priority** (critical=4, high=3, medium=2, low=1)
- **Business Value** (1-100 scale of user/business impact)
- **Development Effort** (story points using Fibonacci scale)
Items are automatically sorted by priority score for optimal sprint planning.
### Sprint Planning Features
```bash
# Check sprint readiness
# Items are ready when they have:
# - Status: groomed or ready
# - Story points assigned
# - Acceptance criteria defined
tickets backlog list --status ready
# Convert ready items to development tickets
tickets backlog convert LOGIN-1 \
  --reporter "Product Manager" \
  --reporter-email "pm@company.com"
# This automatically:
# - Creates a full ticket with all metadata
# - Converts acceptance criteria to requirements
# - Links to the original backlog item
# - Updates backlog item status to "in-progress"
```
### Professional Workflows
**Epic Planning Workflow:**
1. Create epic with business goals and success criteria
2. Add backlog items and associate with epic
3. Prioritize and groom backlog items
4. Convert ready items to tickets for development
5. Track progress through epic dashboard
**Team Coordination:**
- **Product Owner**: Manages backlog priorities and business value
- **Scrum Master**: Reviews sprint readiness and team metrics
- **Developers**: Convert backlog items and implement features
- **Team**: Tracks epic progress and release planning
### Integration with Requirements
Epics and backlog items seamlessly integrate with the requirements system:
- **Backlog Items** can have acceptance criteria and definition of done
- **Epic Goals** become high-level success criteria  
- **Converted Tickets** automatically inherit requirements from backlog items
- **Traceability** from epic โ backlog item โ ticket โ requirements
### Analytics and Reporting
Comprehensive metrics for professional project management:
- **Epic Progress**: Story points completed, tickets closed, timeline tracking
- **Backlog Health**: Items ready for sprint, prioritization distribution
- **Sprint Metrics**: Velocity, burndown, completion rates
- **Team Performance**: Individual and team story point delivery
All metrics appear in HTML reports, status commands, and project dashboards.
See [EPICS.md](EPICS.md) for comprehensive documentation, CLI reference, and best practices.
            
         
        Raw data
        
            {
    "_id": null,
    "home_page": "https://github.com/thinmanj/repo-tickets",
    "name": "repo-tickets",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "tickets, issue-tracker, project-management, git, mercurial, jujutsu, vcs, cli, workflow, agents, ai, automation, devops, agile, epic, backlog, requirements, bdd, gherkin",
    "author": "Julio Ona",
    "author_email": "Julio Ona <thinmanj@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/d5/2a/1d9c0a0487772ef4fc54761f9b2f15b65b08fc83d3b413b84397019c004d/repo_tickets-1.0.2.tar.gz",
    "platform": null,
    "description": "# Repo Tickets\n\n**Enterprise-grade, VCS-agnostic ticket management system optimized for agentic development workflows.**\n\n[](https://pypi.org/project/repo-tickets/)\n[](https://www.python.org/downloads/)\n[](https://opensource.org/licenses/MIT)\n[](ARCHITECTURE.md#performance-benchmarks)\n[](ARCHITECTURE.md#scalability)\n[](AGENT_GUIDE.md)\n\nRepo-tickets is a file-based ticket management system that stores tickets as YAML files in your repository, providing:\n\n- **\ud83d\ude80 High Performance**: 10-500x speedups through intelligent caching, indexing, and batch operations\n- **\ud83e\udd16 AI Agent Native**: Built-in agent coordination, ML-based task assignment, and workflow orchestration\n- **\ud83d\udcca Event-Driven**: Real-time automation with pub/sub event bus (20+ event types)\n- **\ud83d\udd04 Workflow Engine**: Multi-step orchestration with dependency management and automatic progression\n- **\ud83d\udcc8 Observability**: Comprehensive metrics, structured logging, and performance monitoring\n- **\u2705 Enterprise Features**: Schema validation, atomic transactions, health checks, and rollback support\n\n## \ud83d\udcca Project Status\n\n<!-- AUTO-GENERATED STATUS - DO NOT EDIT MANUALLY -->\n**Last Updated:** 2025-10-02 13:04:34\n\n**Ticket Overview:**\n- \ud83c\udfab Total: 4\n- \ud83d\udcc2 Open: 2\n- \u26a1 In Progress: 1\n- \u2705 Closed: 1\n\n**Priority Items:**\n- \ud83d\udfe1 High Priority: 1\n\n**Recent Progress:**\n- \u2705 IMPLEMEN-1: Implement user authentication (2025-10-02)\n\n**\ud83e\udd16 AI Agents:** 2/2 active, 2 active tasks\n\n<!-- END AUTO-GENERATED STATUS -->\n\n\nA CLI ticket system that works with git, mercurial, and Jujutsu repositories without external services.\n\n## Features\n\n- **VCS Agnostic**: Works with git, mercurial (hg), and Jujutsu (jj) repositories\n- **Self-contained**: No external services required - tickets stored in your repository\n- **Distributed**: Tickets travel with your code through branches and merges\n- **CLI-first**: Designed for developers who live in the terminal\n- **\ud83e\udd16 AI Agent System**: Automated task assignment and coordination with multiple AI agents\n- **Professional HTML Reports**: Interactive dashboards with charts and analytics\n- **Advanced Analytics**: Risk assessment, velocity metrics, and team insights\n- **Project Management**: Journal entries, time tracking, and performance metrics\n- **Time Tracking**: Start/stop timers, manual time entry, and detailed logging\n- **Performance Metrics**: Effort estimation, story points, and completion tracking\n- **\ud83d\udccb Requirements Management**: Comprehensive requirement tracking, user stories, and acceptance criteria\n- **\ud83e\uddea BDD Testing**: Gherkin scenario support with Given-When-Then format\n- **\ud83c\udfaf Epic Management**: Large-scale feature planning with epic-level tracking and relationships\n- **\ud83d\udccb Product Backlog**: Advanced backlog management with prioritization scoring and sprint planning\n- **\ud83d\ude80 Sprint Planning**: Backlog grooming, readiness detection, and backlog-to-ticket conversion\n- **Flexible**: Support for custom labels, statuses, and workflows\n\n## Installation\n\n### From PyPI (Recommended)\n\n```bash\npip install repo-tickets\n```\n\n### From Source\n\n```bash\ngit clone https://github.com/thinmanj/repo-tickets.git\ncd repo-tickets\npip install -e .\n```\n\n### Requirements\n\n- Python 3.8 or higher\n- git, mercurial, or Jujutsu (for VCS integration)\n\n## Quick Start\n\n```bash\n# Initialize tickets in your repository\ntickets init\n\n# Create a new ticket\ntickets create \"Fix login bug\" --description \"Users can't login with special characters\"\n\n# List all tickets\ntickets list\n\n# Show a specific ticket\ntickets show TICKET-1\n\n# Update ticket status\ntickets update TICKET-1 --status in-progress\n\n# Add labels\ntickets update TICKET-1 --labels bug,urgent\n\n# Search tickets\ntickets search \"login\"\n\n# Close a ticket\ntickets close TICKET-1\n\n# Check project status\ntickets status\ntickets status --format detailed\ntickets status --update-readme --generate-report\n\n# Generate professional HTML report\ntickets report\n\n# Add PM journal entry with metrics\ntickets journal TICKET-1 \"Completed feature implementation\" --type progress --completion 80 --spent 4.5\n\n# Track time on a ticket\ntickets time TICKET-1 --start --description \"Working on bug fix\"\ntickets time TICKET-1 --stop\n\n# Create AI agents for automated task handling\ntickets agent create \"CodeBot\" --type developer --max-tasks 3 --model \"gpt-4\"\ntickets agent create \"TestBot\" --type tester --max-tasks 5 --model \"claude-3-opus\"\n\n# List available agents\ntickets agent list\n\n# Assign task to specific agent\ntickets agent assign TICKET-1 AGENT-CODEBOT code \"Implement login fix\" --priority high\n\n# Auto-assign task to best available agent\ntickets agent auto-assign TICKET-2 test \"Write unit tests\" --priority medium\n\n# View agent tasks and performance\ntickets agent tasks\ntickets agent show AGENT-CODEBOT\n\n# Epic and backlog management\ntickets epic create \"User Management System\" --description \"Complete user auth and profiles\" --priority high --target-version \"v1.0\"\ntickets backlog add \"User Registration\" --type feature --priority high --story-points 8 --business-value 90 --epic-id USER-1\ntickets epic add-ticket USER-1 AUTH-1\ntickets epic show USER-1\n\n# Requirements management\ntickets requirements add TICKET-1 --title \"User Authentication\" --priority high\ntickets requirements story TICKET-1 --persona \"user\" --goal \"log in securely\" --benefit \"access my account\" --points 5\ntickets requirements result TICKET-1 --description \"Login page loads < 2s\" --method automated\ntickets requirements gherkin TICKET-1 --title \"Valid login\" --given \"I am on login page\" --when \"I enter valid credentials\" --then \"I should be logged in\"\ntickets requirements list TICKET-1\n```\n\n## How it works\n\nRepo-tickets stores tickets as YAML files in a `.tickets/` directory in your repository root. This approach:\n\n- Keeps tickets versioned alongside your code\n- Allows tickets to be shared through normal VCS operations (push/pull/merge)\n- Works offline and doesn't depend on external services\n- Integrates naturally with your existing development workflow\n\n## \ud83e\udd16 Agent Integration\n\nrepo-tickets is designed from the ground up to work seamlessly with AI agents. The system provides comprehensive APIs, documentation, and automation capabilities specifically for autonomous agent interaction.\n\n### Agent-Friendly Features:\n- **JSON-First CLI**: All commands support `--format json` for easy parsing\n- **Predictable Data Structure**: Consistent file layouts and naming conventions\n- **Complete API Coverage**: Programmatic access to all features through CLI and direct file access\n- **Automation Scripts**: Pre-built workflows for common agent tasks\n- **Error Handling**: Robust error responses with detailed context\n- **Bulk Operations**: Efficient batch processing capabilities\n- **State Monitoring**: Built-in health checks and system monitoring\n\n### Quick Agent Setup:\n```bash\n# Agents can check system availability\ntickets --help && tickets list --format json\n\n# Create tickets programmatically\ntickets create --title \"Agent Task\" --priority high --assignee \"ai-agent\" --format json\n\n# Monitor system health\ntickets list --status todo --format json | jq length\n\n# Bulk operations\ntickets list --assignee \"ai-agent\" --format json | jq -r '.[].id' | xargs -I {} tickets update {} --status \"in-progress\"\n```\n\n### Agent Resources:\n- **[AGENT_GUIDE.md](AGENT_GUIDE.md)** - Comprehensive guide for AI agent integration\n- **[AGENT_API.md](AGENT_API.md)** - Technical API reference and data structures\n- **[examples/](examples/)** - Ready-to-use automation scripts and workflows\n  - `agent_workflow.sh` - Complete autonomous workflow example\n  - `bulk_operations.py` - Python automation library\n  - `monitoring.sh` - Continuous system monitoring\n\n### Agent Workflow Example:\n```bash\n# Autonomous epic creation and management\nepic_id=$(tickets epic create --name \"AI Feature\" --format json | jq -r '.id')\ntickets create --title \"Implement AI\" --epic-id \"$epic_id\" --assignee \"agent\" --format json\ntickets backlog add --title \"AI Testing\" --priority-score 90 --format json\n```\n\nAgents can fully manage the entire project lifecycle from epic planning through ticket completion, with complete audit trails and collaboration capabilities.\n\n---\n\n## \ud83d\udcda Documentation\n\n### Core Documentation\n\n- **[USAGE_GUIDE.md](USAGE_GUIDE.md)** - Complete usage guide with examples and best practices\n  - Quick start and basic operations\n  - Advanced features (batch operations, event-driven automation)\n  - Performance optimization techniques\n  - Monitoring and observability\n  - Best practices for agentic development\n\n- **[ARCHITECTURE.md](ARCHITECTURE.md)** - System architecture and design\n  - High-level architecture diagrams\n  - Module structure and responsibilities\n  - Performance architecture (caching, indexing, batching)\n  - Event system and workflow engine design\n  - Agent learning algorithm details\n  - Design patterns and benchmarks\n\n- **[WORKFLOWS.md](WORKFLOWS.md)** - Workflow patterns and real-world examples\n  - Feature development workflow\n  - Bug fix workflow\n  - Multi-agent coordination patterns\n  - Event-driven automation examples\n  - Custom workflow creation\n  - Complete real-world case studies\n\n### Agent Integration\n\n- **[AGENT_GUIDE.md](AGENT_GUIDE.md)** - Comprehensive AI agent integration guide\n- **[AGENT_API.md](AGENT_API.md)** - Technical API reference for agents\n- **[examples/](examples/)** - Working code examples and automation scripts\n\n### Feature Documentation\n\n- **[REQUIREMENTS.md](REQUIREMENTS.md)** - Requirements management system\n- **[EPICS.md](EPICS.md)** - Epic and backlog management\n- **[REPORTING.md](REPORTING.md)** - Analytics and HTML report generation\n- **[TUI_GUIDE.md](TUI_GUIDE.md)** - Text-based user interface\n\n### Development\n\n- **[WARP.md](WARP.md)** - Development guide for contributors\n- **[OPTIMIZATION_OPPORTUNITIES.md](OPTIMIZATION_OPPORTUNITIES.md)** - Performance optimization analysis\n- **[IMPLEMENTATION_PLAN.md](IMPLEMENTATION_PLAN.md)** - Feature roadmap and implementation plan\n- **[PROGRESS.md](PROGRESS.md)** - Implementation progress tracking\n\n---\n\n## \u26a1 Performance\n\nRepo-tickets is optimized for high performance with large ticket volumes:\n\n### Benchmarks (10,000 tickets)\n\n| Operation | Without Optimization | With Optimization | Speedup |\n|-----------|---------------------|-------------------|----------|\n| Load ticket (cached) | 10ms | 0.02ms | **500x** |\n| Search (indexed) | 800ms | 4ms | **200x** |\n| List summaries | 1200ms | 80ms | **15x** |\n| Batch create (100) | 45s | 3s | **15x** |\n| Batch update (50) | 22s | 1.5s | **14x** |\n| Parallel tasks | 18s | 1.2s | **15x** |\n\n### Key Performance Features\n\n- **\ud83d\udcbe LRU Cache with TTL**: 100-500x faster repeated operations\n- **\ud83d\udd0d Fast Index Search**: 40-200x faster search without loading files\n- **\ud83d\udce6 Batch Operations**: Atomic transactions with 10-15x speedup\n- **\u26a1 Async Agent Ops**: Parallel task execution with ThreadPool\n- **\ud83d\udcca Event Bus**: Instant reactivity without polling\n\nSee [ARCHITECTURE.md](ARCHITECTURE.md#performance-benchmarks) for detailed performance analysis.\n\n---\n\n## Commands\n\n### Core Ticket Management\n- `tickets init` - Initialize ticket system in current repository\n- `tickets create TITLE` - Create a new ticket\n- `tickets list` - List all tickets\n- `tickets show ID` - Show ticket details\n- `tickets update ID` - Update ticket properties\n- `tickets close ID` - Close a ticket\n- `tickets search QUERY` - Search tickets\n\n### Epic Management \ud83c\udfaf\n- `tickets epic create TITLE` - Create a new epic with goals and success criteria\n- `tickets epic list` - List all epics with status and progress\n- `tickets epic show EPIC_ID` - Show detailed epic information and associated tickets\n- `tickets epic update EPIC_ID` - Update epic properties, dates, and priorities\n- `tickets epic add-ticket EPIC_ID TICKET_ID` - Add ticket to epic (bidirectional)\n- `tickets epic remove-ticket EPIC_ID TICKET_ID` - Remove ticket from epic\n\n### Product Backlog Management \ud83d\udccb\n- `tickets backlog add TITLE` - Add item to backlog with business value and effort estimates\n- `tickets backlog list` - List backlog items prioritized by scoring algorithm\n- `tickets backlog show ITEM_ID` - Show detailed backlog item with acceptance criteria\n- `tickets backlog update ITEM_ID` - Update backlog item properties and sprint assignment\n- `tickets backlog convert ITEM_ID` - Convert backlog item to full ticket with requirements\n\n### Requirements Management \ud83d\udccb\n- `tickets requirements add TICKET_ID` - Add formal requirement with acceptance criteria\n- `tickets requirements story TICKET_ID` - Add user story with persona, goal, and benefit\n- `tickets requirements result TICKET_ID` - Add expected result with verification method\n- `tickets requirements gherkin TICKET_ID` - Add Gherkin BDD scenario\n- `tickets requirements list TICKET_ID` - View all requirements for a ticket\n- `tickets requirements verify TICKET_ID RESULT_ID` - Mark expected result as verified\n\n### AI Agent Management \ud83e\udd16\n- `tickets agent create NAME` - Create a new AI agent\n- `tickets agent list` - List all agents with status and metrics\n- `tickets agent show ID` - Show detailed agent information\n- `tickets agent assign TICKET_ID AGENT_ID TYPE DESC` - Assign task to specific agent\n- `tickets agent auto-assign TICKET_ID TYPE DESC` - Auto-assign to best available agent\n- `tickets agent tasks` - List all agent tasks\n\n### Analytics & Reporting\n- `tickets report` - Generate HTML report with analytics\n- `tickets status` - Show project status summary with recent progress\n- `tickets journal ID CONTENT` - Add PM journal entry with metrics\n- `tickets time ID` - Track time spent on tickets\n\n### Configuration\n- `tickets config` - Manage configuration\n\n## Configuration\n\nThe system supports per-repository and global configuration through `.tickets/config.yaml`:\n\n```yaml\ndefault_status: open\nstatuses:\n  - open\n  - in-progress  \n  - closed\nlabels:\n  - bug\n  - feature\n  - urgent\n  - nice-to-have\n```\n\n## AI Agent System \ud83e\udd16\n\nRepo-tickets includes a sophisticated AI agent system for automated task management and coordination. Create specialized AI agents to handle different types of work, assign tasks automatically, and track performance.\n\n### Agent Types\n\n- **developer** - Specialized in coding, implementation, and technical tasks\n- **reviewer** - Focused on code review and quality assurance  \n- **tester** - Handles testing, QA, and validation tasks\n- **analyst** - Performs analysis, research, and documentation\n- **documenter** - Creates and maintains documentation\n- **project_manager** - Coordinates tasks and manages project workflows\n- **general** - Can handle any type of task\n\n### Creating Agents\n\n```bash\n# Create a developer agent with GPT-4\ntickets agent create \"CodeBot\" \\\n  --description \"AI developer specialized in Python and JavaScript\" \\\n  --type developer \\\n  --max-tasks 3 \\\n  --model \"gpt-4\"\n\n# Create a testing agent with Claude\ntickets agent create \"TestBot\" \\\n  --description \"AI testing agent for QA and automated testing\" \\\n  --type tester \\\n  --max-tasks 5 \\\n  --model \"claude-3-opus\"\n```\n\n### Task Assignment\n\n#### Manual Assignment\n```bash\n# Assign specific task to specific agent\ntickets agent assign TICKET-1 AGENT-CODEBOT code \\\n  \"Implement JWT authentication\" \\\n  --priority high \\\n  --instructions \"Create middleware, login endpoints, and API protection\"\n```\n\n#### Automatic Assignment\n```bash\n# Let the system choose the best agent for the task\ntickets agent auto-assign TICKET-2 test \\\n  \"Write unit tests for authentication\" \\\n  --priority medium\n```\n\nThe auto-assignment system uses intelligent scoring to match:\n- Agent type with task type\n- Agent availability (current task load)\n- Agent performance history\n- Task priority and complexity\n\n### Agent Management\n\n```bash\n# List all agents with status and metrics\ntickets agent list\n\n# View detailed agent information\ntickets agent show AGENT-CODEBOT\n\n# List all agent tasks across agents\ntickets agent tasks\n\n# Filter tasks by agent, ticket, or status\ntickets agent tasks --agent AGENT-CODEBOT --status in-progress\n```\n\n### Agent Performance Tracking\n\nEach agent automatically tracks:\n- **Tasks completed/failed** - Success rate metrics\n- **Execution time** - Average time per task type\n- **Response time** - How quickly agents start tasks\n- **Last activity** - Agent health monitoring\n- **Task type breakdown** - Performance by task category\n\n### Output Formats\n\nAgent information supports multiple output formats:\n\n```bash\n# Table format (default)\ntickets agent list\n\n# JSON format for integration\ntickets agent list --format json\n\n# Simple format for scripts\ntickets agent list --format simple\n```\n\n### Agent Integration\n\n- **Ticket Assignment** - Agents can be assigned to tickets\n- **Task Tracking** - Each ticket can have multiple agent tasks\n- **Workflow Integration** - Agent tasks appear in reports and analytics\n- **VCS Integration** - Agent data stored alongside tickets in `.tickets/agents/`\n\n## Requirements Management \ud83d\udccb\n\nRepo-tickets provides comprehensive requirements management capabilities that integrate seamlessly with ticket tracking. Define formal requirements, write user stories, specify expected results, and create Gherkin acceptance tests.\n\n### Requirements Types\n\n#### Formal Requirements\nStructured requirements with priorities, statuses, and acceptance criteria:\n\n```bash\n# Add a requirement\ntickets requirements add TICKET-1 \\\n  --title \"Password Security\" \\\n  --description \"Implement secure password validation\" \\\n  --priority critical \\\n  --criteria \"Minimum 8 characters\" \\\n  --criteria \"Must contain uppercase, lowercase, and numbers\"\n```\n\n#### User Stories  \nAgile user stories following the \"As a..., I want..., so that...\" format:\n\n```bash\n# Add a user story\ntickets requirements story TICKET-1 \\\n  --persona \"developer\" \\\n  --goal \"track time on tickets\" \\\n  --benefit \"I can provide accurate estimates\" \\\n  --priority high \\\n  --points 8 \\\n  --criteria \"Timer can be started and stopped\" \\\n  --criteria \"Time is recorded accurately\"\n```\n\n#### Expected Results\nVerifiable outcomes with success criteria:\n\n```bash\n# Add expected result\ntickets requirements result TICKET-1 \\\n  --description \"Login API responds within 500ms\" \\\n  --method automated \\\n  --criteria \"95% of requests complete under 500ms\" \\\n  --criteria \"Error rate below 0.1%\"\n```\n\n#### Gherkin Scenarios\nBDD-style acceptance tests using Given-When-Then format:\n\n```bash\n# Add Gherkin scenario\ntickets requirements gherkin TICKET-1 \\\n  --title \"Successful user login\" \\\n  --given \"I am on the login page\" \\\n  --given \"I have valid credentials\" \\\n  --when \"I enter username and password\" \\\n  --when \"I click the login button\" \\\n  --then \"I should be redirected to dashboard\" \\\n  --tags authentication --tags smoke\n\n# Or load from file\ntickets requirements gherkin TICKET-1 --file login_scenarios.feature\n```\n\n### Requirements Analytics\n\nThe system automatically calculates comprehensive metrics:\n\n- **Requirements Coverage**: % of requirements implemented/verified\n- **Test Pass Rate**: % of Gherkin scenarios passing  \n- **Acceptance Rate**: % of tickets meeting acceptance criteria\n- **Story Point Velocity**: Completed points over time\n- **Verification Methods**: Distribution of testing approaches\n\nThese metrics appear in:\n- HTML reports with visual dashboards\n- Status command output\n- README status sections\n- JSON exports for automation\n\n### Workflow Integration\n\nRequirements integrate with the entire ticket lifecycle:\n\n```bash\n# View requirements summary\ntickets requirements list TICKET-1\n\n# View detailed breakdown\ntickets requirements list TICKET-1 --format detailed\n\n# View only Gherkin scenarios\ntickets requirements list TICKET-1 --format gherkin\n\n# Mark results as verified\ntickets requirements verify TICKET-1 RESULT-123 --notes \"Performance testing complete\"\n```\n\n### Status Tracking\n\n**Requirements**: draft \u2192 approved \u2192 implemented \u2192 verified\n**Scenarios**: draft \u2192 ready \u2192 passing/failing \u2192 blocked\n**Expected Results**: pending \u2192 verified/failed \u2192 blocked\n\n### Best Practices\n\n1. **Start with User Stories** - Define value before implementation\n2. **Write Testable Requirements** - Use measurable acceptance criteria\n3. **Use Consistent Tagging** - Organize scenarios by feature, risk, type\n4. **Keep Scenarios Focused** - One behavior per scenario\n5. **Verify Early and Often** - Update status as work progresses\n\nSee [REQUIREMENTS.md](REQUIREMENTS.md) for comprehensive documentation and examples.\n\n## Epic and Backlog Management \ud83c\udfaf\ud83d\udccb\n\nRepo-tickets provides enterprise-grade epic planning and product backlog management, enabling professional Agile/Scrum workflows with complete traceability from business goals to development tasks.\n\n### Epic Management\n\nEpics represent large bodies of work that span multiple sprints and tickets. They provide high-level tracking for major features, initiatives, or business goals.\n\n**Epic Lifecycle:** Draft \u2192 Active \u2192 Completed / Cancelled\n\n```bash\n# Create a comprehensive epic\ntickets epic create \"E-commerce Platform\" \\\n  --description \"Complete online shopping experience\" \\\n  --priority critical \\\n  --owner \"Product Team\" \\\n  --target-version \"v2.0\" \\\n  --target-date \"2024-12-31\" \\\n  --estimated-points 200\n\n# Manage epic relationships\ntickets epic add-ticket ECOM-1 CART-1\ntickets epic add-ticket ECOM-1 PAYMENT-1\ntickets epic add-ticket ECOM-1 CHECKOUT-1\n\n# Track epic progress\ntickets epic show ECOM-1\ntickets epic list --status active\n```\n\n**Epic Features:**\n- Target versions and completion dates with overdue detection\n- Goals and measurable success criteria\n- Story point estimation and progress tracking\n- Bidirectional ticket relationships\n- Owner assignment and team coordination\n\n### Product Backlog Management\n\nThe backlog system enables professional product management with prioritization scoring, sprint planning, and requirement tracking.\n\n**Backlog Lifecycle:** New \u2192 Groomed \u2192 Ready \u2192 In Progress \u2192 Done / Cancelled\n\n```bash\n# Add items with comprehensive metadata\ntickets backlog add \"User Registration\" \\\n  --type feature \\\n  --priority high \\\n  --story-points 8 \\\n  --business-value 90 \\\n  --effort-estimate 16 \\\n  --risk-level medium \\\n  --epic-id USER-1 \\\n  --component \"Authentication\" \\\n  --theme \"User Onboarding\"\n\n# Prioritized listing (automatic scoring)\ntickets backlog list\n\n# Sprint planning filters\ntickets backlog list --status ready\ntickets backlog list --epic USER-1\ntickets backlog list --sprint SPRINT-1\n```\n\n### Advanced Prioritization\n\nBacklog items are automatically prioritized using a sophisticated scoring algorithm:\n\n**Priority Score = (Base Priority \u00d7 100) + Business Value - (Story Points \u00d7 2)**\n\nThis balances:\n- **Strategic Priority** (critical=4, high=3, medium=2, low=1)\n- **Business Value** (1-100 scale of user/business impact)\n- **Development Effort** (story points using Fibonacci scale)\n\nItems are automatically sorted by priority score for optimal sprint planning.\n\n### Sprint Planning Features\n\n```bash\n# Check sprint readiness\n# Items are ready when they have:\n# - Status: groomed or ready\n# - Story points assigned\n# - Acceptance criteria defined\ntickets backlog list --status ready\n\n# Convert ready items to development tickets\ntickets backlog convert LOGIN-1 \\\n  --reporter \"Product Manager\" \\\n  --reporter-email \"pm@company.com\"\n\n# This automatically:\n# - Creates a full ticket with all metadata\n# - Converts acceptance criteria to requirements\n# - Links to the original backlog item\n# - Updates backlog item status to \"in-progress\"\n```\n\n### Professional Workflows\n\n**Epic Planning Workflow:**\n1. Create epic with business goals and success criteria\n2. Add backlog items and associate with epic\n3. Prioritize and groom backlog items\n4. Convert ready items to tickets for development\n5. Track progress through epic dashboard\n\n**Team Coordination:**\n- **Product Owner**: Manages backlog priorities and business value\n- **Scrum Master**: Reviews sprint readiness and team metrics\n- **Developers**: Convert backlog items and implement features\n- **Team**: Tracks epic progress and release planning\n\n### Integration with Requirements\n\nEpics and backlog items seamlessly integrate with the requirements system:\n\n- **Backlog Items** can have acceptance criteria and definition of done\n- **Epic Goals** become high-level success criteria  \n- **Converted Tickets** automatically inherit requirements from backlog items\n- **Traceability** from epic \u2192 backlog item \u2192 ticket \u2192 requirements\n\n### Analytics and Reporting\n\nComprehensive metrics for professional project management:\n\n- **Epic Progress**: Story points completed, tickets closed, timeline tracking\n- **Backlog Health**: Items ready for sprint, prioritization distribution\n- **Sprint Metrics**: Velocity, burndown, completion rates\n- **Team Performance**: Individual and team story point delivery\n\nAll metrics appear in HTML reports, status commands, and project dashboards.\n\nSee [EPICS.md](EPICS.md) for comprehensive documentation, CLI reference, and best practices.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Enterprise-grade, VCS-agnostic ticket management system optimized for agentic development workflows",
    "version": "1.0.2",
    "project_urls": {
        "Changelog": "https://github.com/thinmanj/repo-tickets/releases",
        "Documentation": "https://github.com/thinmanj/repo-tickets#readme",
        "Homepage": "https://github.com/thinmanj/repo-tickets",
        "Issues": "https://github.com/thinmanj/repo-tickets/issues",
        "Repository": "https://github.com/thinmanj/repo-tickets"
    },
    "split_keywords": [
        "tickets",
        " issue-tracker",
        " project-management",
        " git",
        " mercurial",
        " jujutsu",
        " vcs",
        " cli",
        " workflow",
        " agents",
        " ai",
        " automation",
        " devops",
        " agile",
        " epic",
        " backlog",
        " requirements",
        " bdd",
        " gherkin"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5b89f0909df8c8b56538a898161db840e68728c00bd229a33c42fe47d42e37be",
                "md5": "0918ab785575924dc1c84c10558dc6b8",
                "sha256": "532fbfd01563ae0636ee59a9d3972a6128f064a4d4d288dfa3d0b7eed039fbb7"
            },
            "downloads": -1,
            "filename": "repo_tickets-1.0.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0918ab785575924dc1c84c10558dc6b8",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 103533,
            "upload_time": "2025-10-31T00:41:35",
            "upload_time_iso_8601": "2025-10-31T00:41:35.225515Z",
            "url": "https://files.pythonhosted.org/packages/5b/89/f0909df8c8b56538a898161db840e68728c00bd229a33c42fe47d42e37be/repo_tickets-1.0.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d52a1d9c0a0487772ef4fc54761f9b2f15b65b08fc83d3b413b84397019c004d",
                "md5": "7eb9445fcebe4a8b7a90579d84b42723",
                "sha256": "39ec303204516ca888257fbe65bc41b3248774af0bec5e5bcfcdd8bc3d45a5c3"
            },
            "downloads": -1,
            "filename": "repo_tickets-1.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "7eb9445fcebe4a8b7a90579d84b42723",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 194891,
            "upload_time": "2025-10-31T00:41:36",
            "upload_time_iso_8601": "2025-10-31T00:41:36.803436Z",
            "url": "https://files.pythonhosted.org/packages/d5/2a/1d9c0a0487772ef4fc54761f9b2f15b65b08fc83d3b413b84397019c004d/repo_tickets-1.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-31 00:41:36",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "thinmanj",
    "github_project": "repo-tickets",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [
        {
            "name": "click",
            "specs": [
                [
                    ">=",
                    "8.0.0"
                ]
            ]
        },
        {
            "name": "pyyaml",
            "specs": [
                [
                    ">=",
                    "6.0"
                ]
            ]
        },
        {
            "name": "colorama",
            "specs": [
                [
                    ">=",
                    "0.4.4"
                ]
            ]
        },
        {
            "name": "tabulate",
            "specs": [
                [
                    ">=",
                    "0.9.0"
                ]
            ]
        },
        {
            "name": "python-dateutil",
            "specs": [
                [
                    ">=",
                    "2.8.0"
                ]
            ]
        },
        {
            "name": "rich",
            "specs": [
                [
                    ">=",
                    "13.0.0"
                ]
            ]
        },
        {
            "name": "textual",
            "specs": [
                [
                    ">=",
                    "0.44.0"
                ]
            ]
        },
        {
            "name": "pytest",
            "specs": [
                [
                    ">=",
                    "7.0.0"
                ]
            ]
        },
        {
            "name": "pytest-cov",
            "specs": [
                [
                    ">=",
                    "4.0.0"
                ]
            ]
        },
        {
            "name": "black",
            "specs": [
                [
                    ">=",
                    "23.0.0"
                ]
            ]
        },
        {
            "name": "flake8",
            "specs": [
                [
                    ">=",
                    "5.0.0"
                ]
            ]
        },
        {
            "name": "mypy",
            "specs": [
                [
                    ">=",
                    "1.0.0"
                ]
            ]
        }
    ],
    "lcname": "repo-tickets"
}