Skip to content
Merged
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
4 changes: 4 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ license: LICENSE
Instructions for the agent.
```

## Skill Design Guidelines

When writing skills that include Python scripts, always instruct the agent to use `uv run <script>` instead of `python <script>` or `python3 <script>`.

## References

- [Agent Skills Spec](https://agentskills.io/specification)
Expand Down
4 changes: 2 additions & 2 deletions plugins/sentry-skills/skills/iterate-pr/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Continuously iterate on the current branch until all CI checks pass and review f
Fetches CI check status and extracts failure snippets from logs.

```bash
python scripts/fetch_pr_checks.py [--pr NUMBER]
uv run scripts/fetch_pr_checks.py [--pr NUMBER]
```

Returns JSON:
Expand All @@ -36,7 +36,7 @@ Returns JSON:
Fetches and categorizes PR review feedback using the [LOGAF scale](https://develop.sentry.dev/engineering-practices/code-review/#logaf-scale).

```bash
python scripts/fetch_pr_feedback.py [--pr NUMBER]
uv run scripts/fetch_pr_feedback.py [--pr NUMBER]
```

Returns JSON with feedback categorized as:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def main():
"name": check.get("name", "unknown"),
"status": check.get("bucket", check.get("state", "unknown")),
"link": check.get("link", ""),
"workflow": check.get("workflow", {}).get("name", ""),
"workflow": check.get("workflow", ""),
}

# For failures, try to get log snippet
Expand Down