mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-04-28 20:09:34 +00:00
feat: Add agent and cloud request issue templates
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
25b579755d
commit
aeec170dfa
3 changed files with 181 additions and 4 deletions
100
.github/ISSUE_TEMPLATE/cloud_request.yml
vendored
Normal file
100
.github/ISSUE_TEMPLATE/cloud_request.yml
vendored
Normal file
|
|
@ -0,0 +1,100 @@
|
|||
name: Cloud Provider Request
|
||||
description: Request support for a new cloud provider
|
||||
title: "[Cloud]: "
|
||||
labels: ["cloud-request", "needs-triage"]
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
Thanks for suggesting a new cloud provider! We bias heavily toward adding more clouds.
|
||||
|
||||
- type: input
|
||||
id: cloud-name
|
||||
attributes:
|
||||
label: Cloud Provider Name
|
||||
description: Name of the cloud provider
|
||||
placeholder: e.g., OVH, Paperspace, Vast.ai
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: input
|
||||
id: cloud-url
|
||||
attributes:
|
||||
label: Website URL
|
||||
description: Link to the provider's homepage
|
||||
placeholder: https://cloud.provider.com
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: dropdown
|
||||
id: cloud-type
|
||||
attributes:
|
||||
label: Provider Type
|
||||
description: What kind of compute does it offer?
|
||||
options:
|
||||
- VPS / Cloud Servers (SSH access)
|
||||
- GPU Cloud
|
||||
- Container / Sandbox Platform
|
||||
- Serverless / Functions
|
||||
- Other (describe below)
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: dropdown
|
||||
id: api-type
|
||||
attributes:
|
||||
label: API / CLI Access
|
||||
description: How do you provision and manage instances?
|
||||
options:
|
||||
- REST API
|
||||
- CLI tool
|
||||
- Both REST API and CLI
|
||||
- SDK only (Python, Node, etc.)
|
||||
- Web console only (no API)
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: dropdown
|
||||
id: billing
|
||||
attributes:
|
||||
label: Billing Model
|
||||
description: How is compute billed?
|
||||
options:
|
||||
- Per-hour
|
||||
- Per-minute / Per-second
|
||||
- Monthly
|
||||
- Pay-as-you-go (usage-based)
|
||||
- Free tier available
|
||||
- Other
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: why
|
||||
attributes:
|
||||
label: Why This Provider?
|
||||
description: What makes this provider a good fit for spawn? (pricing, speed, regions, unique features)
|
||||
placeholder: |
|
||||
- Fast provisioning (~30s)
|
||||
- Cheap GPU instances
|
||||
- Good API docs
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: api-docs
|
||||
attributes:
|
||||
label: API Documentation Link
|
||||
description: Link to API docs or CLI reference (if available)
|
||||
placeholder: https://docs.provider.com/api
|
||||
validations:
|
||||
required: false
|
||||
|
||||
- type: textarea
|
||||
id: additional
|
||||
attributes:
|
||||
label: Additional Context
|
||||
description: Any other details (auth method, regions, OS support, limitations)
|
||||
placeholder: Uses API key auth, available in US and EU regions
|
||||
validations:
|
||||
required: false
|
||||
Loading…
Add table
Add a link
Reference in a new issue