File tree Expand file tree Collapse file tree 3 files changed +54
-0
lines changed
plugins/sentry-cli/skills/sentry-cli/references Expand file tree Collapse file tree 3 files changed +54
-0
lines changed Original file line number Diff line number Diff line change @@ -36,13 +36,25 @@ SENTRY_URL=https://sentry.example.com sentry auth login --token YOUR_TOKEN
3636
3737Log out of Sentry
3838
39+ ** Examples:**
40+
41+ ``` bash
42+ sentry auth logout
43+ ```
44+
3945### ` sentry auth refresh `
4046
4147Refresh 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
4860View authentication status
@@ -67,6 +79,12 @@ sentry auth whoami
6779
6880Print the stored authentication token
6981
82+ ** Examples:**
83+
84+ ``` bash
85+ sentry auth token
86+ ```
87+
7088### ` sentry auth whoami `
7189
7290Show the currently authenticated user
Original file line number Diff line number Diff 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
2437Delete 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
3356List projects
Original file line number Diff line number Diff 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
6073Update the Sentry CLI to the latest version
You can’t perform that action at this time.
0 commit comments