npx skills add https://github.com/felo-inc/felo-skills --skill felo-search当问题需要当前或实时信息时触发此技能:
触发词:
显式命令: /felo-search、"search with felo"、"felo search"
请勿用于:
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
设置 FELO_API_KEY 环境变量:
Linux/macOS:
export FELO_API_KEY="your-api-key-here"
Windows (PowerShell):
$env:FELO_API_KEY="your-api-key-here"
Windows (CMD):
set FELO_API_KEY=your-api-key-here
如需永久配置,请将其添加到您的 shell 配置文件(~/.bashrc, ~/.zshrc)或系统环境变量中。
当此技能被触发时,使用 Bash 工具执行搜索脚本:
~/.agents/skills/felo-search/scripts/search.sh "USER_QUERY_HERE"
注意:
USER_QUERY_HERE 替换为实际的用户查询API 返回的 JSON 结构如下:
{
"answer": "AI-generated answer text",
"query_analysis": ["optimized query 1", "optimized query 2"]
}
向用户呈现响应的格式如下:
## 答案
[显示 answer 字段]
## 查询分析
优化的搜索词:[列出 query_analysis 项]
用户提问: "What's the weather in Tokyo today?"
预期响应格式:
## 答案
东京今日天气:晴朗,22°C (72°F)。最高 25°C,最低 18°C。
东风,风速 10 公里/小时。紫外线指数:6(高)。
适合户外活动!
## 查询分析
优化的搜索词:Tokyo weather today, 東京 天気 今日
Bash 命令:
~/.agents/skills/felo-search/scripts/search.sh "What's the weather in Tokyo today?"
用户提问: "What's new in Hangzhou recently?"
预期响应格式:
## 答案
杭州近期新闻:亚运会场馆升级完成,西湖夜游项目启动,新地铁线路开通。详情...
## 查询分析
优化的搜索词:Hangzhou recent news, Hangzhou events, 杭州 最近 新闻
Bash 命令:
~/.agents/skills/felo-search/scripts/search.sh "What's new in Hangzhou recently"
用户提问: "What are the best things to do in Taipei?"
Bash 命令:
~/.agents/skills/felo-search/scripts/search.sh "What are the best things to do in Taipei"
用户提问: "Popular restaurants in Tokyo?"
Bash 命令:
~/.agents/skills/felo-search/scripts/search.sh "Popular restaurants in Tokyo"
INVALID_API_KEY - API 密钥无效或已撤销
MISSING_PARAMETER - 缺少必需参数
INVALID_PARAMETER - 参数值无效
CHAT_FAILED - 内部服务错误
如果未设置 FELO_API_KEY,则显示此消息:
❌ Felo API 密钥未配置
要使用此技能,您需要设置您的 Felo API 密钥:
1. 从 https://felo.ai 获取您的 API 密钥(设置 → API Keys)
2. 设置环境变量:
Linux/macOS:
export FELO_API_KEY="your-api-key-here"
Windows (PowerShell):
$env:FELO_API_KEY="your-api-key-here"
3. 重启 Claude Code 或重新加载环境
端点: https://openapi.felo.ai/v2/chat
认证: Authorization 头中的 Bearer token(来自 FELO_API_KEY 环境变量)
请求格式:
{
"query": "user's search query"
}
响应格式:
{
"answer": "AI-generated comprehensive answer",
"query_analysis": ["optimized query 1", "optimized query 2"]
}
每周安装次数
96
代码仓库
GitHub 星标数
109
首次出现
Mar 3, 2026
安全审计
安装于
cursor92
kimi-cli91
codex91
gemini-cli91
opencode91
amp91
Trigger this skill for questions requiring current or real-time information:
Trigger words:
Explicit commands: /felo-search, "search with felo", "felo search"
Do NOT use for:
Set the FELO_API_KEY environment variable:
Linux/macOS:
export FELO_API_KEY="your-api-key-here"
Windows (PowerShell):
$env:FELO_API_KEY="your-api-key-here"
Windows (CMD):
set FELO_API_KEY=your-api-key-here
For permanent configuration, add it to your shell profile (~/.bashrc, ~/.zshrc) or system environment variables.
When this skill is triggered, execute the search script using the Bash tool:
~/.agents/skills/felo-search/scripts/search.sh "USER_QUERY_HERE"
Notes:
USER_QUERY_HERE with the actual user queryThe API returns JSON with this structure:
{
"answer": "AI-generated answer text",
"query_analysis": ["optimized query 1", "optimized query 2"]
}
Present the response to the user in this format:
## Answer
[Display the answer field]
## Query Analysis
Optimized search terms: [list query_analysis items]
User asks: "What's the weather in Tokyo today?"
Expected response format:
## Answer
Tokyo weather today: Sunny, 22°C (72°F). High of 25°C, low of 18°C.
Light winds from the east at 10 km/h. UV index: 6 (high).
Good day for outdoor activities!
## Query Analysis
Optimized search terms: Tokyo weather today, 東京 天気 今日
Bash command:
~/.agents/skills/felo-search/scripts/search.sh "What's the weather in Tokyo today?"
User asks: "What's new in Hangzhou recently?"
Expected response format:
## Answer
Recent news in Hangzhou: Asian Games venue upgrades completed, West Lake night tours launched, new metro lines opened. Details...
## Query Analysis
Optimized search terms: Hangzhou recent news, Hangzhou events, 杭州 最近 新闻
Bash command:
~/.agents/skills/felo-search/scripts/search.sh "What's new in Hangzhou recently"
User asks: "What are the best things to do in Taipei?"
Bash command:
~/.agents/skills/felo-search/scripts/search.sh "What are the best things to do in Taipei"
User asks: "Popular restaurants in Tokyo?"
Bash command:
~/.agents/skills/felo-search/scripts/search.sh "Popular restaurants in Tokyo"
INVALID_API_KEY - API Key is invalid or revoked
MISSING_PARAMETER - Required parameter is missing
INVALID_PARAMETER - Parameter value is invalid
CHAT_FAILED - Internal service error
If FELO_API_KEY is not set, display this message:
❌ Felo API Key not configured
To use this skill, you need to set up your Felo API Key:
1. Get your API key from https://felo.ai (Settings → API Keys)
2. Set the environment variable:
Linux/macOS:
export FELO_API_KEY="your-api-key-here"
Windows (PowerShell):
$env:FELO_API_KEY="your-api-key-here"
3. Restart Claude Code or reload the environment
Endpoint: https://openapi.felo.ai/v2/chat
Authentication: Bearer token in Authorization header (from FELO_API_KEY environment variable)
Request format:
{
"query": "user's search query"
}
Response format:
{
"answer": "AI-generated comprehensive answer",
"query_analysis": ["optimized query 1", "optimized query 2"]
}
Weekly Installs
96
Repository
GitHub Stars
109
First Seen
Mar 3, 2026
Security Audits
Gen Agent Trust HubPassSocketPassSnykWarn
Installed on
cursor92
kimi-cli91
codex91
gemini-cli91
opencode91
amp91
AI 代码实施计划编写技能 | 自动化开发任务分解与 TDD 流程规划工具
50,900 周安装