- Refactor main CLAUDE.md from 491 to 164 lines (66% reduction) - Create 9 domain-specific CLAUDE.md files for focused guidance: * agents/CLAUDE.md (347 lines) - Agent development guide * marketing-skill/CLAUDE.md (253 lines) - Marketing tools * product-team/CLAUDE.md (268 lines) - Product management tools * engineering-team/CLAUDE.md (291 lines) - Engineering tools * standards/CLAUDE.md (176 lines) - Standards usage * c-level-advisor/CLAUDE.md (143 lines) - Strategic advisory * project-management/CLAUDE.md (139 lines) - Atlassian integration * ra-qm-team/CLAUDE.md (153 lines) - RA/QM compliance * templates/CLAUDE.md (77 lines) - Template system - Add navigation map in main CLAUDE.md for easy domain access - Create PROGRESS.md for real-time sprint tracking - Implement auto-documentation system for sprint progress Benefits: - Main CLAUDE.md now concise and navigable - Domain-specific guidance easier to find - No duplicate content across files - Better organization for 42 skills across 6 domains Total: 2,011 lines across 10 organized files vs 491 lines in 1 monolithic file Sprint: sprint-11-05-2025 Issue: Part of documentation refactoring milestone
140 lines
3.8 KiB
Markdown
140 lines
3.8 KiB
Markdown
# Project Management Skills - Claude Code Guidance
|
|
|
|
This guide covers the 6 production-ready project management skills with Atlassian MCP integration.
|
|
|
|
## PM Skills Overview
|
|
|
|
**Available Skills:**
|
|
1. **senior-pm/** - Senior project manager workflows and best practices
|
|
2. **scrum-master/** - Scrum ceremonies, agile coaching, team facilitation
|
|
3. **jira-expert/** - Jira administration, workflows, automation
|
|
4. **confluence-expert/** - Documentation, knowledge management, collaboration
|
|
5. **atlassian-admin/** - Atlassian suite administration and configuration
|
|
6. **atlassian-templates/** - Ready-to-use templates for Jira and Confluence
|
|
|
|
**Key Feature:** Atlassian MCP Server integration for direct Jira/Confluence operations
|
|
|
|
## Atlassian MCP Integration
|
|
|
|
**Purpose:** Direct integration with Jira and Confluence via Model Context Protocol (MCP)
|
|
|
|
**Capabilities:**
|
|
- Create, read, update Jira issues
|
|
- Manage Confluence pages and spaces
|
|
- Automate workflows and transitions
|
|
- Generate reports and dashboards
|
|
- Bulk operations on issues
|
|
|
|
**Setup:** Atlassian MCP server configured in Claude Code settings
|
|
|
|
**Usage Pattern:**
|
|
```bash
|
|
# Jira operations via MCP
|
|
mcp__atlassian__create_issue project="PROJ" summary="New feature" type="Story"
|
|
|
|
# Confluence operations via MCP
|
|
mcp__atlassian__create_page space="TEAM" title="Sprint Retrospective"
|
|
```
|
|
|
|
## Skill-Specific Guidance
|
|
|
|
### Senior PM (`senior-pm/`)
|
|
|
|
**Focus:** Project planning, stakeholder management, risk mitigation
|
|
|
|
**Key Workflows:**
|
|
- Project charter creation
|
|
- Stakeholder analysis and communication plans
|
|
- Risk register maintenance
|
|
- Status reporting and escalation
|
|
|
|
### Scrum Master (`scrum-master/`)
|
|
|
|
**Focus:** Agile ceremonies, team coaching, impediment removal
|
|
|
|
**Key Workflows:**
|
|
- Sprint planning facilitation
|
|
- Daily standup coordination
|
|
- Sprint retrospectives
|
|
- Backlog refinement
|
|
|
|
### Jira Expert (`jira-expert/`)
|
|
|
|
**Focus:** Jira configuration, custom workflows, automation rules
|
|
|
|
**Key Workflows:**
|
|
- Workflow customization
|
|
- Automation rule creation
|
|
- Board configuration
|
|
- JQL query optimization
|
|
|
|
### Confluence Expert (`confluence-expert/`)
|
|
|
|
**Focus:** Documentation strategy, templates, knowledge management
|
|
|
|
**Key Workflows:**
|
|
- Space architecture design
|
|
- Template library creation
|
|
- Documentation standards
|
|
- Search optimization
|
|
|
|
### Atlassian Admin (`atlassian-admin/`)
|
|
|
|
**Focus:** Suite administration, user management, integrations
|
|
|
|
**Key Workflows:**
|
|
- User provisioning and permissions
|
|
- SSO/SAML configuration
|
|
- App marketplace management
|
|
- Performance monitoring
|
|
|
|
### Atlassian Templates (`atlassian-templates/`)
|
|
|
|
**Focus:** Ready-to-use templates for common PM tasks
|
|
|
|
**Available Templates:**
|
|
- Sprint planning template
|
|
- Retrospective formats (Start-Stop-Continue, 4Ls, Mad-Sad-Glad)
|
|
- Project charter
|
|
- Risk register
|
|
- Decision log
|
|
|
|
## Integration Patterns
|
|
|
|
### Pattern 1: Sprint Planning
|
|
|
|
```bash
|
|
# 1. Create sprint in Jira (via MCP)
|
|
mcp__atlassian__create_sprint board="TEAM-board" name="Sprint 23" start="2025-11-06"
|
|
|
|
# 2. Generate user stories (product-team integration)
|
|
python ../product-team/agile-product-owner/scripts/user_story_generator.py sprint 30
|
|
|
|
# 3. Import stories to Jira
|
|
# (Manual or via Jira API integration)
|
|
```
|
|
|
|
### Pattern 2: Documentation Workflow
|
|
|
|
```bash
|
|
# 1. Create Confluence page template
|
|
mcp__atlassian__create_page space="DOCS" title="Feature Spec" template="feature-spec"
|
|
|
|
# 2. Link to Jira epic
|
|
mcp__atlassian__link_issue issue="PROJ-123" confluence_page_id="456789"
|
|
```
|
|
|
|
## Additional Resources
|
|
|
|
- **Installation Guide:** `INSTALLATION_GUIDE.txt`
|
|
- **Implementation Summary:** `IMPLEMENTATION_SUMMARY.md`
|
|
- **Real-World Scenario:** `REAL_WORLD_SCENARIO.md`
|
|
- **PM Overview:** `README.md`
|
|
- **Main Documentation:** `../CLAUDE.md`
|
|
|
|
---
|
|
|
|
**Last Updated:** November 5, 2025
|
|
**Skills Deployed:** 6/6 PM skills production-ready
|
|
**Integration:** Atlassian MCP Server for Jira/Confluence automation
|