Skip to content

Commit 2ac5c95

Browse files
committed
Rename release to Zero-API-Key Web Search
1 parent 5672549 commit 2ac5c95

35 files changed

Lines changed: 172 additions & 161 deletions

File tree

.claude-plugin/SKILL.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: zero-api-key-web-search
33
description: >
44
Claude Code skill for source-backed web search, page reading, and evidence-aware claim checking.
55
Designed to reduce hallucination risk by surfacing corroborating and conflicting sources.
6-
version: "16.0.0"
6+
version: "18.0.0"
77
user-invocable: true
88
allowed-tools: "Bash"
99
hooks:
@@ -12,7 +12,7 @@ hooks:
1212
- type: command
1313
command: |
1414
if echo "$CLAUDE_USER_PROMPT" | grep -qiE 'search|find|lookup|what is|who is|when did|where is|how many|latest|recent|最新|搜索|查询|查找'; then
15-
echo '[zero-api-key-web-search] Factual query detected. Consider using search-web, browse-page, or verify-claim.'
15+
echo '[zero-api-key-web-search] Factual query detected. Consider using zero-search, zero-browse, or zero-verify.'
1616
fi
1717
---
1818

@@ -29,21 +29,21 @@ pip install zero-api-key-web-search
2929
## Core Commands
3030

3131
```bash
32-
search-web "latest Python release" --type news --timelimit w
33-
verify-claim "Python 3.13 is the latest stable release" --json
34-
browse-page "https://docs.python.org/3/whatsnew/"
32+
zero-search "latest Python release" --type news --timelimit w
33+
zero-verify "Python 3.13 is the latest stable release" --json
34+
zero-browse "https://docs.python.org/3/whatsnew/"
3535
```
3636

3737
## Guidance
3838

39-
- Use `search-web` before answering factual or recent questions.
40-
- Use `browse-page` when snippets are not enough to justify a claim.
41-
- Use `verify-claim` when the user explicitly asks whether a claim looks supported.
39+
- Use `zero-search` before answering factual or recent questions.
40+
- Use `zero-browse` when snippets are not enough to justify a claim.
41+
- Use `zero-verify` when the user explicitly asks whether a claim looks supported.
4242
- If support and conflict both appear, present the disagreement instead of pretending certainty.
4343

4444
## Limits
4545

46-
- `verify-claim` is heuristic and evidence-aware, not a proof engine.
46+
- `zero-verify` is heuristic and evidence-aware, not a proof engine.
4747
- The default provider path is `ddgs`.
4848
- TLS verification is on by default; insecure mode is opt-in only.
4949

.claude/skills/zero-api-key-web-search/SKILL.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: zero-api-key-web-search
33
description: >
44
Claude Code-compatible skill for source-backed web search, page reading, and evidence-aware claim checking.
55
Use it when an answer depends on current facts, live sources, or explicit support/conflict handling.
6-
version: "16.0.0"
6+
version: "18.0.0"
77
---
88

99
# Zero-API-Key Web Search for Claude Code
@@ -19,10 +19,10 @@ pip install zero-api-key-web-search
1919
## Core Commands
2020

2121
```bash
22-
search-web "latest Python release" --type news --timelimit w
23-
browse-page "https://docs.python.org/3/whatsnew/"
24-
verify-claim "Python 3.13 is the latest stable release" --deep --max-pages 2 --json
25-
evidence-report "Python 3.13 stable release" --claim "Python 3.13 is the latest stable release" --deep --json
22+
zero-search "latest Python release" --type news --timelimit w
23+
zero-browse "https://docs.python.org/3/whatsnew/"
24+
zero-verify "Python 3.13 is the latest stable release" --deep --max-pages 2 --json
25+
zero-report "Python 3.13 stable release" --claim "Python 3.13 is the latest stable release" --deep --json
2626
```
2727

2828
## When to Use
@@ -34,15 +34,15 @@ evidence-report "Python 3.13 stable release" --claim "Python 3.13 is the latest
3434

3535
## Guidance
3636

