スキル一覧に戻る
Row0902

perform-research

by Row0902

0🍴 0📅 2026年1月21日
GitHubで見るManusで実行

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":

  1. 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.
  2. Verify Versions:
    • Ensure the docs match the project's Python version (3.10+) and library versions.
  3. 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() or exec().
    • NO subprocess.run(shell=True) without extreme sanitization (prefer shell=False).
    • NO hardcoded credentials.
    • NO unsafe deserialization (pickle.load on untrusted data).
  • Modern Python (>3.10):
    • Use match/case where applicable?
    • Use pathlib instead of os.path?
    • Use strict Type Hints (list[str] instead of List[str])?
    • Use dataclasses or attrs instead of raw dicts?

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 CodeYour Output (OOP)
def connect(user, pass): ...class AuthStrategy(ABC): ...
data = {'a': 1}@dataclass class ConfigModel: ...
global_variableSingletonMeta or Reference Injection

4. Mandatory Refactoring of Findings

If you find a solution on StackOverflow/GitHub that works but is "script-like":

  1. Wrap it in a Class.
  2. Type all inputs/outputs.
  3. Error Handling: Replace bare except: with specific except ErrorType:.
  4. Logging: Replace print() with logger.info().

スコア

総合スコア

35/100

リポジトリの品質指標に基づく評価

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

レビュー

💬

レビュー機能は近日公開予定です