Web Search logo

Web Search

Community
bear2u
web-search

DuckDuckGo를 사용한 웹 검색. 텍스트, 뉴스, 이미지 검색을 지원. 빌트인 WebSearch가 제한적이거나, 뉴스/이미지 검색, 지역/기간 필터가 필요할 때 사용. "검색해줘", "찾아줘", "search", "뉴스 검색", "이미지 검색" 등의 요청 시 활성화.

Overview

Publisherbear2u
Repositorymy-skills
Skill nameweb-search
Stars
932
Forks
210
Bundled files
1
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 1 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by bear2u on GitHub. Read the source before you install it.

Installation

Install the Web Search AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/bear2u/my-skills.git /tmp/my-skills
mkdir -p .claude/skills
cp -r /tmp/my-skills/skills/web-search .claude/skills/web-search
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Web Search in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Web Search on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Web Search is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

DuckDuckGo Web Search

DuckDuckGo 검색 엔진을 활용한 텍스트, 뉴스, 이미지 검색 스킬.

When to Use

다음 상황에서 사용:

  • 빌트인 WebSearch를 사용할 수 없을 때 (US 외 지역)
  • 뉴스 전용 검색이 필요할 때
  • 이미지 URL을 검색해야 할 때
  • 검색 결과를 JSON으로 저장하거나 프로그래밍적으로 처리해야 할 때
  • 시간 범위(일/주/월/년)를 세밀하게 지정해야 할 때
  • 특정 지역(한국, 일본 등) 기준 검색 결과가 필요할 때

빌트인 WebSearch를 우선 사용하는 경우:

  • US 지역의 단순 텍스트 검색
  • 빠른 사실 확인

Core Workflow

Step 1: 검색 유형 판별

사용자 요청에서 검색 유형 파악:

  • 텍스트 검색 (기본): 일반적인 웹 검색
  • 뉴스 검색: "뉴스", "최근 소식", "news" 키워드 포함
  • 이미지 검색: "이미지", "사진", "image", "picture" 키워드 포함

Step 2: 스크립트 실행

bash
python3 ~/.claude/skills/web-search/scripts/search.py -q "검색어" -t text -n 5

Step 3: 결과 정리

JSON 출력을 사용자에게 읽기 좋은 형태로 정리하여 전달.

Parameters

파라미터필수기본값설명
-qYes-검색 키워드
-tNotexttext, news, images
-nNo5최대 결과 수
-rNowt-wt지역 코드
-sNomoderateSafeSearch: on, moderate, off
-pNoNone기간: d(일), w(주), m(월), y(년)

주요 지역 코드

  • 전세계: wt-wt | 한국: kr-kr | 미국: us-en | 일본: jp-jp | 영국: uk-en

Examples

텍스트 검색

bash
python3 ~/.claude/skills/web-search/scripts/search.py -q "Claude Code Anthropic" -t text -n 5

한국 뉴스 검색 (최근 1주)

bash
python3 ~/.claude/skills/web-search/scripts/search.py -q "AI 인공지능" -t news -n 10 -r kr-kr -p w

이미지 검색

bash
python3 ~/.claude/skills/web-search/scripts/search.py -q "modern web design" -t images -n 5

결과를 파일로 저장

bash
python3 ~/.claude/skills/web-search/scripts/search.py -q "React 19" -t text -n 20 > results.json

검색 연산자

query에 포함하여 사용:

  • site:example.com - 특정 사이트 내 검색
  • filetype:pdf - 특정 파일 유형
  • "exact phrase" - 정확한 구문
  • -exclude - 특정 단어 제외

Error Handling

  • Rate Limit: 잠시 후 재시도하거나 결과 수를 줄임
  • Timeout: 네트워크 확인 후 재시도
  • 패키지 미설치: 스크립트가 자동 설치 시도. 실패 시 pip install -U ddgs 수동 실행

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Web Search AI skill do?

DuckDuckGo를 사용한 웹 검색. 텍스트, 뉴스, 이미지 검색을 지원. 빌트인 WebSearch가 제한적이거나, 뉴스/이미지 검색, 지역/기간 필터가 필요할 때 사용. "검색해줘", "찾아줘", "search", "뉴스 검색", "이미지 검색" 등의 요청 시 활성화.

Why use Web Search on TypingMind?

Because you install it once and use it with any model. Web Search is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Web Search in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/bear2u/my-skills/tree/master/skills/web-search. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Web Search?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Web Search?

As many as you like. As long as a model supports skills, you can use Web Search with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Web Search AI skill free?

It is published on GitHub by bear2u. Check the repository for licensing terms. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