skills/dwsy/context7/SKILL.md
Search GitHub issues, pull requests, and discussions across any repository. Activates when researching external dependencies (whisper.cpp, NAudio), looking for similar bugs, or finding implementation examples.
npx skillsauth add aiskillstore/marketplace context7Install this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Search GitHub repositories for issues, PRs, discussions, and code examples to research solutions and best practices.
| 路径类型 | 说明 | |---------|------| | 使用方式 | 此技能通过 API 调用使用,无需本地脚本执行 | | 调用场景 | 当用户需要搜索 GitHub 仓库时自动激活 | | 输入参数 | 仓库名称 (owner/repo)、搜索关键词、过滤条件 |
owner/repo(如 ggerganov/whisper.cpp)VoiceLite dependencies and related projects:
| Repository | Purpose | When to Search | |------------|---------|----------------| | ggerganov/whisper.cpp | Core transcription engine | Performance optimization, model loading, quantization issues | | naudio/NAudio | Audio recording library | WaveInEvent issues, audio format problems, disposal patterns | | dotnet/wpf | WPF framework | UI threading, XAML binding, Dispatcher issues | | jrsoftware/issrc | Inno Setup installer | Installer configuration, file inclusion, signing | | dotnet/runtime | .NET runtime | Performance issues, GC problems, async/await patterns |
Repository: ggerganov/whisper.cpp
Query: "performance optimization" label:performance
Sort: Most commented
Filter: Created after 2024-01-01
# Look for:
- Quantization discussions (Q8_0, Q4_0)
- Flash attention implementations
- Beam size optimization
- Model loading speed improvements
Repository: naudio/NAudio
Query: "WaveInEvent" label:bug is:closed
Sort: Recently updated
# Look for:
- Disposal patterns (memory leaks)
- Buffer size configurations
- Sample rate issues (16kHz mono)
- Event subscription patterns
Repository: dotnet/wpf
Query: "Dispatcher.Invoke" in:code language:csharp
Filter: Stars >100
# Look for:
- Thread-safe UI updates
- Background worker patterns
- Async dispatcher usage
Step 1: Search issue titles
→ "transcription slow"
Step 2: Add labels
→ "transcription slow" label:performance
Step 3: Check discussions
→ Switch to Discussions tab for detailed solutions
Step 4: Look at closed issues
→ is:closed (solutions often in closed issues)
For bugs:
For features:
# Search for actual code implementation
in:code language:csharp "WaveInEvent"
# Search for configuration examples
in:file filename:.csproj "NAudio"
# Search for specific patterns
in:code "async Task TranscribeAsync"
Query: "Q8_0 quantization" OR "performance improvement"
Repo: ggerganov/whisper.cpp
Labels: performance, optimization
Date: After 2024-01-01
Expected: Quantization benchmarks, speed comparisons, optimization tips
Query: "memory leak" OR "dispose" "WaveInEvent"
Repo: naudio/NAudio
State: Closed (to find fixes)
Sort: Most commented
Expected: Disposal patterns, IDisposable best practices
Query: "files not included" OR "missing from installer"
Repo: jrsoftware/issrc
Labels: bug, question
Expected: Common .iss mistakes, file path issues, git ignore problems
Query: "Process.Kill" OR "zombie process"
Repo: dotnet/runtime
Language: C#
Expected: Proper disposal patterns, timeout handling
# Combine multiple terms
"whisper performance" AND "quantization"
# Exclude terms
"audio recording" NOT "streaming"
# Search specific user
author:ggerganov "optimization"
# Search by date range
created:>=2024-01-01
# Search by reactions
reactions:>10
# Search by comments
comments:>5
# Search in specific locations
in:title "memory leak"
in:body "WaveInEvent"
in:comments "fixed in"
Scenario: VoiceLite transcription is slow with tiny model
Step 1: Search whisper.cpp issues
→ Query: "tiny model slow" label:performance
→ Find: Issue #1234 - "Tiny model slower than expected"
Step 2: Read discussion
→ Solution: Enable flash attention, adjust beam size
→ PR #5678 has implementation
Step 3: Check PR for code changes
→ Command line flag: --flash-attn
→ Configuration: beam_size=1
Step 4: Check if applied to VoiceLite
→ Review PersistentWhisperService.cs whisper command
→ Verify flags are present
Step 5: Test & validate
→ Apply if missing, test performance improvement
is:closed for solved problemsWhen researching VoiceLite issues, search these patterns:
Audio Issues: NAudio + "16kHz" OR "mono" OR "WAV format" Transcription Issues: whisper.cpp + "model loading" OR "timeout" OR "process" Performance Issues: whisper.cpp + "Q8_0" OR "optimization" OR "speed" Installer Issues: Inno Setup + "missing files" OR "not included" Memory Issues: .NET + "memory leak" OR "dispose" OR "GC"
development
Apple Human Interface Guidelines for content display components. Use this skill when the user asks about charts component, collection view, image view, web view, color well, image well, activity view, lockup, data visualization, content display, displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says how should I display charts, what's the best way to show images, should I use a web view, how do I build a grid of items, what component shows media, or how do I present a share sheet. Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.
tools
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
testing
Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.
tools
GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server. This skill covers schema design, resolvers, DataLoader for N+1 prevention, federation for microservices, and client integration with Apollo/urql. Key insight: GraphQL is a contract. The schema is the API documentation. Design it carefully.