Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
56 changes: 0 additions & 56 deletions .cursor/rules/rule-management.mdc

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
---
description: CI/CD workflow patterns and conventions for sentry-cli
globs: .github/workflows/**/*
alwaysApply: false
---

# CI/CD Workflow Guidelines

## Security: Pin Actions by Commit Hash
Expand All @@ -13,11 +7,11 @@ alwaysApply: false
Example:

```yaml
# ✅ CORRECT - Pinned by hash with version comment
# Correct - Pinned by hash with version comment
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # 5.0.0
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # 4.6.2

# ❌ INCORRECT - Using version tag
# Incorrect - Using version tag
- uses: actions/checkout@v4
- uses: actions/[email protected]
```
Expand Down
22 changes: 17 additions & 5 deletions .cursor/rules/sentry-cli-project.mdc → AGENTS.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
---
description: Core development guidelines and context for sentry-cli
alwaysApply: true
---

# Sentry CLI Development Guidelines

## Project Overview
Expand Down Expand Up @@ -65,4 +60,21 @@ Reference: https://develop.sentry.dev/engineering-practices/commit-messages/
- Test fixtures in `tests/integration/_fixtures/`
- Cross-platform testing via CI matrix

## Code Formatting

**ALWAYS** run `cargo fmt` before committing any Rust code changes to ensure consistent formatting across the codebase.

## Updating These Guidelines

Update AGENTS.md files when you encounter **generally applicable** patterns:
- Development patterns and best practices
- Common pitfalls and architecture decisions
- Workflow improvements and tool configurations

**Do NOT capture**: Task-specific fixes, temporary workarounds, personal preferences.

**Keep AGENTS.md files as concise as possible to minimize token usage.**

---

Remember: This is a production tool used by many developers. Changes should be well-tested, backward-compatible, and follow established patterns.
82 changes: 0 additions & 82 deletions CLAUDE.md

This file was deleted.

1 change: 1 addition & 0 deletions CLAUDE.md
1 change: 1 addition & 0 deletions apple-catalog-parsing/AGENTS.md
6 changes: 0 additions & 6 deletions .cursor/rules/javascript-development.mdc → lib/AGENTS.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
---
description: JavaScript/TypeScript development patterns for sentry-cli npm wrapper
globs: js/**/*,scripts/**/*,package.json,*.js
alwaysApply: false
---

# JavaScript Development Guidelines

## Code Organization
Expand Down
1 change: 1 addition & 0 deletions scripts/AGENTS.md
6 changes: 0 additions & 6 deletions .cursor/rules/rust-development.mdc → src/AGENTS.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
---
description: Rust development patterns and conventions for sentry-cli
globs: *.rs,Cargo.*,.cargo/**/*,src/**/*,apple-catalog-parsing/**/*
alwaysApply: false
---

# Rust Development Guidelines

## Code Organization
Expand Down