prprompts-flutter-generator
Version:
AI-powered Flutter development with full automation + official extension support - Generate 32 security-audited guides & auto-implement in 2-3 hours. NEW v5.1: Official Claude Code plugin with hooks, Gemini TOML commands, Qwen MCP settings. Features: Comp
56 lines • 1.51 kB
JSON
{
"id": "prd-creator",
"name": "PRD Creator",
"version": "1.0.0",
"category": "prprompts-core",
"description": "Interactive Product Requirements Document creation wizard with 10 guided questions",
"author": "PRPROMPTS Team",
"icon": "📝",
"tags": ["prd", "requirements", "documentation", "interactive"],
"inputs": {
"optional": {
"project_type": {
"type": "string",
"description": "Type of project (e.g., healthcare, fintech, ecommerce)",
"default": null
},
"compliance": {
"type": "array",
"description": "Compliance requirements (e.g., ['hipaa', 'gdpr'])",
"default": []
}
}
},
"outputs": {
"prd_path": {
"type": "string",
"description": "Path to generated PRD file",
"value": "docs/PRD.md"
},
"metadata": {
"type": "object",
"description": "Extracted PRD metadata for downstream skills"
}
},
"config": {
"interactive": true,
"timeout": 300000,
"retryable": false,
"cacheable": false
},
"dependencies": [],
"requirements": {
"flutter": false,
"projectInitialized": false
},
"examples": [
{
"description": "Create PRD for healthcare app",
"command": "@claude use skill prd-creator --project_type healthcare --compliance hipaa,gdpr"
},
{
"description": "Interactive PRD creation",
"command": "@claude use skill prd-creator"
}
]
}