{
  "repo": "vudex-developer__GenAIPlayground",
  "total": 2,
  "priorities": {
    "P0": 0,
    "P1": 0,
    "P2": 2,
    "P3": 0
  },
  "prompts": [
    {
      "id": "license-missing",
      "title": "Add a LICENSE file",
      "priority": "P2",
      "category": "legal",
      "prompt": "Repository 'vudex-developer__GenAIPlayground' has no detectable license. Add a LICENSE file. For open-source projects, MIT is recommended unless dependencies require a specific license. Create the full file.",
      "files": [],
      "expected_outcome": "LICENSE file added",
      "effort": "quick-fix",
      "tags": [
        "license",
        "legal"
      ]
    },
    {
      "id": "complexity",
      "title": "Simplify 5 high-complexity files",
      "priority": "P2",
      "category": "quality",
      "prompt": "These files in 'vudex-developer__GenAIPlayground' have high cyclomatic complexity:\n\n- **src/components/node-inspectors/GridNodeSettings.tsx**: complexity=297, max nesting=6, longest function=126 lines\n- **src/stores/flowStore/runLLMPrompt.ts**: complexity=257, max nesting=4, longest function=146 lines\n- **src/components/node-inspectors/MotionPromptSettings.tsx**: complexity=160, max nesting=5, longest function=478 lines\n- **src/components/Canvas.tsx**: complexity=147, max nesting=7, longest function=250 lines\n- **src/components/CameraPreview3D.tsx**: complexity=146, max nesting=6, longest function=233 lines\n\nFor each file:\n1. Break large functions into smaller, focused functions\n2. Reduce nesting depth (extract early returns, use guard clauses)\n3. Simplify conditional logic\n4. Extract complex expressions into named variables",
      "files": [
        "src/components/node-inspectors/GridNodeSettings.tsx",
        "src/stores/flowStore/runLLMPrompt.ts",
        "src/components/node-inspectors/MotionPromptSettings.tsx",
        "src/components/Canvas.tsx",
        "src/components/CameraPreview3D.tsx"
      ],
      "expected_outcome": "All listed files reduced to medium or low complexity",
      "effort": "significant",
      "tags": [
        "complexity",
        "refactoring",
        "quality"
      ]
    }
  ]
}