원클릭으로
search
Expert web research with advanced techniques. Use for deep research or fact verification.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Expert web research with advanced techniques. Use for deep research or fact verification.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Kimi WebBridge lets AI control the user's real browser — navigate, click, type, read, screenshot, and interact with any website using the user's actual login sessions. Use this skill whenever the user wants to interact with websites, automate browser tasks, scrape web content, or perform any action requiring a real browser. Also use when the user mentions "browser", "webpage", "open URL", "screenshot", or asks to read/interact with any website. Use even for simple-sounding browser requests — the daemon handles all complexity.
Record demo GIFs/MP4s of agent TUI sessions (Claude Code, Codex CLI, other agent CLIs), synchronized via a Stop-hook sentinel so the recording knows exactly when each response finishes. Two modes - scripted (VHS tape, repeatable) and live/adaptive (tmux + asciinema, where the outer Claude reads each inner response and decides the next prompt). Use when the user wants to record, capture, or make a demo/GIF/video of a Claude Code or Codex session, create a .tape file, drive a nested agent session interactively, or asks about VHS/asciinema recording of an agent CLI.
Put a website behind a Cloudflare Access (Zero Trust) login gate, or remove one, entirely from the CLI — no dashboard GUI. Use when the user wants to password/email-protect a hostname, gate a Cloudflare Pages or Workers site, restrict a site to specific emails, set up Zero Trust Access, or asks about "cf-gate". Manages Access applications and allow-email policies via the Cloudflare API using a token in the skill's .env. Note: wrangler does NOT manage Access — this uses the Cloudflare REST API directly.
Defer execution of a slash-command or prompt until a timer elapses. Starts a background polling timer that prints "TIMER DONE" on stdout, then executes the deferred prompt.
Generate an image via Codex CLI (OpenAI gpt-image-1) and save to a local path. Use when user asks to create/draw/generate an image AND save it (e.g. "draw X, save to images/y.png", "用 codex 生圖"). Requires `codex login` + `$OPENAI_API_KEY`.
DeepSeek client via the private chat.deepseek.com API (browser-exported userToken), not the official platform.deepseek.com API. Use for personal webgui automation, `x-ds-pow-response` / DeepSeekHashV1 POW solving, or SSE THINK/TOOL_SEARCH stream parsing.
| name | search |
| description | Expert web research with advanced techniques. Use for deep research or fact verification. |
Find and synthesize information effectively.
# Exact phrase
"error handling best practices"
# Exclude terms
python tutorial -beginner
# Site-specific
site:github.com react hooks
# File type
filetype:pdf security audit
# Date range (use WebSearch date filtering)
react 18 features 2024
# WebSearch with domain filtering
WebSearch(
query="kubernetes best practices",
allowed_domains=["kubernetes.io", "cloud.google.com", "docs.aws.amazon.com"],
)
# Exclude unreliable sources
WebSearch(
query="health benefits of X",
blocked_domains=["pinterest.com", "quora.com"],
)
# Broad search first
queries = [
"main topic overview",
"main topic best practices",
"main topic common problems",
]
# Follow up on promising results
for result in initial_results:
if is_authoritative(result):
content = WebFetch(url=result.url, prompt="Extract key findings")
facts.append(content)
## Research Summary: [Topic]
### Key Findings
1. **Finding 1** - [Source](url)
- Supporting detail
- Supporting detail
2. **Finding 2** - [Source](url)
- Supporting detail
### Consensus
- Points that multiple sources agree on
### Contradictions
- Areas where sources disagree
### Gaps
- Questions that couldn't be answered
### Sources
- [Title](url) - Credibility: High/Medium/Low
| Indicator | High Credibility | Low Credibility |
|---|---|---|
| Domain | .gov, .edu, major publications | Unknown, user-generated |
| Author | Named expert, organization | Anonymous, unclear |
| Date | Recent, regularly updated | Outdated, no date |
| Citations | Links to sources | No references |
| Bias | Balanced, factual | Promotional, extreme |
Input: "Research best auth solutions for SaaS" Action: Search auth providers, compare features, check reviews, summarize
Input: "Verify this claim about performance" Action: Find benchmarks, check methodology, cross-reference results