PM Tool Integration¶
Export RequireKit requirements, features, and epics to project management tools.
Status: Specification Ready - Implementation Required
The sync commands documented below describe the intended integration behavior. RequireKit provides structured metadata ready for export, but actual API integration requires MCP server or custom implementation.
What IS provided: - Structured YAML frontmatter in epic/feature files - Field mappings for Jira, Linear, GitHub Projects, Azure DevOps - Detailed specifications for sync behavior
What IS NOT provided: - Working
/feature-syncor/epic-synccommands - MCP server for PM tool APIs - Automated synchronization
Supported PM Tools (Specification)¶
Jira¶
Linear¶
GitHub Projects¶
Azure DevOps¶
What Gets Exported¶
- Feature description → User story
- Requirements → Acceptance criteria
- BDD scenarios → Test specifications
- Epic links → Parent issue links
- Metadata → Custom fields
Integration Status¶
Specification Ready: Epic and feature files include structured metadata for PM tool export.
API Integration Not Implemented: Actual API integration requires MCP server or custom implementation. The structured format makes building integrations straightforward, but no working implementation is currently provided.
Structured Metadata Example¶
---
id: FEAT-001
title: User Authentication
epic: EPIC-001
requirements: [REQ-001, REQ-002]
pm_metadata:
jira:
project: PROJ
issue_type: Story
priority: High
linear:
team: Engineering
priority: 1
---
Custom Integration¶
Use the structured markdown files to build custom integrations:
- Parse frontmatter YAML
- Extract requirements and BDD scenarios
- Call PM tool APIs
- Create issues with traceability links
Next Steps¶
For complete integration details, see the Integration Guide.