Skip to content

Commit 457d0d4

Browse files
chore: regenerate skill files and command docs
1 parent e56f888 commit 457d0d4

File tree

3 files changed

+54
-0
lines changed

3 files changed

+54
-0
lines changed

plugins/sentry-cli/skills/sentry-cli/references/auth.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,25 @@ SENTRY_URL=https://sentry.example.com sentry auth login --token YOUR_TOKEN
3636

3737
Log out of Sentry
3838

39+
**Examples:**
40+
41+
```bash
42+
sentry auth logout
43+
```
44+
3945
### `sentry auth refresh`
4046

4147
Refresh your authentication token
4248

4349
**Flags:**
4450
- `--force - Force refresh even if token is still valid`
4551

52+
**Examples:**
53+
54+
```bash
55+
sentry auth refresh
56+
```
57+
4658
### `sentry auth status`
4759

4860
View authentication status
@@ -67,6 +79,12 @@ sentry auth whoami
6779

6880
Print the stored authentication token
6981

82+
**Examples:**
83+
84+
```bash
85+
sentry auth token
86+
```
87+
7088
### `sentry auth whoami`
7189

7290
Show the currently authenticated user

plugins/sentry-cli/skills/sentry-cli/references/projects.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,19 @@ Create a new project
1919
- `-t, --team <value> - Team to create the project under`
2020
- `-n, --dry-run - Validate inputs and show what would be created without creating it`
2121

22+
**Examples:**
23+
24+
```bash
25+
# Create a new project
26+
sentry project create my-new-app javascript-nextjs
27+
28+
# Create under a specific org and team
29+
sentry project create my-org/my-new-app python --team backend-team
30+
31+
# Preview without creating
32+
sentry project create my-new-app node --dry-run
33+
```
34+
2235
### `sentry project delete <org/project>`
2336

2437
Delete a project
@@ -28,6 +41,16 @@ Delete a project
2841
- `-f, --force - Force deletion without confirmation`
2942
- `-n, --dry-run - Validate and show what would be deleted without deleting`
3043

44+
**Examples:**
45+
46+
```bash
47+
# Delete a project (will prompt for confirmation)
48+
sentry project delete my-org/old-project
49+
50+
# Delete without confirmation
51+
sentry project delete my-org/old-project --yes
52+
```
53+
3154
### `sentry project list <org/project>`
3255

3356
List projects

plugins/sentry-cli/skills/sentry-cli/references/setup.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,19 @@ Configure shell integration
5555
- `--no-agent-skills - Skip agent skill installation for AI coding assistants`
5656
- `--quiet - Suppress output (for scripted usage)`
5757

58+
**Examples:**
59+
60+
```bash
61+
# Run full setup (PATH, completions, agent skills)
62+
sentry cli setup
63+
64+
# Skip agent skill installation
65+
sentry cli setup --no-agent-skills
66+
67+
# Skip PATH and completion modifications
68+
sentry cli setup --no-modify-path --no-completions
69+
```
70+
5871
### `sentry cli upgrade <version>`
5972

6073
Update the Sentry CLI to the latest version

0 commit comments

Comments
 (0)