Add Sentry CLI skill

This commit is contained in:
2026-05-20 11:11:09 +01:00
parent c626224e60
commit 6ee5596160
22 changed files with 2423 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
---
name: sentry-cli-schema
version: 0.33.0
description: Browse the Sentry API schema
requires:
bins: ["sentry"]
auth: true
---
# Schema Commands
Browse the Sentry API schema
### `sentry schema <resource...>`
Browse the Sentry API schema
**Flags:**
- `--all - Show all endpoints in a flat list`
- `-q, --search <value> - Search endpoints by keyword`
**Examples:**
```bash
# List all API resources
sentry schema
# Browse issue endpoints
sentry schema issues
# View details for a specific operation
sentry schema issues list
# Search for monitoring-related endpoints
sentry schema --search monitor
# Flat list of every endpoint
sentry schema --all
```
All commands also support `--json`, `--fields`, `--help`, `--log-level`, and `--verbose` flags.