sentry-cli
Skills for using the Sentry CLI to interact with Sentry from the command line
Open source Repository Open in the app JSON README (API)
About
Skills for using the Sentry CLI to interact with Sentry from the command line
Details
- Kind
- Plugins
- Topic
- Cloud & DevOps
- Publisher
- getsentry
- Origin
- marketplace
- Category
- ferramentas
- Stars
- 119
- Forks
- 14
- Open pull requests
- 59
- Last push
- 2026-09-09T23:55:20Z
- Repository state
- ativo
- Language
- TypeScript
- License
- NOASSERTION
- Added
- 2026-08-30 01:48:58
- Updated
- 2026-09-11 22:03:19
- Origin id
getsentry/cli/sentry-cli
README
# Sentry Toolkit (pre-shape) This repository is being reshaped into a pnpm-workspace monorepo ahead of merging the Sentry CLI and Sentry MCP server into a single `getsentry/toolkit` monorepo. ## Workspace layout - [`packages/cli/`](./packages/cli) — the Sentry CLI (npm package `sentry`, binary `sentry`). See [packages/cli/README.md](./packages/cli/README.md). - [`apps/cli-docs/`](./apps/cli-docs) — the CLI documentation site (Astro + Starlight, published to `cli.sentry.dev`). ## Development This is a [pnpm workspace](https://pnpm.io/workspaces). Common tasks are exposed as delegating scripts at the root and forwarded to the relevant package: ```sh pnpm install # install all workspace packages pnpm run build # build the CLI package pnpm run typecheck # typecheck the CLI package pnpm run lint # lint pnpm run test # run the CLI unit tests ``` To work directly within a package, use pnpm filters, e.g. `pnpm --filter sentry run <script>` or `pnpm --filter sentry-cli-docs run dev`.