원클릭으로
tavily
Performs a search or extracts content using the Tavily API.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Performs a search or extracts content using the Tavily API.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Manage user schedules (add, update, delete, search).
Manage personal finances (income, expense, analytics).
Manage user notes (create, read, update, delete, search).
Convert values between various units (excluding currency).
Scrape data from a specified URL using the scraping tool.
Get current time information in a specific timezone using Python.
SOC 직업 분류 기준
| name | Tavily |
| description | Performs a search or extracts content using the Tavily API. |
Performs a search or extracts content using the Tavily API. Specify 'search' or 'extract' in the 'action' parameter.
The skill is executed via a Python script: ~/.myaaw/skills/tavily/scripts/tavily.py.
It accepts a JSON string as the first argument calling the tool.
The input JSON should contain the following fields:
| Field | Type | Description | Required |
|---|---|---|---|
action | string | The action to perform: search (Search API) or extract (Extract API). | Yes |
search_args | object | Arguments for the Tavily search API. Required if action is search. | Conditional |
extract_args | object | Arguments for the Tavily extract API. Required if action is extract. | Conditional |
search_args)| Field | Type | Description | Default |
|---|---|---|---|
query | string | The search query. (Required) | - |
topic | string | Category of the search: general or news. | general |
search_depth | string | Depth of the search: basic or advanced. | basic |
chunks_per_source | int | Number of content chunks per source (advanced search only). | 3 |
max_results | int | Maximum number of search results. | 5 |
time_range | string | Time range (day, week, month, year) or abbrevs (d, etc). | - |
days | int | Number of days back to include (news topic only). | 7 |
include_answer | bool | Include LLM-generated answer. | false |
include_raw_content | bool | Include cleaned HTML content of search results. | false |
include_images | bool | Include image search results. | false |
include_image_descriptions | bool | Include descriptive text for images. | false |
include_domains | array | List of domains to include. | - |
exclude_domains | array | List of domains to exclude. | - |
extract_args)| Field | Type | Description | Default |
|---|---|---|---|
urls | string | URL(s) to extract content from. Separated by commas/newlines for multiple. | (Required) |
include_images | bool | Include images from extracted content. | false |
extract_depth | string | Depth of the extraction process: basic or advanced. | basic |
Requires TAVILY_API_KEY to be set in the environment or in a .env file in the project root.
.venv/bin/python ~/.myaaw/skills/tavily/scripts/tavily.py '{"action": "search", "search_args": {"query": "AI Agents"}}'