Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
3f36c0d
fix(project): add pagination and org/ syntax to project list
BYK Feb 10, 2026
c033189
ci: trigger CI workflow
BYK Feb 10, 2026
9100231
test: add property and model-based tests for pagination and project list
BYK Feb 10, 2026
8f39f3b
fix(test): make createIsolatedDbContext resilient to missing SENTRY_C…
BYK Feb 10, 2026
64e03d8
test: add coverage for displayProjectTable, fetch helpers, and handle…
BYK Feb 10, 2026
6d14fb2
fix(project): optimize auto-detect fetch and remove redundant mapping
BYK Feb 10, 2026
327932e
fix(project): show truncation message in auto-detect fast path and de…
BYK Feb 10, 2026
5ed6cac
fix(project): distinguish platform filter from not-found in project s…
BYK Feb 10, 2026
c16425f
perf(project): use direct getProject lookup instead of listing all pr…
BYK Feb 10, 2026
bef06d4
test: update mocks for findProjectsBySlug using getProject instead of…
BYK Feb 10, 2026
0de91bc
refactor(project): unexport resolveOrgsForAutoDetect and OrgResolution
BYK Feb 10, 2026
351c6ce
fix: correct test helpers for pagination_cursors composite PK and imp…
BYK Feb 10, 2026
4b056d5
fix(project): apply --limit flag in handleProjectSearch
BYK Feb 10, 2026
a25c23f
refactor(api): deduplicate orgScopedRequest by delegating to orgScope…
BYK Feb 10, 2026
770ecad
fix(schema): align TABLE_SCHEMAS column order with DDL and add pagina…
BYK Feb 10, 2026
700d764
refactor: address PR review — standardize context keys, simplify pagi…
BYK Feb 13, 2026
8d06c8a
refactor: support composite PKs in auto-DDL generator
BYK Feb 13, 2026
76b8c09
fix: normalize platform in cursor cache key and improve empty-result …
BYK Feb 13, 2026
bd21310
fix(test): save/restore SENTRY_CONFIG_DIR to prevent cross-file test …
BYK Feb 13, 2026
39cf2a3
fix: include --platform flag in pagination next-page hints
BYK Feb 13, 2026
5bc9dd6
fix: wrap fast-path pagination in error handler and restore env var c…
BYK Feb 13, 2026
1085d5a
Merge remote-tracking branch 'origin/main' into fix/project-list-pagi…
BYK Feb 13, 2026
95d364f
fix: clamp MAX_PAGINATION_PAGES to minimum of 1
BYK Feb 13, 2026
86acc21
Merge remote-tracking branch 'origin/main' into fix/project-list-pagi…
BYK Feb 16, 2026
1d72034
fix(test): update mock to return 404 for single-project endpoint
BYK Feb 16, 2026
a2cb5f8
Merge remote-tracking branch 'origin/main' into fix/project-list-pagi…
BYK Feb 17, 2026
178ba31
revert test/model-based/helpers.ts to main's version
BYK Feb 17, 2026
6c5b301
scope pagination cursors by Sentry host to support multi-instance logins
BYK Feb 17, 2026
4bd38df
include hasMore metadata in auto-detect JSON output
BYK Feb 17, 2026
13d44d1
verify slug match in findProjectsBySlug to prevent ID resolution
BYK Feb 17, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions plugins/sentry-cli/skills/sentry-cli/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,13 +136,14 @@ sentry org view my-org -w

Work with Sentry projects

#### `sentry project list <org>`
#### `sentry project list <target>`

List projects

**Flags:**
- `-n, --limit <value> - Maximum number of projects to list - (default: "30")`
- `--json - Output JSON`
- `-c, --cursor <value> - Pagination cursor (use "last" to continue from previous page)`
- `-p, --platform <value> - Filter by platform (e.g., javascript, python)`

**Examples:**
Expand Down Expand Up @@ -600,13 +601,14 @@ List organizations

List projects

#### `sentry projects <org>`
#### `sentry projects <target>`

List projects

**Flags:**
- `-n, --limit <value> - Maximum number of projects to list - (default: "30")`
- `--json - Output JSON`
- `-c, --cursor <value> - Pagination cursor (use "last" to continue from previous page)`
- `-p, --platform <value> - Filter by platform (e.g., javascript, python)`

### Repos
Expand Down
Loading
Loading