소스 정보
- 저장소
- TheBushidoCollective/han
- 최근 소스 활동
- 2026년 2월 11일 17:47
- 감지된 SKILL.md 언어
- 영어
- 스타
- 189
- 포크
- 20
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/TheBushidoCollective/han --skill query-events명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Review current branch changes against REVIEW.md guidelines
Use when kotlin coroutines for structured concurrency including suspend functions, coroutine builders, Flow, channels, and patterns for building efficient asynchronous code with cancellation and exception handling.
Use when building modular Angular applications requiring dependency injection with providers, injectors, and services.
SOC 직업 분류 기준
| name | query-events |
| user-invocable | false |
| description | Run custom queries on Sentry events and issues with advanced filtering |
sentry:query-events - Run custom queries on Sentry events and issues with advanced filtering
/query-events [arguments]
Run custom queries on Sentry events and issues using advanced filtering to find specific errors, analyze patterns, or extract insights.
This command provides flexible querying capabilities for Sentry data with support for filters on environment, release, user, tags, and more.
/query-events [project-name] [query-expression]
User: /query-events api-service Find all errors in production for user emails ending in @enterprise.com in the last 7 days
Claude: Running custom query on api-service...
## Query Results
**Query:** Errors in production environment for enterprise users (last 7 days)
**Filters Applied:**
- Environment: production
- User email: *@enterprise.com
- Event type: error
- Time range: Last 7 days
- Status: unresolved
### Results: 23 matching issues, 456 total events
### Top Issues for Enterprise Users
1. **API Rate Limit Exceeded**
- Events: 189
- Users: 12
- Pattern: Heavy API usage from automated systems
- Tags: tier=enterprise, api_version=v2
2. **Database Connection Timeout**
- Events: 134
- Users: 8
- Pattern: Concurrent query limit reached
- Tags: tier=enterprise, db_pool=primary
3. **Insufficient Storage Quota**
- Events: 78
- Users: 5
- Pattern: Enterprise plans hitting 10GB limit
- Tags: tier=enterprise, feature=uploads
4. **Permission Denied: Admin Action**
- Events: 34
- Users: 4
- Pattern: Users attempting cross-org actions
- Tags: tier=enterprise, action=admin
5. **GraphQL Query Complexity Exceeded**
- Events: 21
- Users: 3
- Pattern: Complex nested queries
- Tags: tier=enterprise, api=graphql
### Insights
- Enterprise users hitting different limits than standard users
- Rate limiting and connection pooling need enterprise-tier scaling
- Storage quotas may need adjustment for enterprise plans
### Affected Users
- user@bigcorp.com (89 events)
- admin@megacorp.com (67 events)
- api@enterprise-client.com (145 events)
- integration@partner-enterprise.com (98 events)
### Recommendations
1. **Immediate**: Increase rate limits for enterprise tier
2. **High**: Scale database connection pool for enterprise workloads
3. **Medium**: Review storage quotas and upgrade paths
4. **Low**: Document GraphQL query complexity limits
Would you like me to investigate any specific issue or user in detail?
# Find errors in specific environment
environment:production is:unresolved
# Find issues affecting a specific user
user.email:user@example.com
# Find events from a specific release
release:v2.3.0
# Find slow transactions
event.type:transaction transaction.duration:>2000
# Combine multiple filters
environment:production release:v2.* user.id:12345 level:error
# Find issues with specific tags
tag.payment_method:stripe tag.status:failed
project-name (optional): Sentry project slugquery-expression (optional): Sentry query syntax or natural language description/investigate-errors: Pre-built error investigation workflow/analyze-performance: Performance-specific queries/check-releases: Release-filtered queries