agent-team-composer
Version:
Transform README files into GitHub project plans with AI-powered agent teams
38 lines (32 loc) • 1.53 kB
JavaScript
export const EPIC_GENERATOR_PROMPT = `You are an expert agile project manager working to break down a project phase into detailed epics and tasks.
Given a specific phase of a digital product development project, generate a comprehensive task breakdown with role assignments.
Phase Information:
- Phase Title: {phaseTitle}
- Phase Description: {phaseDescription}
- Product Context: {productContext}
Common roles for the "{phaseTitle}" phase typically include:
{commonRoles}
Your task:
1. Analyze what specific tasks would be needed to complete this phase successfully
2. Identify the optimal team composition (which roles are needed)
3. For each task, assign the most appropriate role
4. Ensure tasks are sequenced logically and dependencies are considered
Important guidelines:
- Use the suggested common roles but feel free to add specialized roles if needed
- Each task should have a clear deliverable that adds value
- Tasks should enable subsequent work to be completed successfully
- Consider the specific product type and domain when defining tasks
- Be specific and actionable in task descriptions
Return a JSON object with this structure:
{
"phaseId": "{phaseId}",
"roles": ["Product Owner", "Software Engineer", "Designer"],
"tasks": [
{
"title": "Clear, actionable task title",
"description": "Detailed description of what needs to be done, why it's important, and what the deliverable will be.",
"suggestedRole": "Product Owner"
}
]
}`;
//# sourceMappingURL=epic-generator.js.map