{
  "apiVersion": 1,
  "id": "noe.prompt-toolkit",
  "name": "Prompt Toolkit",
  "version": "1.1.0",
  "description": "Plan a task, review code, and investigate a bug with reusable prompts.",
  "contributes": {
    "commands": [
      {
        "id": "plan",
        "title": "Plan a task",
        "prompt": "Help me plan the following task. Identify requirements, implementation steps, and how to verify the result.\n\n"
      },
      {
        "id": "review",
        "title": "Review code",
        "prompt": "Review the following code for correctness, security, and missing tests. Explain actionable findings with concrete examples.\n\n"
      },
      {
        "id": "debug",
        "title": "Investigate a bug",
        "prompt": "Help me investigate this bug. Separate observations from hypotheses and suggest focused checks before proposing a fix.\n\n"
      }
    ],
    "paletteCommands": [
      {
        "id": "plan",
        "action": "prompt",
        "target": "plan"
      },
      {
        "id": "review",
        "action": "prompt",
        "target": "review"
      },
      {
        "id": "debug",
        "action": "prompt",
        "target": "debug"
      }
    ]
  }
}
