felo-ai 0.2.7 → 0.2.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,440 +1,440 @@
1
- # Felo Search Skill for Claude Code
2
-
3
- **Real-time web search with AI-generated answers.**
4
-
5
- Get current information on anything - weather, news, tech docs, reviews, prices. Works in Chinese, English, Japanese, and Korean.
6
-
7
- ---
8
-
9
- ## What It Does
10
-
11
- Felo Search integrates [Felo AI](https://felo.ai) into Claude Code, enabling:
12
- - Real-time web search for current information
13
- - AI-generated comprehensive answers
14
- - Multi-language support (auto-detects query language)
15
- - Automatic triggering for questions needing current data
16
-
17
- **When to use:**
18
- - Current events, news, weather
19
- - Product reviews, prices, comparisons
20
- - Latest documentation, tech trends
21
- - Location info (restaurants, attractions)
22
- - Any question with "latest", "recent", "best", "how to"
23
-
24
- **When NOT to use:**
25
- - Code questions about your local project
26
- - Pure math or logic problems
27
- - Questions about files in your workspace
28
-
29
- ---
30
-
31
- ## Quick Setup
32
-
33
- ### Step 1: Install
34
-
35
- ```bash
36
- npx @claude/skills add felo-search
37
- ```
38
-
39
- **Verify:** Restart Claude Code and run:
40
- ```bash
41
- claude skills list
42
- ```
43
-
44
- You should see `felo-search` in the output.
45
-
46
- ### Step 2: Get API Key
47
-
48
- 1. Visit [felo.ai](https://felo.ai) and log in (or register)
49
- 2. Click your avatar (top right) → **Settings**
50
- 3. Navigate to **API Keys** tab
51
- 4. Click **Create New Key**
52
- 5. Copy your API key
53
-
54
- ![API Key Location](https://felo.ai/assets/api-key-guide.png)
55
-
56
- ### Step 3: Configure
57
-
58
- Set the `FELO_API_KEY` environment variable:
59
-
60
- **Linux/macOS:**
61
- ```bash
62
- export FELO_API_KEY="your-api-key-here"
63
-
64
- # Make it permanent (add to shell profile)
65
- echo 'export FELO_API_KEY="your-api-key-here"' >> ~/.bashrc # or ~/.zshrc
66
- ```
67
-
68
- **Windows (PowerShell):**
69
- ```powershell
70
- $env:FELO_API_KEY="your-api-key-here"
71
-
72
- # Make it permanent (system environment variables)
73
- # System Properties → Advanced → Environment Variables → New
74
- ```
75
-
76
- **Windows (CMD):**
77
- ```cmd
78
- set FELO_API_KEY=your-api-key-here
79
- ```
80
-
81
- **Verify:** Check the variable is set:
82
- ```bash
83
- # Linux/macOS
84
- echo $FELO_API_KEY
85
-
86
- # Windows PowerShell
87
- echo $env:FELO_API_KEY
88
- ```
89
-
90
- You should see your API key.
91
-
92
- **Restart Claude Code** to load the environment variable.
93
-
94
- ### Step 4: Test
95
-
96
- Ask Claude a question requiring current information:
97
- ```
98
- What's the weather in Tokyo today?
99
- ```
100
-
101
- If you see an AI-generated answer, **you're all set!**
102
-
103
- ---
104
-
105
- ## Usage Examples
106
-
107
- ### Daily Life
108
-
109
- **Weather**
110
- ```
111
- You: What's the weather in Tokyo today?
112
- Claude: Currently 15°C in Tokyo with partly cloudy skies. High of 18°C,
113
- low of 12°C. 20% chance of rain.
114
-
115
- You: What's the weather in Hangzhou tomorrow?
116
- Claude: Hangzhou tomorrow: partly cloudy to clear, 8-16°C, NE wind 3-4.
117
- ```
118
-
119
- **Restaurants & Food**
120
- ```
121
- You: Best ramen in Osaka
122
- Claude: Top 3 ramen shops in Osaka:
123
- 1. Ichiran Dotonbori - Famous tonkotsu ramen, open 24/7
124
- 2. Kamukura - Rich chicken broth, Michelin Bib Gourmand
125
- 3. Menya Joroku - Tsukemen specialist
126
-
127
- You: Where to find the best xiaolongbao in Shanghai?
128
- Claude: Shanghai xiaolongbao recommendations:
129
- 1. Nanxiang Steamed Bun - Old brand near Yuyuan, thin skin, juicy
130
- 2. Jiajia Soup Dumplings - Popular on Huanghe Road, good value
131
- 3. Din Tai Fung - Taiwan brand, consistent quality
132
- ```
133
-
134
- **Shopping & Prices**
135
- ```
136
- You: iPhone 15 Pro price comparison
137
- Claude: iPhone 15 Pro (128GB) prices:
138
- - Apple Store: $999
139
- - Amazon: $979 (save $20)
140
- - Best Buy: $999 (with trade-in deals)
141
-
142
- You: MacBook Air M3 price
143
- Claude: MacBook Air M3 (13") prices:
144
- - Apple: $1,099 (256GB)
145
- - Amazon: $1,049 (with coupons)
146
- - Best Buy: $1,079 (with perks)
147
- ```
148
-
149
- **Travel**
150
- ```
151
- You: Things to do in Kyoto this weekend
152
- Claude: Kyoto weekend highlights:
153
- - Cherry blossom viewing at Maruyama Park (peak season)
154
- - Fushimi Inari Shrine (open 24/7, less crowded early morning)
155
- - Nishiki Market food tour (closes 6pm)
156
- - Gion district evening walk (geisha spotting)
157
-
158
- You: What to do in Taipei?
159
- Claude: Taipei must-sees:
160
- - Taipei 101 - Observatory for night views
161
- - National Palace Museum - Chinese art and artifacts
162
- - Shilin Night Market - Food and snacks
163
- - Jiufen Old Street - Nostalgic mountain town
164
- ```
165
-
166
- ### Developer Scenarios
167
-
168
- **Latest Documentation**
169
- ```
170
- You: React 19 new features
171
- Claude: React 19 key features (released Dec 2024):
172
- - React Compiler (auto-optimization)
173
- - Server Components stable
174
- - Actions for form handling
175
- - use() hook for async data
176
-
177
- You: Next.js 15 new features
178
- Claude: Next.js 15 main updates:
179
- - Turbopack stable (5x faster builds)
180
- - Partial Prerendering (PPR)
181
- - Improved cache control
182
- - React 19 support
183
- ```
184
-
185
- **Library Comparison**
186
- ```
187
- You: Vite vs Webpack 2024 comparison
188
- Claude: Vite vs Webpack (2024):
189
-
190
- Build Speed: Vite 10x faster (dev), 3x faster (prod)
191
- Config: Vite simpler, Webpack more flexible
192
- Ecosystem: Webpack mature, Vite growing fast
193
-
194
- Use Vite for: New projects, fast iteration
195
- Use Webpack for: Complex builds, legacy support
196
-
197
- You: Vue 3 vs React for new projects
198
- Claude: Vue 3 vs React:
199
-
200
- Learning curve: Vue gentler, React needs JSX
201
- Performance: Similar, Vue slightly ahead
202
- Ecosystem: React larger, Vue sufficient
203
- Jobs: More React positions
204
-
205
- Suggestion: React if team knows it, Vue for newcomers
206
- ```
207
-
208
- **Tech Trends**
209
- ```
210
- You: Latest AI developments January 2026
211
- Claude: AI developments (Jan 2026):
212
- - OpenAI GPT-5 preview released
213
- - Google Gemini 2.0 with multimodal reasoning
214
- - Anthropic Claude 4 with extended context
215
- - Meta's open-source LLaMA 4
216
-
217
- You: Important tech news recently
218
- Claude: Recent tech (Feb 2026):
219
- - Apple Vision Pro 2 announced
220
- - NVIDIA B100 GPU in production
221
- - Tesla FSD v13 rollout
222
- - Microsoft Windows 12 preview
223
- ```
224
-
225
- ### Multi-language Queries
226
-
227
- Felo supports Chinese, Japanese, Korean, and English. Ask in any language and get answers in that language. Example in English:
228
-
229
- **Latest AI & places**
230
- ```
231
- You: Latest developments in AI
232
- Claude: AI developments (2026):
233
- - LLM parameters exceed 10 trillion
234
- - Multimodal understanding near human level
235
- - AI coding assistants used by 60%+ developers
236
- - Embodied AI robots commercialized
237
- [Sources: industry reports]
238
-
239
- You: What to do in Shenzhen
240
- Claude: Shenzhen recommendations:
241
- - Window of the World - Miniature landmarks
242
- - Happy Valley - Theme park
243
- - Dameisha Beach - Free beach
244
- - OCT-LOFT - Arts and culture
245
- [Sources: travel guides]
246
- ```
247
-
248
- **React adoption & comparisons**
249
- ```
250
- You: React adoption in China
251
- Claude: React in China:
252
- - Market share: ~45% (second to Vue)
253
- - Major users: Alibaba, ByteDance, Tencent
254
- - Ecosystem: Ant Design, Taro, etc.
255
- - Trend: Growing, Next.js popular
256
- [Sources: State of JS China]
257
-
258
- You: Python vs Java for beginners
259
- Claude: Python vs Java:
260
- - Learning: Python easier to start
261
- - Jobs: Both strong, Java more enterprise
262
- - Use Python for: Data, scripting, prototyping
263
- - Use Java for: Enterprise, Android, backend
264
- [Sources: Stack Overflow, job boards]
265
- ```
266
-
267
- ### Complex Queries
268
-
269
- **Research & Analysis**
270
- ```
271
- You: Impact of AI on software development 2024-2026
272
- Claude: AI's impact on software development (2024-2026):
273
-
274
- Productivity: 40% faster coding with AI assistants
275
- Job Market: Shift from coding to architecture/design
276
- Tools: GitHub Copilot, Cursor, Claude Code dominant
277
- Challenges: Code quality, security, over-reliance
278
-
279
- Future: AI pair programming becomes standard practice
280
-
281
- You: Impact of quantum computing on cryptography
282
- Claude: Quantum computing and cryptography:
283
-
284
- Threat: RSA, ECC and similar algorithms could be broken
285
- Timeline: Estimated 2030-2035
286
- Response: Post-quantum cryptography (PQC) standardization
287
- Progress: NIST has published PQC algorithm standards
288
-
289
- Advice: Plan crypto migration in advance
290
- ```
291
-
292
- **Comparisons**
293
- ```
294
- You: Cloud providers comparison: AWS vs Azure vs GCP
295
- Claude: AWS vs Azure vs GCP (2026):
296
-
297
- Market Share: AWS 32%, Azure 23%, GCP 10%
298
- Pricing: GCP cheapest, AWS most expensive
299
- Services: AWS most comprehensive, Azure best for Microsoft stack
300
- Performance: Similar, regional differences
301
- Support: Azure best for enterprise, AWS most docs
302
-
303
- Choose AWS: Mature ecosystem, most services
304
- Choose Azure: Microsoft integration, hybrid cloud
305
- Choose GCP: Data/ML workloads, cost-sensitive
306
-
307
- You: Programming language performance: Python vs Go vs Rust
308
- Claude: Python vs Go vs Rust:
309
-
310
- Speed: Rust > Go > Python (up to 100x)
311
- Memory: Rust lowest, Python highest
312
- Productivity: Python > Go > Rust
313
- Learning curve: Python gentlest, Rust steepest
314
-
315
- Use cases:
316
- - Python: Data science, scripting, rapid prototyping
317
- - Go: Microservices, cloud-native, concurrency
318
- - Rust: Systems programming, performance-critical, safety
319
- ```
320
-
321
- **[See 40+ more examples →](../docs/EXAMPLES.md)**
322
-
323
- ---
324
-
325
- ## How It Works
326
-
327
- ### Auto-trigger
328
-
329
- The skill automatically triggers for questions containing:
330
- - **Time-sensitive**: "latest", "recent", "today", "now", "2026"
331
- - **Information**: "what is", "tell me about", "how to"
332
- - **Comparison**: "best", "top", "vs", "compare"
333
- - **Location**: "where", "in [city]", "near me"
334
- - **Chinese**: "最近", "什么", "哪里", "怎么样"
335
- - **Japanese**: "最近", "何", "どこ", "どう"
336
- - **Korean**: "최근", "무엇", "어디", "어떻게"
337
-
338
- ### Manual Trigger
339
-
340
- Force the skill to run:
341
- ```
342
- /felo-search your query here
343
- ```
344
-
345
- Or use trigger phrases:
346
- ```
347
- Search with Felo for [query]
348
- Felo search: [query]
349
- Use Felo to find [query]
350
- ```
351
-
352
- ### Response Format
353
-
354
- Each response includes:
355
-
356
- 1. **Answer** - AI-generated comprehensive answer
357
- 2. **Query Analysis** - Optimized search queries used by Felo
358
-
359
- Example:
360
- ```
361
- ## Answer
362
- [Comprehensive AI-generated answer]
363
-
364
- ## Query Analysis
365
- Optimized queries: ["query 1", "query 2"]
366
- ```
367
-
368
- ---
369
-
370
- ## Troubleshooting
371
-
372
- ### "FELO_API_KEY not set" error
373
-
374
- **Problem:** Environment variable not configured.
375
-
376
- **Solution:**
377
- ```bash
378
- # Linux/macOS
379
- export FELO_API_KEY="your-key"
380
-
381
- # Windows PowerShell
382
- $env:FELO_API_KEY="your-key"
383
- ```
384
-
385
- Then restart Claude Code.
386
-
387
- ### "INVALID_API_KEY" error
388
-
389
- **Problem:** API key is incorrect or revoked.
390
-
391
- **Solution:** Generate a new key at [felo.ai](https://felo.ai) (Settings → API Keys).
392
-
393
- ### "curl: command not found" error
394
-
395
- **Problem:** curl is not installed.
396
-
397
- **Solution:**
398
- ```bash
399
- # Linux (Debian/Ubuntu)
400
- sudo apt install curl
401
-
402
- # macOS
403
- brew install curl
404
-
405
- # Windows
406
- # curl is built-in on Windows 10+
407
- ```
408
-
409
- ### Skill not triggering automatically
410
-
411
- **Problem:** Query doesn't match trigger keywords.
412
-
413
- **Solution:** Use manual trigger:
414
- ```
415
- /felo-search your query
416
- ```
417
-
418
- ### Character encoding issues (Chinese/Japanese)
419
-
420
- **Problem:** Special characters not displaying correctly.
421
-
422
- **Solution:** Ensure your terminal supports UTF-8 encoding. The skill uses heredoc to handle special characters properly.
423
-
424
- **[See full FAQ →](../docs/FAQ.md)**
425
-
426
- ---
427
-
428
- ## Links
429
-
430
- - **[Get API Key](https://felo.ai)** - Settings → API Keys
431
- - **[API Documentation](https://openapi.felo.ai)** - Full API reference
432
- - **[Usage Examples](../docs/EXAMPLES.md)** - 40+ real-world examples
433
- - **[FAQ](../docs/FAQ.md)** - Common issues and solutions
434
- - **[Report Issues](https://github.com/Felo-Inc/felo-skills/issues)** - Bug reports and feature requests
435
-
436
- ---
437
-
438
- ## License
439
-
440
- MIT License - see [LICENSE](./LICENSE) for details.
1
+ # Felo Search Skill for Claude Code
2
+
3
+ **Real-time web search with AI-generated answers.**
4
+
5
+ Get current information on anything - weather, news, tech docs, reviews, prices. Works in Chinese, English, Japanese, and Korean.
6
+
7
+ ---
8
+
9
+ ## What It Does
10
+
11
+ Felo Search integrates [Felo AI](https://felo.ai) into Claude Code, enabling:
12
+ - Real-time web search for current information
13
+ - AI-generated comprehensive answers
14
+ - Multi-language support (auto-detects query language)
15
+ - Automatic triggering for questions needing current data
16
+
17
+ **When to use:**
18
+ - Current events, news, weather
19
+ - Product reviews, prices, comparisons
20
+ - Latest documentation, tech trends
21
+ - Location info (restaurants, attractions)
22
+ - Any question with "latest", "recent", "best", "how to"
23
+
24
+ **When NOT to use:**
25
+ - Code questions about your local project
26
+ - Pure math or logic problems
27
+ - Questions about files in your workspace
28
+
29
+ ---
30
+
31
+ ## Quick Setup
32
+
33
+ ### Step 1: Install
34
+
35
+ ```bash
36
+ npx @claude/skills add felo-search
37
+ ```
38
+
39
+ **Verify:** Restart Claude Code and run:
40
+ ```bash
41
+ claude skills list
42
+ ```
43
+
44
+ You should see `felo-search` in the output.
45
+
46
+ ### Step 2: Get API Key
47
+
48
+ 1. Visit [felo.ai](https://felo.ai) and log in (or register)
49
+ 2. Click your avatar (top right) → **Settings**
50
+ 3. Navigate to **API Keys** tab
51
+ 4. Click **Create New Key**
52
+ 5. Copy your API key
53
+
54
+ ![API Key Location](https://felo.ai/assets/api-key-guide.png)
55
+
56
+ ### Step 3: Configure
57
+
58
+ Set the `FELO_API_KEY` environment variable:
59
+
60
+ **Linux/macOS:**
61
+ ```bash
62
+ export FELO_API_KEY="your-api-key-here"
63
+
64
+ # Make it permanent (add to shell profile)
65
+ echo 'export FELO_API_KEY="your-api-key-here"' >> ~/.bashrc # or ~/.zshrc
66
+ ```
67
+
68
+ **Windows (PowerShell):**
69
+ ```powershell
70
+ $env:FELO_API_KEY="your-api-key-here"
71
+
72
+ # Make it permanent (system environment variables)
73
+ # System Properties → Advanced → Environment Variables → New
74
+ ```
75
+
76
+ **Windows (CMD):**
77
+ ```cmd
78
+ set FELO_API_KEY=your-api-key-here
79
+ ```
80
+
81
+ **Verify:** Check the variable is set:
82
+ ```bash
83
+ # Linux/macOS
84
+ echo $FELO_API_KEY
85
+
86
+ # Windows PowerShell
87
+ echo $env:FELO_API_KEY
88
+ ```
89
+
90
+ You should see your API key.
91
+
92
+ **Restart Claude Code** to load the environment variable.
93
+
94
+ ### Step 4: Test
95
+
96
+ Ask Claude a question requiring current information:
97
+ ```
98
+ What's the weather in Tokyo today?
99
+ ```
100
+
101
+ If you see an AI-generated answer, **you're all set!**
102
+
103
+ ---
104
+
105
+ ## Usage Examples
106
+
107
+ ### Daily Life
108
+
109
+ **Weather**
110
+ ```
111
+ You: What's the weather in Tokyo today?
112
+ Claude: Currently 15°C in Tokyo with partly cloudy skies. High of 18°C,
113
+ low of 12°C. 20% chance of rain.
114
+
115
+ You: What's the weather in Hangzhou tomorrow?
116
+ Claude: Hangzhou tomorrow: partly cloudy to clear, 8-16°C, NE wind 3-4.
117
+ ```
118
+
119
+ **Restaurants & Food**
120
+ ```
121
+ You: Best ramen in Osaka
122
+ Claude: Top 3 ramen shops in Osaka:
123
+ 1. Ichiran Dotonbori - Famous tonkotsu ramen, open 24/7
124
+ 2. Kamukura - Rich chicken broth, Michelin Bib Gourmand
125
+ 3. Menya Joroku - Tsukemen specialist
126
+
127
+ You: Where to find the best xiaolongbao in Shanghai?
128
+ Claude: Shanghai xiaolongbao recommendations:
129
+ 1. Nanxiang Steamed Bun - Old brand near Yuyuan, thin skin, juicy
130
+ 2. Jiajia Soup Dumplings - Popular on Huanghe Road, good value
131
+ 3. Din Tai Fung - Taiwan brand, consistent quality
132
+ ```
133
+
134
+ **Shopping & Prices**
135
+ ```
136
+ You: iPhone 15 Pro price comparison
137
+ Claude: iPhone 15 Pro (128GB) prices:
138
+ - Apple Store: $999
139
+ - Amazon: $979 (save $20)
140
+ - Best Buy: $999 (with trade-in deals)
141
+
142
+ You: MacBook Air M3 price
143
+ Claude: MacBook Air M3 (13") prices:
144
+ - Apple: $1,099 (256GB)
145
+ - Amazon: $1,049 (with coupons)
146
+ - Best Buy: $1,079 (with perks)
147
+ ```
148
+
149
+ **Travel**
150
+ ```
151
+ You: Things to do in Kyoto this weekend
152
+ Claude: Kyoto weekend highlights:
153
+ - Cherry blossom viewing at Maruyama Park (peak season)
154
+ - Fushimi Inari Shrine (open 24/7, less crowded early morning)
155
+ - Nishiki Market food tour (closes 6pm)
156
+ - Gion district evening walk (geisha spotting)
157
+
158
+ You: What to do in Taipei?
159
+ Claude: Taipei must-sees:
160
+ - Taipei 101 - Observatory for night views
161
+ - National Palace Museum - Chinese art and artifacts
162
+ - Shilin Night Market - Food and snacks
163
+ - Jiufen Old Street - Nostalgic mountain town
164
+ ```
165
+
166
+ ### Developer Scenarios
167
+
168
+ **Latest Documentation**
169
+ ```
170
+ You: React 19 new features
171
+ Claude: React 19 key features (released Dec 2024):
172
+ - React Compiler (auto-optimization)
173
+ - Server Components stable
174
+ - Actions for form handling
175
+ - use() hook for async data
176
+
177
+ You: Next.js 15 new features
178
+ Claude: Next.js 15 main updates:
179
+ - Turbopack stable (5x faster builds)
180
+ - Partial Prerendering (PPR)
181
+ - Improved cache control
182
+ - React 19 support
183
+ ```
184
+
185
+ **Library Comparison**
186
+ ```
187
+ You: Vite vs Webpack 2024 comparison
188
+ Claude: Vite vs Webpack (2024):
189
+
190
+ Build Speed: Vite 10x faster (dev), 3x faster (prod)
191
+ Config: Vite simpler, Webpack more flexible
192
+ Ecosystem: Webpack mature, Vite growing fast
193
+
194
+ Use Vite for: New projects, fast iteration
195
+ Use Webpack for: Complex builds, legacy support
196
+
197
+ You: Vue 3 vs React for new projects
198
+ Claude: Vue 3 vs React:
199
+
200
+ Learning curve: Vue gentler, React needs JSX
201
+ Performance: Similar, Vue slightly ahead
202
+ Ecosystem: React larger, Vue sufficient
203
+ Jobs: More React positions
204
+
205
+ Suggestion: React if team knows it, Vue for newcomers
206
+ ```
207
+
208
+ **Tech Trends**
209
+ ```
210
+ You: Latest AI developments January 2026
211
+ Claude: AI developments (Jan 2026):
212
+ - OpenAI GPT-5 preview released
213
+ - Google Gemini 2.0 with multimodal reasoning
214
+ - Anthropic Claude 4 with extended context
215
+ - Meta's open-source LLaMA 4
216
+
217
+ You: Important tech news recently
218
+ Claude: Recent tech (Feb 2026):
219
+ - Apple Vision Pro 2 announced
220
+ - NVIDIA B100 GPU in production
221
+ - Tesla FSD v13 rollout
222
+ - Microsoft Windows 12 preview
223
+ ```
224
+
225
+ ### Multi-language Queries
226
+
227
+ Felo supports Chinese, Japanese, Korean, and English. Ask in any language and get answers in that language. Example in English:
228
+
229
+ **Latest AI & places**
230
+ ```
231
+ You: Latest developments in AI
232
+ Claude: AI developments (2026):
233
+ - LLM parameters exceed 10 trillion
234
+ - Multimodal understanding near human level
235
+ - AI coding assistants used by 60%+ developers
236
+ - Embodied AI robots commercialized
237
+ [Sources: industry reports]
238
+
239
+ You: What to do in Shenzhen
240
+ Claude: Shenzhen recommendations:
241
+ - Window of the World - Miniature landmarks
242
+ - Happy Valley - Theme park
243
+ - Dameisha Beach - Free beach
244
+ - OCT-LOFT - Arts and culture
245
+ [Sources: travel guides]
246
+ ```
247
+
248
+ **React adoption & comparisons**
249
+ ```
250
+ You: React adoption in China
251
+ Claude: React in China:
252
+ - Market share: ~45% (second to Vue)
253
+ - Major users: Alibaba, ByteDance, Tencent
254
+ - Ecosystem: Ant Design, Taro, etc.
255
+ - Trend: Growing, Next.js popular
256
+ [Sources: State of JS China]
257
+
258
+ You: Python vs Java for beginners
259
+ Claude: Python vs Java:
260
+ - Learning: Python easier to start
261
+ - Jobs: Both strong, Java more enterprise
262
+ - Use Python for: Data, scripting, prototyping
263
+ - Use Java for: Enterprise, Android, backend
264
+ [Sources: Stack Overflow, job boards]
265
+ ```
266
+
267
+ ### Complex Queries
268
+
269
+ **Research & Analysis**
270
+ ```
271
+ You: Impact of AI on software development 2024-2026
272
+ Claude: AI's impact on software development (2024-2026):
273
+
274
+ Productivity: 40% faster coding with AI assistants
275
+ Job Market: Shift from coding to architecture/design
276
+ Tools: GitHub Copilot, Cursor, Claude Code dominant
277
+ Challenges: Code quality, security, over-reliance
278
+
279
+ Future: AI pair programming becomes standard practice
280
+
281
+ You: Impact of quantum computing on cryptography
282
+ Claude: Quantum computing and cryptography:
283
+
284
+ Threat: RSA, ECC and similar algorithms could be broken
285
+ Timeline: Estimated 2030-2035
286
+ Response: Post-quantum cryptography (PQC) standardization
287
+ Progress: NIST has published PQC algorithm standards
288
+
289
+ Advice: Plan crypto migration in advance
290
+ ```
291
+
292
+ **Comparisons**
293
+ ```
294
+ You: Cloud providers comparison: AWS vs Azure vs GCP
295
+ Claude: AWS vs Azure vs GCP (2026):
296
+
297
+ Market Share: AWS 32%, Azure 23%, GCP 10%
298
+ Pricing: GCP cheapest, AWS most expensive
299
+ Services: AWS most comprehensive, Azure best for Microsoft stack
300
+ Performance: Similar, regional differences
301
+ Support: Azure best for enterprise, AWS most docs
302
+
303
+ Choose AWS: Mature ecosystem, most services
304
+ Choose Azure: Microsoft integration, hybrid cloud
305
+ Choose GCP: Data/ML workloads, cost-sensitive
306
+
307
+ You: Programming language performance: Python vs Go vs Rust
308
+ Claude: Python vs Go vs Rust:
309
+
310
+ Speed: Rust > Go > Python (up to 100x)
311
+ Memory: Rust lowest, Python highest
312
+ Productivity: Python > Go > Rust
313
+ Learning curve: Python gentlest, Rust steepest
314
+
315
+ Use cases:
316
+ - Python: Data science, scripting, rapid prototyping
317
+ - Go: Microservices, cloud-native, concurrency
318
+ - Rust: Systems programming, performance-critical, safety
319
+ ```
320
+
321
+ **[See 40+ more examples →](../docs/EXAMPLES.md)**
322
+
323
+ ---
324
+
325
+ ## How It Works
326
+
327
+ ### Auto-trigger
328
+
329
+ The skill automatically triggers for questions containing:
330
+ - **Time-sensitive**: "latest", "recent", "today", "now", "2026"
331
+ - **Information**: "what is", "tell me about", "how to"
332
+ - **Comparison**: "best", "top", "vs", "compare"
333
+ - **Location**: "where", "in [city]", "near me"
334
+ - **Chinese**: "最近", "什么", "哪里", "怎么样"
335
+ - **Japanese**: "最近", "何", "どこ", "どう"
336
+ - **Korean**: "최근", "무엇", "어디", "어떻게"
337
+
338
+ ### Manual Trigger
339
+
340
+ Force the skill to run:
341
+ ```
342
+ /felo-search your query here
343
+ ```
344
+
345
+ Or use trigger phrases:
346
+ ```
347
+ Search with Felo for [query]
348
+ Felo search: [query]
349
+ Use Felo to find [query]
350
+ ```
351
+
352
+ ### Response Format
353
+
354
+ Each response includes:
355
+
356
+ 1. **Answer** - AI-generated comprehensive answer
357
+ 2. **Query Analysis** - Optimized search queries used by Felo
358
+
359
+ Example:
360
+ ```
361
+ ## Answer
362
+ [Comprehensive AI-generated answer]
363
+
364
+ ## Query Analysis
365
+ Optimized queries: ["query 1", "query 2"]
366
+ ```
367
+
368
+ ---
369
+
370
+ ## Troubleshooting
371
+
372
+ ### "FELO_API_KEY not set" error
373
+
374
+ **Problem:** Environment variable not configured.
375
+
376
+ **Solution:**
377
+ ```bash
378
+ # Linux/macOS
379
+ export FELO_API_KEY="your-key"
380
+
381
+ # Windows PowerShell
382
+ $env:FELO_API_KEY="your-key"
383
+ ```
384
+
385
+ Then restart Claude Code.
386
+
387
+ ### "INVALID_API_KEY" error
388
+
389
+ **Problem:** API key is incorrect or revoked.
390
+
391
+ **Solution:** Generate a new key at [felo.ai](https://felo.ai) (Settings → API Keys).
392
+
393
+ ### "curl: command not found" error
394
+
395
+ **Problem:** curl is not installed.
396
+
397
+ **Solution:**
398
+ ```bash
399
+ # Linux (Debian/Ubuntu)
400
+ sudo apt install curl
401
+
402
+ # macOS
403
+ brew install curl
404
+
405
+ # Windows
406
+ # curl is built-in on Windows 10+
407
+ ```
408
+
409
+ ### Skill not triggering automatically
410
+
411
+ **Problem:** Query doesn't match trigger keywords.
412
+
413
+ **Solution:** Use manual trigger:
414
+ ```
415
+ /felo-search your query
416
+ ```
417
+
418
+ ### Character encoding issues (Chinese/Japanese)
419
+
420
+ **Problem:** Special characters not displaying correctly.
421
+
422
+ **Solution:** Ensure your terminal supports UTF-8 encoding. The skill uses heredoc to handle special characters properly.
423
+
424
+ **[See full FAQ →](../docs/FAQ.md)**
425
+
426
+ ---
427
+
428
+ ## Links
429
+
430
+ - **[Get API Key](https://felo.ai)** - Settings → API Keys
431
+ - **[API Documentation](https://openapi.felo.ai)** - Full API reference
432
+ - **[Usage Examples](../docs/EXAMPLES.md)** - 40+ real-world examples
433
+ - **[FAQ](../docs/FAQ.md)** - Common issues and solutions
434
+ - **[Report Issues](https://github.com/Felo-Inc/felo-skills/issues)** - Bug reports and feature requests
435
+
436
+ ---
437
+
438
+ ## License
439
+
440
+ MIT License - see [LICENSE](./LICENSE) for details.