37-
- Start with `search-web` for live facts and recent changes.
38-
- Use `browse-page` when snippets are too thin to justify an answer.
39-
- Use `verify-claim` for support/conflict classification.
40-
- Use `evidence-report` when you want one compact output with verdict, citations, and next steps.
37+
- Start with `zero-search` for live facts and recent changes.
38+
- Use `zero-browse` when snippets are too thin to justify an answer.
39+
- Use `zero-verify` for support/conflict classification.
40+
- Use `zero-report` when you want one compact output with verdict, citations, and next steps.
4141
- Prefer the free `ddgs + self-hosted searxng` path for stronger provider diversity.
4242

4343
## Limits
4444

45-
- `verify-claim` is heuristic and evidence-aware, not a proof engine.
45+
- `zero-verify` is heuristic and evidence-aware, not a proof engine.
4646
- The default path still starts with `ddgs`.
4747
- Deep verification is stronger than snippets alone, but still not full-document reasoning.
4848

.codex/SKILL.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: zero-api-key-web-search
33
description: >
44
Codex-compatible skill for source-backed web search, page reading, and evidence-aware claim checking.
55
Use it to verify factual answers with live results and explicit source handling.
6-
version: "16.0.0"
6+
version: "18.0.0"
77
---
88

99
# Zero-API-Key Web Search for Codex
@@ -19,16 +19,16 @@ pip install zero-api-key-web-search
1919
## Commands
2020

2121
```bash
22-
search-web "latest Python release" --type news --timelimit w
23-
verify-claim "Python 3.13 is the latest stable release" --json
24-
browse-page "https://docs.python.org/3/whatsnew/"
22+
zero-search "latest Python release" --type news --timelimit w
23+
zero-verify "Python 3.13 is the latest stable release" --json
24+
zero-browse "https://docs.python.org/3/whatsnew/"
2525
```
2626

2727
## Guidance
2828

2929
- Search before answering factual or time-sensitive questions.
3030
- Browse the page when snippets are too thin.
31-
- Treat `verify-claim` as an evidence summary, not a proof certificate.
31+
- Treat `zero-verify` as an evidence summary, not a proof certificate.
3232
- Surface conflicts when they appear.
3333

3434
## License

.continue/skills/zero-api-key-web-search/SKILL.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
name: zero-api-key-web-search
33
description: >
4-
Cross-Validated Web Search for AI agents.
4+
Zero-API-Key Web Search for AI agents.
55
Use multi-source search, confidence scoring, and citations for factual queries.
6-
version: "16.0.0"
6+
version: "18.0.0"
77
---
88

99
# Zero-API-Key Web Search for Continue
@@ -19,11 +19,11 @@ pip install zero-api-key-web-search
1919
## Commands
2020

2121
```bash
22-
search-web "What is the population of Tokyo?"
23-
search-web "OpenAI GPT-5 release date" --type news --timelimit w
24-
search-web "neural network architecture diagram" --type images
25-
search-web "人工智能最新进展" --region zh-cn
26-
browse-page "https://arxiv.org/abs/2303.08774"
22+
zero-search "What is the population of Tokyo?"
23+
zero-search "OpenAI GPT-5 release date" --type news --timelimit w
24+
zero-search "neural network architecture diagram" --type images
25+
zero-search "人工智能最新进展" --region zh-cn
26+
zero-browse "https://arxiv.org/abs/2303.08774"
2727
```
2828

2929
## When to Use

.cursor/rules/zero-api-key-web-search.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Zero-API-Key Web Search Rule
22

3-
When answering factual questions, always prefer cross-validated web search over single-source or internal knowledge.
3+
When answering factual questions, prefer Zero-API-Key Web Search over single-source or internal knowledge.
44

55
## Installation
66

@@ -10,7 +10,7 @@ pip install zero-api-key-web-search
1010

1111
## Trigger Conditions
1212

13-
Use cross-validated search when:
13+
Use Zero-API-Key Web Search when:
1414
- Factual questions about events, people, dates, statistics
1515
- Questions about recent events (< 1 year)
1616
- Questions requiring verification
@@ -20,23 +20,23 @@ Use cross-validated search when:
2020
## Commands
2121

