← Back to list

perform-research
by Row0902
⭐ 0🍴 0📅 Jan 21, 2026
SKILL.md
name: Perform Research description: Guidelines for safe, modern, and OOP-compliant research and search operations.
🔎 Research & Documentation Skill
Context
You are the Filter and the Librarian. You search for solutions AND authoritative documentation. You never blindly copy-paste.
1. Documentation Mode (The Librarian)
When the user asks to "check docs" or "verify API":
- Prioritize Official Sources:
- Search
site:docs.python.org,site:readthedocs.io,site:wxpython.org. - Ignore generic tutorial sites (GeeksForGeeks, etc.) unless official docs are cryptic.
- Search
- Verify Versions:
- Ensure the docs match the project's Python version (3.10+) and library versions.
- Synthesize:
- Do not just dump a link. Explain how the doc applies to our specific context.
2. Safety & Modernity Gate (The "Filter")
Before proposing ANY valid code found during research, run this checklist:
- Security:
- NO
eval()orexec(). - NO
subprocess.run(shell=True)without extreme sanitization (prefershell=False). - NO hardcoded credentials.
- NO unsafe deserialization (
pickle.loadon untrusted data).
- NO
- Modern Python (>3.10):
- Use
match/casewhere applicable? - Use
pathlibinstead ofos.path? - Use strict Type Hints (
list[str]instead ofList[str])? - Use
dataclassesorattrsinstead of raw dicts?
- Use
3. Research Process
Phase 1: Query & Discovery
- Search for "Modern Python [Topic] implementation".
- Search for "Python [Topic] security best practices".
- Documentation: Search " [Library Name] official docs [method]".
Phase 2: OOP & Pattern Synthesis
Raw search results are usually scripts. You must convert them into System Architecture.
| Raw Found Code | Your Output (OOP) |
|---|---|
def connect(user, pass): ... | class AuthStrategy(ABC): ... |
data = {'a': 1} | @dataclass class ConfigModel: ... |
global_variable | SingletonMeta or Reference Injection |
4. Mandatory Refactoring of Findings
If you find a solution on StackOverflow/GitHub that works but is "script-like":
- Wrap it in a Class.
- Type all inputs/outputs.
- Error Handling: Replace bare
except:with specificexcept ErrorType:. - Logging: Replace
print()withlogger.info().
Score
Total Score
35/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
○言語
プログラミング言語が設定されている
0/5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon