|
| 1 | +name: Agent Request |
| 2 | +description: Request support for a new AI agent/assistant in Spec Kit |
| 3 | +title: "[Agent]: Add support for " |
| 4 | +labels: ["agent-request", "enhancement", "needs-triage"] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + Thanks for requesting a new agent! Before submitting, please check if the agent is already supported. |
| 10 | + |
| 11 | + **Currently supported agents**: Claude Code, Gemini CLI, GitHub Copilot, Cursor, Qwen Code, opencode, Codex CLI, Windsurf, Kilo Code, Auggie CLI, Roo Code, CodeBuddy, Qoder CLI, Amazon Q Developer CLI, Amp, SHAI, IBM Bob, Antigravity |
| 12 | +
|
| 13 | + - type: input |
| 14 | + id: agent-name |
| 15 | + attributes: |
| 16 | + label: Agent Name |
| 17 | + description: What is the name of the AI agent/assistant? |
| 18 | + placeholder: "e.g., SuperCoder AI" |
| 19 | + validations: |
| 20 | + required: true |
| 21 | + |
| 22 | + - type: input |
| 23 | + id: website |
| 24 | + attributes: |
| 25 | + label: Official Website |
| 26 | + description: Link to the agent's official website or documentation |
| 27 | + placeholder: "https://..." |
| 28 | + validations: |
| 29 | + required: true |
| 30 | + |
| 31 | + - type: dropdown |
| 32 | + id: agent-type |
| 33 | + attributes: |
| 34 | + label: Agent Type |
| 35 | + description: How is the agent accessed? |
| 36 | + options: |
| 37 | + - CLI tool (command-line interface) |
| 38 | + - IDE extension/plugin |
| 39 | + - Both CLI and IDE |
| 40 | + - Other |
| 41 | + validations: |
| 42 | + required: true |
| 43 | + |
| 44 | + - type: input |
| 45 | + id: cli-command |
| 46 | + attributes: |
| 47 | + label: CLI Command (if applicable) |
| 48 | + description: What command is used to invoke the agent from terminal? |
| 49 | + placeholder: "e.g., supercode, ai-assistant" |
| 50 | + |
| 51 | + - type: input |
| 52 | + id: install-method |
| 53 | + attributes: |
| 54 | + label: Installation Method |
| 55 | + description: How is the agent installed? |
| 56 | + placeholder: "e.g., npm install -g supercode, pip install supercode, IDE marketplace" |
| 57 | + validations: |
| 58 | + required: true |
| 59 | + |
| 60 | + - type: textarea |
| 61 | + id: command-structure |
| 62 | + attributes: |
| 63 | + label: Command/Workflow Structure |
| 64 | + description: How does the agent define custom commands or workflows? |
| 65 | + placeholder: | |
| 66 | + - Command file format (Markdown, YAML, TOML, etc.) |
| 67 | + - Directory location (e.g., .supercode/commands/) |
| 68 | + - Example command file structure |
| 69 | + validations: |
| 70 | + required: true |
| 71 | + |
| 72 | + - type: textarea |
| 73 | + id: argument-pattern |
| 74 | + attributes: |
| 75 | + label: Argument Passing Pattern |
| 76 | + description: How does the agent handle arguments in commands? |
| 77 | + placeholder: | |
| 78 | + e.g., Uses {{args}}, $ARGUMENTS, %ARGS%, or other placeholder format |
| 79 | + Example: "Run test suite with {{args}}" |
| 80 | +
|
| 81 | + - type: dropdown |
| 82 | + id: popularity |
| 83 | + attributes: |
| 84 | + label: Popularity/Usage |
| 85 | + description: How widely is this agent used? |
| 86 | + options: |
| 87 | + - Widely used (thousands+ of users) |
| 88 | + - Growing adoption (hundreds of users) |
| 89 | + - New/emerging (less than 100 users) |
| 90 | + - Unknown |
| 91 | + validations: |
| 92 | + required: true |
| 93 | + |
| 94 | + - type: textarea |
| 95 | + id: documentation |
| 96 | + attributes: |
| 97 | + label: Documentation Links |
| 98 | + description: Links to relevant documentation for custom commands/workflows |
| 99 | + placeholder: | |
| 100 | + - Command documentation: https://... |
| 101 | + - API/CLI reference: https://... |
| 102 | + - Examples: https://... |
| 103 | +
|
| 104 | + - type: textarea |
| 105 | + id: use-case |
| 106 | + attributes: |
| 107 | + label: Use Case |
| 108 | + description: Why do you want this agent supported in Spec Kit? |
| 109 | + placeholder: Explain your workflow and how this agent fits into your development process |
| 110 | + validations: |
| 111 | + required: true |
| 112 | + |
| 113 | + - type: textarea |
| 114 | + id: example-command |
| 115 | + attributes: |
| 116 | + label: Example Command File |
| 117 | + description: If possible, provide an example of a command file for this agent |
| 118 | + render: markdown |
| 119 | + placeholder: | |
| 120 | + ```toml |
| 121 | + description = "Example command" |
| 122 | + prompt = "Do something with {{args}}" |
| 123 | + ``` |
| 124 | +
|
| 125 | + - type: checkboxes |
| 126 | + id: contribution |
| 127 | + attributes: |
| 128 | + label: Contribution |
| 129 | + description: Are you willing to help implement support for this agent? |
| 130 | + options: |
| 131 | + - label: I can help test the integration |
| 132 | + - label: I can provide example command files |
| 133 | + - label: I can help with documentation |
| 134 | + - label: I can submit a pull request for the integration |
| 135 | + |
| 136 | + - type: textarea |
| 137 | + id: context |
| 138 | + attributes: |
| 139 | + label: Additional Context |
| 140 | + description: Any other relevant information about this agent |
| 141 | + placeholder: Screenshots, community links, comparison to existing agents, etc. |
0 commit comments