Spaces:
Sleeping
Sleeping
File size: 9,162 Bytes
c2cb41b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 | ---
title: Enterprise Delivery & Workforce Intelligence API
emoji: π
colorFrom: blue
colorTo: purple
sdk: docker
pinned: false
license: mit
---
# Enterprise Delivery & Workforce Intelligence API
## Overview
AI-powered enterprise intelligence system that converts raw engineering activity from Jira (and GitHub) into meaningful business-level insights.
## Features
### π Data Integration
- **Jira Integration**: Fetch issues, sprints, worklogs, team members, and project data
- **GitHub Integration**: (Coming soon - handled by frontend team)
### π§ Intelligence & Analytics
- **Delivery Health Metrics**: Track velocity, completion rates, cycle time, and sprint health
- **Productivity Metrics**: Monitor individual and team productivity, utilization, and efficiency
- **Cost Efficiency Analysis**: Calculate cost per feature, story point, and identify waste
- **Risk Alerts**: Automated detection of delivery delays, resource issues, and cost overruns
- **AI Insights**: Generate actionable recommendations based on engineering data
### π― Business Impact
- Predict delivery delays early
- Optimize workforce allocation
- Identify cost inefficiencies
- Data-driven decision making for engineering leaders
## Project Structure
```
backend/
βββ api/ # FastAPI route handlers
β βββ jira_routes.py # Jira data endpoints
β βββ intelligence_routes.py # Intelligence & metrics endpoints
β βββ __init__.py
βββ config/ # Configuration management
β βββ settings.py # Environment settings
β βββ __init__.py
βββ integrations/ # External API integrations
β βββ jira_service.py # Jira API client
β βββ __init__.py
βββ models/ # Data models (Pydantic)
β βββ jira_models.py # Jira domain models
β βββ intelligence_models.py # Intelligence metrics models
β βββ __init__.py
βββ services/ # Business logic
β βββ intelligence_service.py # Analytics & insights generation
β βββ __init__.py
βββ main.py # FastAPI application entry point
βββ requirements.txt # Python dependencies
βββ .env.example # Environment variables template
βββ README.md # This file
```
## Setup Instructions
### Prerequisites
- Python 3.9+
- Jira account with API access
- Jira API token ([Get it here](https://id.atlassian.com/manage-profile/security/api-tokens))
### Installation
1. **Clone the repository** (if not already done)
```bash
cd d:\Datathon\backend
```
2. **Create virtual environment**
```bash
python -m venv venv
venv\Scripts\activate # On Windows
# source venv/bin/activate # On Linux/Mac
```
3. **Install dependencies**
```bash
pip install -r requirements.txt
```
4. **Configure environment variables**
```bash
copy .env.example .env
```
Edit `.env` with your credentials:
```env
JIRA_SERVER_URL=https://your-domain.atlassian.net
JIRA_EMAIL=your-email@example.com
JIRA_API_TOKEN=your_jira_api_token
SECRET_KEY=your-secret-key-here
```
5. **Run the application**
```bash
python main.py
```
Or using uvicorn directly:
```bash
uvicorn main:app --reload --host 0.0.0.0 --port 8000
```
6. **Access the API**
- API: http://localhost:8000
- Interactive docs: http://localhost:8000/docs
- Alternative docs: http://localhost:8000/redoc
## API Endpoints
### Jira Data Endpoints
#### Get All Projects
```http
GET /jira/projects
```
#### Get Project Issues
```http
GET /jira/projects/{project_key}/issues?start_date=2026-01-01&end_date=2026-02-07&max_results=100
```
#### Get Boards
```http
GET /jira/boards
```
#### Get Sprints for Board
```http
GET /jira/boards/{board_id}/sprints
```
#### Get Active Sprint
```http
GET /jira/boards/{board_id}/active-sprint
```
#### Get Sprint Issues
```http
GET /jira/sprints/{sprint_id}/issues
```
#### Get Team Members
```http
GET /jira/projects/{project_key}/team-members
```
#### Get Worklogs
```http
GET /jira/projects/{project_key}/worklogs?start_date=2026-01-01&end_date=2026-02-07
```
### Intelligence Endpoints
#### Get Delivery Health Metrics
```http
GET /intelligence/delivery-health/{project_key}?start_date=2026-01-01&end_date=2026-02-07
GET /intelligence/delivery-health/{project_key}?board_id=1&sprint_id=10
```
**Response:**
```json
{
"sprint_name": "Sprint 1",
"period_start": "2026-01-01",
"period_end": "2026-02-07",
"completed_story_points": 45.0,
"velocity": 45.0,
"completion_rate": 85.5,
"avg_cycle_time_hours": 12.5,
"health_score": 82.3,
"blocked_issues_count": 2
}
```
#### Get Productivity Metrics
```http
GET /intelligence/productivity/{project_key}?start_date=2026-01-01&end_date=2026-02-07
```
**Response:**
```json
[
{
"team_member_name": "John Doe",
"issues_completed": 8,
"story_points_completed": 21.0,
"total_hours_logged": 80.0,
"productivity_score": 78.5,
"utilization_rate": 90.0
}
]
```
#### Get Cost Efficiency Metrics
```http
GET /intelligence/cost-efficiency/{project_key}?start_date=2026-01-01&avg_hourly_rate=75
```
**Response:**
```json
{
"total_hours_logged": 320.0,
"estimated_cost": 24000.0,
"features_delivered": 15,
"cost_per_feature": 1600.0,
"cost_per_story_point": 533.33,
"waste_percentage": 8.5
}
```
#### Get Risk Alerts
```http
GET /intelligence/risk-alerts/{project_key}?start_date=2026-01-01
```
**Response:**
```json
[
{
"alert_type": "delivery_delay",
"severity": "high",
"title": "Low Completion Rate",
"description": "Only 45.0% of planned work is completed.",
"suggested_action": "Reduce scope or extend timeline to meet commitments."
}
]
```
#### Get AI Insights
```http
GET /intelligence/insights/{project_key}?start_date=2026-01-01
```
**Response:**
```json
[
{
"category": "delivery",
"title": "Velocity Analysis",
"description": "Team completed 45.0 story points with 85.5% completion rate.",
"confidence_score": 0.85,
"impact_level": "medium",
"recommendations": [
"Maintain current sprint planning strategy",
"Consider increasing capacity for higher throughput"
]
}
]
```
#### Get Complete Dashboard
```http
GET /intelligence/dashboard/{project_key}?start_date=2026-01-01&end_date=2026-02-07
```
**Response includes all metrics:**
- Delivery health
- Productivity metrics for all team members
- Cost efficiency
- Risk alerts
- AI insights
## Usage Examples
### Example 1: Monitor Sprint Health
```python
import requests
# Get active sprint
response = requests.get(
"http://localhost:8000/jira/boards/1/active-sprint"
)
sprint = response.json()
# Get delivery health for that sprint
response = requests.get(
f"http://localhost:8000/intelligence/delivery-health/PROJ",
params={
"board_id": 1,
"sprint_id": sprint["sprint_id"]
}
)
health = response.json()
print(f"Sprint Health Score: {health['health_score']}/100")
```
### Example 2: Team Productivity Report
```python
import requests
response = requests.get(
"http://localhost:8000/intelligence/productivity/PROJ",
params={
"start_date": "2026-01-01",
"end_date": "2026-02-07"
}
)
for member in response.json():
print(f"{member['team_member_name']}: {member['productivity_score']}/100")
```
### Example 3: Cost Analysis
```python
import requests
response = requests.get(
"http://localhost:8000/intelligence/cost-efficiency/PROJ",
params={
"start_date": "2026-01-01",
"avg_hourly_rate": 80
}
)
cost = response.json()
print(f"Cost per Story Point: ${cost['cost_per_story_point']:.2f}")
print(f"Waste: {cost['waste_percentage']:.1f}%")
```
## Integration with Frontend
The frontend team working on GitHub integration can consume these endpoints:
1. **Dashboard View**: Use `/intelligence/dashboard/{project_key}` for comprehensive data
2. **Real-time Alerts**: Poll `/intelligence/risk-alerts/{project_key}` for updates
3. **Team Performance**: Display `/intelligence/productivity/{project_key}` data
## Future Enhancements
- [ ] GitHub integration for code metrics
- [ ] Real-time websocket updates
- [ ] Historical trend analysis
- [ ] Machine learning predictions
- [ ] Custom metric definitions
- [ ] Team capacity planning
- [ ] Automated reporting
## Troubleshooting
### Common Issues
**401 Unauthorized Error**
- Check Jira API token is valid
- Verify email and server URL in `.env`
**No data returned**
- Ensure project key is correct
- Check date ranges are valid
- Verify you have access to the Jira project
**Import errors**
- Activate virtual environment
- Run `pip install -r requirements.txt`
## Contributing
This is an MVP for a datathon. Focus areas:
1. Jira data accuracy
2. Intelligence algorithm improvements
3. API performance optimization
## License
MIT License - Datathon 2026
---
**Built for**: AI-Driven Enterprise Delivery & Workforce Intelligence
**Team**: Backend (Jira) + Frontend (GitHub)
**Date**: February 2026
|