generated from nhcarrigan/template
ec6a4469e1
## Summary - Removes `/create-task` (LeanTime) and `/create-issue` (Gitea) slash commands - Introduces `/create-ticket` with a `platform` choice argument: **LeanTime**, **Asana**, **Gitea**, **GitHub** - User provides only a `description`; the AI generates both the title and a fleshed-out body - `owner` and `repo` arguments are optional but validated at runtime when Gitea or GitHub is selected - Adds `ASANA_KEY` to `prod.env` (1Password reference — key needs to be added to vault) - Command remains restricted to Naomi's user ID ## Test plan - [ ] Register updated `commands.json` against the Discord API - [ ] Add `ASANA_KEY` to 1Password vault at `op://Environment Variables - Naomi/Amari/asana key` - [ ] Test `/create-ticket platform:LeanTime description:...` creates a task on the LeanTime board - [ ] Test `/create-ticket platform:Asana description:...` creates a task in Naomi's Asana project - [ ] Test `/create-ticket platform:Gitea owner:nhcarrigan repo:amari description:...` creates a Gitea issue - [ ] Test `/create-ticket platform:GitHub owner:naomi-lgbt repo:... description:...` creates a GitHub issue - [ ] Test that omitting `owner`/`repo` for Gitea/GitHub returns a helpful error - [ ] Verify AI generates a sensible title and description from the raw description ✨ This issue was created with help from Hikari~ 🌸 Reviewed-on: #18 Co-authored-by: Hikari <hikari@nhcarrigan.com> Co-committed-by: Hikari <hikari@nhcarrigan.com>
13 lines
915 B
Bash
13 lines
915 B
Bash
LOG_TOKEN="op://Environment Variables - Naomi/Alert Server/api_auth"
|
|
BOT_TOKEN="op://Environment Variables - Naomi/Amari/bot token"
|
|
GH_CLIENT_ID="op://Environment Variables - Naomi/Amari/gh client id"
|
|
GH_CLIENT_SECRET="op://Environment Variables - Naomi/Amari/gh client secret"
|
|
GH_PRIVATE_KEY="op://Environment Variables - Naomi/Amari/gh private key"
|
|
GH_WEBHOOK_SECRET="op://Environment Variables - Naomi/Amari/gh webhook secret"
|
|
BASEROW_SECRET="op://Environment Variables - Naomi/Amari/baserow hook auth"
|
|
BASEROW_TOKEN="op://Environment Variables - Naomi/Amari/baserow token"
|
|
RA_KEY="op://Environment Variables - Naomi/Amari/retroachievements key"
|
|
LEANTIME_KEY="op://Environment Variables - Naomi/Amari/leantime key"
|
|
GITEA_KEY="op://Environment Variables - Naomi/Amari/gitea key"
|
|
ASANA_KEY="op://Environment Variables - Naomi/Amari/asana key"
|
|
ANTHROPIC_KEY="op://Environment Variables - Naomi/Hikari/anthropic_key" |