2222
```bash
23-
# Basic search (cross-validated, 3+ sources)
24-
search-web "What is the population of Tokyo?"
23+
# Basic search with evidence-oriented results
24+
zero-search "What is the population of Tokyo?"
2525

2626
# News search with time filter
27-
search-web "OpenAI GPT-5 release date" --type news --timelimit w
27+
zero-search "OpenAI GPT-5 release date" --type news --timelimit w
2828

2929
# Images (verified sources)
30-
search-web "neural network architecture diagram" --type images
30+
zero-search "neural network architecture diagram" --type images
3131

3232
# Academic sources
33-
search-web "transformer attention mechanism" --type books
33+
zero-search "transformer attention mechanism" --type books
3434

3535
# Region-specific (Chinese, Japanese, etc.)
36-
search-web "人工智能最新进展" --region zh-cn
36+
zero-search "人工智能最新进展" --region zh-cn
3737

3838
# JSON output for programmatic use
39-
search-web "quantum computing" --json
39+
zero-search "quantum computing" --json
4040
```
4141

4242
## Confidence Levels
@@ -59,7 +59,7 @@ Is it creative/hypothetical?
5959
NO ▼
6060
Does it involve facts, events, versions, or data?
6161
YES ▼
62-
Run: search-web "<query>" [--type news if recent]
62+
Run: zero-search "<query>" [--type news if recent]
6363
6464
6565
What is the confidence score?
@@ -92,7 +92,7 @@ For Cursor with MCP support:
9292
{
9393
"mcpServers": {
9494
"free-web-search": {
95-
"command": "zero-api-key-web-search-mcp",
95+
"command": "zero-mcp",
9696
"args": []
9797
}
9898
}
@@ -104,11 +104,11 @@ For Cursor with MCP support:
104104
```
105105
User: What's the latest version of React?
106106
107-
Assistant: Let me search with cross-validation...
107+
Assistant: Let me verify that with live sources...
108108
109-
$ search-web "latest React version" --type news
109+
$ zero-search "latest React version" --type news
110110
111-
Based on cross-validated sources:
111+
Based on source-backed evidence:
112112
- ✅ React 19.0 is the latest stable release (December 2024)
113113
- Sources: react.dev, npm, major tech blogs (4 sources agree)
114-
```
114+
```

.gemini/SKILL.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
---
2-
name: cross-validated-search
2+
name: zero-api-key-web-search
33
description: >
44
Gemini-compatible skill for source-backed web search, page reading, and evidence-aware claim checking.
55
Designed to reduce hallucination risk with live search results and explicit source handling.
6-
version: "16.0.0"
6+
version: "18.0.0"
77
user-invocable: true
88
---
99

10-
# Cross-Validated Search for Gemini CLI
10+
# Zero-API-Key Web Search for Gemini CLI
1111

1212
Use this skill when Gemini needs current information, supporting sources, or a quick support/conflict read on a factual claim.
1313

1414
## Install
1515

1616
```bash
17-
pip install cross-validated-search
17+
pip install zero-api-key-web-search
1818
```
1919

2020
## Core Commands
2121

2222
```bash
23-
search-web "latest Python release" --type news --timelimit w
24-
verify-claim "Python 3.13 is the latest stable release" --json
25-
browse-page "https://docs.python.org/3/whatsnew/"
23+
zero-search "latest Python release" --type news --timelimit w
24+
zero-verify "Python 3.13 is the latest stable release" --json
25+
zero-browse "https://docs.python.org/3/whatsnew/"
2626
```
2727

2828
## When to Use
@@ -34,7 +34,7 @@ browse-page "https://docs.python.org/3/whatsnew/"
3434

3535
## Limits
3636

37-
- `verify-claim` is a heuristic first pass, not a fact-level proof engine.
37+
- `zero-verify` is a heuristic first pass, not a fact-level proof engine.
3838
- The default provider path is `ddgs`.
3939
- Conflicts are surfaced, not automatically resolved.
4040

.github/copilot/instructions.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,21 @@ pip install zero-api-key-web-search
1111
## Commands
1212

1313
```bash
14-
search-web "latest Python release" --type news --timelimit w
15-
verify-claim "Python 3.13 is the latest stable release" --json
16-
browse-page "https://docs.python.org/3/whatsnew/"
14+
zero-search "latest Python release" --type news --timelimit w
15+
zero-verify "Python 3.13 is the latest stable release" --json
16+
zero-browse "https://docs.python.org/3/whatsnew/"
1717
```
1818

1919
## Guidance
2020

2121
- Search before answering factual or recent questions.
22-
- Use `browse-page` when snippets are too thin.
23-
- Use `verify-claim` for support/conflict classification.
22+
- Use `zero-browse` when snippets are too thin.
23+
- Use `zero-verify` for support/conflict classification.
2424
- Cite URLs and keep uncertainty visible.
2525

2626
## Limits
2727

28-
- `verify-claim` is heuristic and evidence-aware.
28+
- `zero-verify` is heuristic and evidence-aware.
2929
- The default provider path is `ddgs`.
3030
- Conflicts are surfaced, not automatically resolved.
3131

.kiro/steering/zero-api-key-web-search.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Zero-API-Key Web Search
22

3-
Use cross-validated web search when you need accurate, verified information.
3+
Use Zero-API-Key Web Search when you need accurate, verified information.
44

55
## Installation
66

@@ -12,16 +12,16 @@ pip install zero-api-key-web-search
1212

1313
```bash
1414
# Cross-validated search
15-
search-web "What is the population of Tokyo?"
15+
zero-search "What is the population of Tokyo?"
1616

1717
# News search
18-
search-web "OpenAI GPT-5 release date" --type news --timelimit w
18+
zero-search "OpenAI GPT-5 release date" --type news --timelimit w
1919

2020
# Academic sources
21-
search-web "transformer attention mechanism" --type books
21+
zero-search "transformer attention mechanism" --type books
2222

2323
# Chinese content
24-
search-web "人工智能最新进展" --region zh-cn
24+
zero-search "人工智能最新进展" --region zh-cn
2525
```
2626

2727
## Confidence Levels
@@ -45,4 +45,4 @@ search-web "人工智能最新进展" --region zh-cn
4545
- Multi-source verification
4646
- Confidence scoring
4747
- Source attribution
48-
- Conflict detection
48+
- Conflict detection

.opencode/instructions.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Zero-API-Key Web Search for OpenCode
22

3-
Use cross-validated search when you need verified facts.
3+
Use Zero-API-Key Web Search when you need verified facts.
44

55
## Installation
66

@@ -12,25 +12,25 @@ pip install zero-api-key-web-search
1212

1313
```bash
1414
# Cross-validated search
15-
search-web "query"
15+
zero-search "query"
1616

1717
# Search types
18-
search-web "query" --type text # General knowledge
19-
search-web "query" --type news # Current events
20-
search-web "query" --type images # Visual references
21-
search-web "query" --type books # Academic sources
18+
zero-search "query" --type text # General knowledge
19+
zero-search "query" --type news # Current events
20+
zero-search "query" --type images # Visual references
21+
zero-search "query" --type books # Academic sources
2222

2323
# Time filters
24-
search-web "query" --type news --timelimit w
24+
zero-search "query" --type news --timelimit w
2525

2626
# Region-specific
27-
search-web "query" --region zh-cn
27+
zero-search "query" --region zh-cn
2828

2929
# JSON output
30-
search-web "query" --json
30+
zero-search "query" --json
3131

3232
# Read page
33-
browse-page "https://example.com"
33+
zero-browse "https://example.com"
3434
```
3535

3636
## Confidence Levels
@@ -52,4 +52,4 @@ browse-page "https://example.com"
5252
## Requirements
5353

5454
- Python 3.10+
55-
- `beautifulsoup4`, `lxml`, `ddgs`, `mcp>=1.1.2`
55+
- `beautifulsoup4`, `lxml`, `ddgs`, `mcp>=1.1.2`

0 commit comments

Comments
 (0)