full-aigc-skills/coze-skills · Archived

coze-web-search

Search the web using coze-coding-dev-sdk. Supports web search, image search, AI summaries, time filters, and site restrictions.

First seen Aug 11, 2026

Installation

$ npx skills add full-aigc-skills/coze-skills --skill coze-web-search

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from full-aigc-skills/coze-skills.

npx skills add full-aigc-skills/coze-skills

Browse all from full-aigc-skills/coze-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 1
License LICENSE
Default branch main
Open issues 0
Status Archived

Skill metadata

Parsed from SKILL.md frontmatter.

Declared agents clawdbot

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,809 B
  • docs SUMMARY.md 150 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 3 installs

SKILL.md

Coze Web Search

Search the web using coze-coding-dev-sdk. Returns structured results with URLs, snippets, and AI summaries.

Quick Start

Basic Search

npx ts-node {baseDir}/scripts/search.ts -q "Python programming"

With Time Filter

npx ts-node {baseDir}/scripts/search.ts \
  -q "AI news" \
  --time-range 1w \
  --count 15

Site-Specific Search

npx ts-node {baseDir}/scripts/search.ts \
  -q "Python tutorials" \
  --sites "python.org,github.com,stackoverflow.com"

Image Search

npx ts-node {baseDir}/scripts/search.ts \
  -q "mountain landscape" \
  --type image \
  --count 20

Output as Markdown

npx ts-node {baseDir}/scripts/search.ts \
  -q "machine learning" \
  --format markdown

Script Options

Option Description
-q, --query <text> Search query (required)
--type <type> web or image (default: web)
--count <n> Number of results (default: 10)
--time-range <range> 1d, 1w, 1m (web only)
--sites <domains> Comma-separated domains to include
--block-hosts <domains> Comma-separated domains to exclude
--no-summary Disable AI summary
--need-content Include full page content
--format <fmt> json, text, markdown (default: text)

Time Range

Value Description
1d Last 24 hours
1w Last week
1m Last month

Output Formats

Text (default)

============================================================
AI SUMMARY
============================================================
Python is a high-level programming language...

============================================================
SEARCH RESULTS (10 items)
============================================================

[1] Python.org
    URL: https://www.python.org
    Source: Python Software Foundation
    The official home of the Python Programming Language...

Markdown

Formatted with headers, links, and collapsible content sections.

JSON

Raw API response.

Notes

  • Use --time-range for recent content
  • Use --sites to limit to trusted sources
  • Use --need-content sparingly (increases response size)