Install
$ agentstack add skill-getsentry-skills-typing-exclusion-worker ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Typing Exclusion Worker
Purpose
Execute one assigned typing batch safely and predictably:
- remove only assigned modules from mypy exclusions,
- fix surfaced typing issues in scope,
- run required checks,
- return a consistent summary for the manager/orchestrator.
Inputs Required
Before starting, confirm these inputs exist in the task prompt:
- worktree/branch name,
- exact module list to remove from exclusion,
- ownership/domain boundary,
- expected validation commands (if customized).
If any are missing, ask for them before editing.
Scope Rules (Hard Constraints)
- Only remove assigned module entries from the mypy exclusion list in
pyproject.toml. - Keep code changes in assigned scope unless a direct dependency is required to pass typing/tests.
- Do not expand to cross-team modules unless explicitly approved by the manager.
- Avoid blanket
# type: ignore; if unavoidable, use narrowignore[code]with a short reason.
Execution Workflow
- Apply exclusion change
- Remove assigned modules from the exclusion override in
pyproject.toml.
- Run mypy on assigned scope
- Prefer targeted paths first for fast feedback.
- Fix errors using explicit typing patterns (
isinstancenarrowing, accurate return types, typed class attrs, relation-safe model access).
- Run tests for touched area
- Execute targeted pytest for modified modules/tests.
- Fix regressions before continuing.
- Run pre-commit on changed files
- Run
pre-commit run --files. - If hooks auto-fix files, rerun until clean.
- Final verification
- Re-run targeted mypy and tests after final edits.
- Ensure no unrelated files were changed.
Python Typing Best Practices
- Prefer precise types over
Any. - Use type narrowing on unions before attribute access.
- Keep method overrides signature-compatible with base classes.
- Annotate class attributes in tests/helpers when inference is weak.
- Use relation objects (
obj.related) when stubs do not expose raw*_idattributes.
Required Output Template
Return this exact structure at the end of each batch:
## Batch Summary
- Branch/worktree: ``
- Ownership/domain: ``
### Modules Removed From Exclusion
- ``
- ``
### Files Changed
- ``
- ``
### Key Typing Fixes
- ``
- ``
### Validation
- `mypy`: ``
- `pre-commit --files`: ``
- `pytest`: ``
### Notes
- Remaining blockers: ``
- Any new ignore entries: ``
Stop Conditions (Escalate to Manager)
Stop and report instead of widening scope when:
- fixes require touching another team/domain,
- exclusion conflicts in
pyproject.tomlcannot be resolved safely, - error volume indicates batch is too large and should be split.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: getsentry
- Source: getsentry/skills
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.