skills/modsearch/SKILL.md
Bridge web search capability for LLM workflows. Use when user asks for latest info, external facts, or source links and the active model/toolchain lacks direct search ability.
npx skillsauth add liustack/modsearch modsearchInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this skill when:
modsearch --version
If using the default provider (gemini-cli), ensure Gemini CLI is installed and authenticated:
gemini --version
If missing:
npm install -g @google/gemini-cli
gemini
Or run directly with npx (no global install required):
npx @google/gemini-cli # launch interactive auth
modsearch -q "<query>"
# or via npx
npx @liustack/modsearch -q "<query>"
Optional:
modsearch -q "<query>" -o <output-json-path> -p <provider> -m <model> --max-results <n> --prompt "<extra constraints>"
modsearch with the user query.summary and items as evidence for reasoning or for selecting URLs to fetch.uncertainty is non-empty, explicitly communicate ambiguity to the user.summary: high-level synthesis of search findingsitems: normalized list (title, url, snippet, source, published_at, relevance)uncertainty: caveats, missing data, or confidence risksDetailed schema: references/output-schema.md
rawText and continue with best-effort extraction.To use the Tavily search provider, set the TAVILY_API_KEY environment variable:
export TAVILY_API_KEY="tvly-YOUR_API_KEY"
Then run with --provider tavily (or -p tavily):
modsearch -q "<query>" -p tavily
# or via npx
npx @liustack/modsearch -q "<query>" -p tavily
Get your API key at https://app.tavily.com (1,000 free credits/month).
v1 uses Gemini CLI as the default provider (gemini -p with JSON output mode).
The architecture is provider-extensible and can support any search-capable model or service provider in future versions.
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
A CLI tool for making authenticated requests to the X (Twitter) API. Use this skill when you need to post tweets, reply, quote, search, read posts, manage followers, send DMs, upload media, or interact with any X API v2 endpoint.