Skip to main content
ClaudeWave
Skill2.8k repo starsupdated 16d ago

web-search

The web-search skill queries current information across the internet using the Tavily API, returning up to five relevant web results in structured XML format with content excerpts and source URLs. Use this skill when you need recent news, statistics, or factual information not available in your training data, or when verifying claims across multiple sources.

Install in Claude Code
Copy
git clone --depth 1 https://github.com/open-gitagent/opengap /tmp/web-search && cp -r /tmp/web-search/examples/nvidia-deep-researcher/skills/web-search ~/.claude/skills/web-search
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

# Web Search

Search the web for current information on any topic using the Tavily search API.

## When to Use

- Searching for recent news, articles, blog posts, and web content
- Finding current statistics, data, and factual information
- Retrieving information that may not be in academic papers or the knowledge base
- Verifying claims with multiple web sources

## How to Use

1. Formulate a specific, targeted search query (max 400 characters)
2. Call `tavily_web_search` with the query
3. Review returned results for relevance and quality
4. Extract key facts and note the source URL for citation

## Result Format

Results are returned in Document XML format:

```xml
<Document href="https://example.com/article" title="Article Title">
  Content excerpt from the page...
</Document>
```

## Constraints

- Maximum 5 results returned per query
- Query will be truncated to 400 characters
- Search mode: advanced (includes content extraction)
- Each call counts toward the researcher's 8-call limit per task
document-reviewSkill

Reviews financial documents (prospectuses, ADVs, marketing materials) for FINRA 2210 compliance, required disclosures, and balanced presentation. Use when reviewing financial statements, audit documents, regulatory filings, or when the user mentions compliance checks, financial audits, or document verification.

regulatory-analysisSkill

Analyzes documents and processes against FINRA, SEC, Federal Reserve, and CFPB regulatory frameworks. Identifies compliance gaps, classifies findings by severity, and recommends remediation. Use when performing compliance audits, regulatory reviews, gap analyses, or verifying policy adherence to financial regulations.

create-agentSkill

Creates and configures agent.yaml files, writes SOUL.md personality definitions, and sets up agent directory structures with skills, tools, and knowledge. Use when the user wants to configure an agent, create agent.yaml, write SOUL.md, set up agent directory structure, or customize agent settings.

export-agentSkill

Converts agent definitions between frameworks — exports to Claude Code, OpenAI, CrewAI, Lyzr, and GitHub Models formats, and imports from Claude, Cursor, and CrewAI projects. Use when the user wants to convert an agent, migrate to another framework, export to LangChain/AutoGen/CrewAI, or import from existing automation tools.

get-startedSkill

Guides installation of gitagent and creation of first agent with scaffolding, configuration, and validation. Use when the user is new to gitagent, asks how to get started, wants to install gitagent, set up their first agent, or says 'how do I start?'

manage-skillsSkill

Searches the SkillsMP registry, installs skills locally or globally, creates custom skills with SKILL.md frontmatter, and manages the skill lifecycle. Use when the user wants to find skills, add new capabilities, install a skill, browse available skills, create a custom skill, or manage the skills system.

run-agentSkill

Configures and runs agents with different adapters including Claude, OpenAI, CrewAI, Lyzr, and GitHub Models. Supports local execution, remote git repos, and one-shot prompts. Use when the user wants to run an agent, switch LLM providers, configure adapter settings, or launch agents from git repositories.

compute-ladderSkill

>