atris-feedbacklisted
Install: claude install-skill atrislabs/atris
# Feedback
One skill for everything: submit feedback, view the queue, resolve/close/delete items.
## Steps
1. Parse the user input to determine the feedback action (list, submit, resolve, close, delete)
2. Run the matching `atris feedback` CLI command from the reference below
3. If `atris` CLI is unavailable, fall back to the direct API/DynamoDB path
4. Report the result to the user
## Parse the input
- `/feedback` (no args) → show the queue
- `/feedback <message>` → submit new feedback
- `/feedback resolve <id> <resolution>` → mark as resolved, notify customer
- `/feedback close <id>` → close as wontfix/duplicate
- `/feedback delete <id>` → remove from queue
## Preferred path: the Atris CLI
The `atris` CLI wraps every feedback operation against the production API and
handles auth from the user's login. Use it first — it's the canonical,
audited path and works without needing AWS credentials.
```bash
atris feedback # list queue
atris feedback "the calendar hangs" # submit
atris feedback resolve abc123 "fixed" # mark resolved
atris feedback close abc123 # close as wontfix
atris feedback delete abc123 # delete
```
IDs can be short (first 8 chars of the UUID) — the CLI resolves the prefix
against the live list before acting.
If `atris` is not on PATH, it lives at `~/arena/atris-cli/bin/atris.js`.
## Fallback: direct API / DynamoDB
Only use this path if the CLI is unavailable (stale install, bro