# Ghost Search

> 👻 Ghost Search Skill

- Skill: `moeabdelaziz007/ghost-search` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add moeabdelaziz007/ghost-search`
- Raw SKILL.md: https://api.skillmd.com/api/skills/moeabdelaziz007/ghost-search/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: Moeabdelaziz007 (https://skillmd.com/u/moeabdelaziz007)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/moeabdelaziz007/ghost-search

---

# 👻 Ghost Search Skill

## Overview

A **Zero-Config** web search superpower. No API keys, no `.env` changes, no manual setup.

## Capabilities

| Function | Description |
| :--- | :--- |
| `search(query)` | Real-time web search via DuckDuckGo. |
| `news_search(query)` | Recent news articles from DuckDuckGo News. |

## Usage

```python
from skills.ghost_search.tool import search, news_search

# Web Search
results = search("Python best practices 2025", max_results=5)

# News Search
news = news_search("AI agents", max_results=3)
```

## Requirements

- `duckduckgo-search` (auto-installed via `requirements.txt`)

## Why Zero-Config?

DuckDuckGo provides a free, anonymous search API that requires no authentication.

