بنقرة واحدة
internet-search
Tool-agnostic search — query construction, tool selection, source trust hierarchy.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Tool-agnostic search — query construction, tool selection, source trust hierarchy.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Auto-continue through todos with idle detection and safety gates. Use for multi-step orchestration.
Level 2 — Pantheon-native context compression with priority scoring, semantic summarization, downstream-aware compression, budget allocation, and cross-references
Automated visual review pipeline — Playwright screenshots, self-analysis, fix loop, escalation. Used by Aphrodite for UI verification.
Multi-agent orchestration with model routing, category delegation, and sprint management. Use for coordinating Pantheon agents.
MCP security hardening — credential leakage prevention, input sanitization, and tool access control. Use for reviewing agent MCP configurations.
Load prompts from external files with path expansion. Use for version-controlled prompts outside config.
| name | internet-search |
| description | Tool-agnostic search — query construction, tool selection, source trust hierarchy. |
| context | fork |
| globs | ["**/*.md"] |
| alwaysApply | false |
Three search tools are available. Choose by task type:
| Task | Primary Tool | Why | Fallback |
|---|---|---|---|
| Library/framework docs, API reference, version migration | context7 | Official docs + code examples, version-aware | webfetch known docs URL |
| Broad web search, technical Q&A, current info, news | websearch | Semantic search across indexed web, live crawl option | webfetch specific result URLs |
| Known URL (docs page, GitHub issue, blog post, changelog) | webfetch | Direct fetch of a specific page, returns markdown | — |
Parallel rule: context7 + websearch can run simultaneously — they are independent tools.
❌ "Python async"
✅ "FastAPI background tasks SQLAlchemy async session 2024"
❌ "Docker error"
✅ "Docker multi-stage build COPY --from permission denied non-root"
Append the target version or year to scope results:
"SQLAlchemy 2.0 async session pattern"
"Next.js 15 server components migration"
"React 19 use() hook"
# Framework/library — include name + key concept
"FastAPI dependency injection lifespan"
# Bug/error — include exact error message + language/framework
"TypeError: 'NoneType' object is not callable FastAPI"
# Comparison — make explicit
"Redis vs Valkey 2025 performance comparison"
Always escalate from the highest trust tier before falling back:
| Tier | Sources | Use for |
|---|---|---|
| T1 — Authoritative | Official vendor docs, RFC/specs, peer-reviewed papers, GitHub READMEs | Definitive answers, API contracts, algorithm correctness |
| T2 — High-signal | Stack Overflow (accepted/high-vote), GitHub Issues/Discussions, official changelogs | Real-world patterns, known bugs, version behaviors |
| T3 — Useful, verify | Hacker News, Reddit (engineering subs), well-cited blogs | Current opinions, ecosystem trends, practical tips |
| T4 — Last resort | Random tutorials, Medium articles, LLM-generated content | Background only — always cross-check with T1/T2 |
Never cite T3/T4 as the sole source for a technical decision. Always pair with a T1 primary source.
STEP 1 — PARALLEL (T1 sources):
├── context7 (library docs — structured, version-aware)
└── websearch (broad web + community)
STEP 2 — webfetch (T1/T2 specific URLs):
├── Known docs page or GitHub README
├── Stack Overflow accepted answer
└── GitHub issue / discussion
STEP 3 — ONLY IF NEEDED (T3):
└── websearch with site:reddit.com or site:news.ycombinator.com
→ Synthesize after each step; stop when enough evidence gathered.
For known URLs, use webfetch directly. For search results that return URLs, webfetch the most promising ones for full content.
Always return structured findings:
## Research: {TOPIC}
**Answer**: [Direct answer, 1-2 sentences]
**Confidence**: High / Medium / Low
**Sources**:
| URL | Tier | Key Takeaway |
|-----|------|-------------|
| [official docs](url) | T1 | Confirms pattern X |
| [SO answer](url) | T2 | 342 votes — accepted fix |
| [GitHub issue #123](url) | T2 | Fixed in v2.1.0 |
**Caveats**: [Version-specific warnings, conflicting evidence, stale info]
Before finalizing, verify: