felo-ai 0.2.0
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.
- package/CONTRIBUTING.md +346 -0
- package/README.en.md +87 -0
- package/README.ja.md +87 -0
- package/README.ko.md +87 -0
- package/README.md +328 -0
- package/README.zh-CN.md +87 -0
- package/README.zh-TW.md +87 -0
- package/docs/EXAMPLES.md +681 -0
- package/docs/FAQ.md +479 -0
- package/felo-search/LICENSE +21 -0
- package/felo-search/README.md +495 -0
- package/felo-search/SKILL.md +292 -0
- package/package.json +33 -0
- package/src/cli.js +148 -0
- package/src/config.js +66 -0
- package/src/search.js +142 -0
- package/src/slides.js +228 -0
- package/tests/config.test.js +78 -0
- package/tests/search.test.js +100 -0
package/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,346 @@
|
|
|
1
|
+
# Contributing to Felo Skills
|
|
2
|
+
|
|
3
|
+
We welcome contributions! Whether you want to report bugs, suggest features, improve documentation, or add new skills.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## How to Contribute
|
|
8
|
+
|
|
9
|
+
### 1. Report Bugs
|
|
10
|
+
|
|
11
|
+
Found a bug? [Open an issue](https://github.com/Felo-Inc/felo-skills/issues/new) with:
|
|
12
|
+
- Clear description of the problem
|
|
13
|
+
- Steps to reproduce
|
|
14
|
+
- Expected vs actual behavior
|
|
15
|
+
- Environment (OS, Claude Code version, skill version)
|
|
16
|
+
- Error messages or logs
|
|
17
|
+
|
|
18
|
+
### 2. Suggest Features
|
|
19
|
+
|
|
20
|
+
Have an idea? [Start a discussion](https://github.com/Felo-Inc/felo-skills/discussions) or open an issue with:
|
|
21
|
+
- Use case description
|
|
22
|
+
- Why this feature is useful
|
|
23
|
+
- Proposed implementation (optional)
|
|
24
|
+
|
|
25
|
+
### 3. Submit Code
|
|
26
|
+
|
|
27
|
+
Ready to code? Follow the pull request process below.
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## Development Setup
|
|
32
|
+
|
|
33
|
+
### Prerequisites
|
|
34
|
+
|
|
35
|
+
- Git
|
|
36
|
+
- Claude Code CLI
|
|
37
|
+
- Node.js (for testing npx installation)
|
|
38
|
+
- Text editor
|
|
39
|
+
|
|
40
|
+
### Clone the Repository
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
git clone https://github.com/Felo-Inc/felo-skills.git
|
|
44
|
+
cd felo-skills
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
### Test Locally
|
|
48
|
+
|
|
49
|
+
Copy a skill to your Claude Code skills directory:
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
# Linux/macOS
|
|
53
|
+
cp -r felo-search ~/.claude/skills/
|
|
54
|
+
|
|
55
|
+
# Windows (PowerShell)
|
|
56
|
+
Copy-Item -Recurse felo-search "$env:USERPROFILE\.claude\skills\"
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
Restart Claude Code:
|
|
60
|
+
```bash
|
|
61
|
+
claude restart
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
Test the skill:
|
|
65
|
+
```
|
|
66
|
+
Ask Claude: "What's the weather today?"
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
---
|
|
70
|
+
|
|
71
|
+
## Adding a New Skill
|
|
72
|
+
|
|
73
|
+
### Folder Structure
|
|
74
|
+
|
|
75
|
+
Create a new folder for your skill:
|
|
76
|
+
|
|
77
|
+
```
|
|
78
|
+
your-skill-name/
|
|
79
|
+
├── SKILL.md # Skill implementation (required)
|
|
80
|
+
├── README.md # User documentation (required)
|
|
81
|
+
└── LICENSE # MIT License (required)
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
### SKILL.md Format
|
|
85
|
+
|
|
86
|
+
The `SKILL.md` file defines how the skill works. Use this template:
|
|
87
|
+
|
|
88
|
+
```markdown
|
|
89
|
+
---
|
|
90
|
+
name: your-skill-name
|
|
91
|
+
description: "Brief description of when to use this skill. Include trigger keywords and use cases."
|
|
92
|
+
---
|
|
93
|
+
|
|
94
|
+
# Your Skill Name
|
|
95
|
+
|
|
96
|
+
## When to Use
|
|
97
|
+
|
|
98
|
+
List specific scenarios when this skill should trigger:
|
|
99
|
+
- Scenario 1
|
|
100
|
+
- Scenario 2
|
|
101
|
+
- Trigger keywords: "keyword1", "keyword2"
|
|
102
|
+
|
|
103
|
+
## Setup
|
|
104
|
+
|
|
105
|
+
Step-by-step setup instructions:
|
|
106
|
+
1. Get API key from [service]
|
|
107
|
+
2. Set environment variable
|
|
108
|
+
3. Test the skill
|
|
109
|
+
|
|
110
|
+
## How to Execute
|
|
111
|
+
|
|
112
|
+
Detailed instructions for Claude Code on how to execute this skill:
|
|
113
|
+
|
|
114
|
+
### Step 1: Check Prerequisites
|
|
115
|
+
[Bash commands to verify setup]
|
|
116
|
+
|
|
117
|
+
### Step 2: Execute Main Logic
|
|
118
|
+
[Bash commands or tool calls to perform the skill's function]
|
|
119
|
+
|
|
120
|
+
### Step 3: Format Response
|
|
121
|
+
[How to present results to the user]
|
|
122
|
+
|
|
123
|
+
## Examples
|
|
124
|
+
|
|
125
|
+
### Example 1: [Scenario]
|
|
126
|
+
**User asks:** "example query"
|
|
127
|
+
**You MUST do:** [step-by-step execution]
|
|
128
|
+
|
|
129
|
+
## Error Handling
|
|
130
|
+
|
|
131
|
+
Common errors and solutions:
|
|
132
|
+
- Error 1: Solution
|
|
133
|
+
- Error 2: Solution
|
|
134
|
+
|
|
135
|
+
## Important Notes
|
|
136
|
+
|
|
137
|
+
- Key implementation details
|
|
138
|
+
- Best practices
|
|
139
|
+
- Limitations
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
### README.md Format
|
|
143
|
+
|
|
144
|
+
User-facing documentation. Use this structure:
|
|
145
|
+
|
|
146
|
+
```markdown
|
|
147
|
+
# Your Skill Name
|
|
148
|
+
|
|
149
|
+
**One-line description**
|
|
150
|
+
|
|
151
|
+
Brief overview of what the skill does.
|
|
152
|
+
|
|
153
|
+
---
|
|
154
|
+
|
|
155
|
+
## What It Does
|
|
156
|
+
|
|
157
|
+
- Feature 1
|
|
158
|
+
- Feature 2
|
|
159
|
+
- Feature 3
|
|
160
|
+
|
|
161
|
+
**When to use:**
|
|
162
|
+
- Use case 1
|
|
163
|
+
- Use case 2
|
|
164
|
+
|
|
165
|
+
**When NOT to use:**
|
|
166
|
+
- Anti-pattern 1
|
|
167
|
+
- Anti-pattern 2
|
|
168
|
+
|
|
169
|
+
---
|
|
170
|
+
|
|
171
|
+
## Quick Setup
|
|
172
|
+
|
|
173
|
+
### Step 1: Install
|
|
174
|
+
[Installation command]
|
|
175
|
+
|
|
176
|
+
### Step 2: Configure
|
|
177
|
+
[Configuration steps with verification]
|
|
178
|
+
|
|
179
|
+
### Step 3: Test
|
|
180
|
+
[Test command]
|
|
181
|
+
|
|
182
|
+
---
|
|
183
|
+
|
|
184
|
+
## Usage Examples
|
|
185
|
+
|
|
186
|
+
[Real-world examples with input/output]
|
|
187
|
+
|
|
188
|
+
---
|
|
189
|
+
|
|
190
|
+
## Troubleshooting
|
|
191
|
+
|
|
192
|
+
[Common issues and solutions]
|
|
193
|
+
|
|
194
|
+
---
|
|
195
|
+
|
|
196
|
+
## Links
|
|
197
|
+
|
|
198
|
+
- [Service website]
|
|
199
|
+
- [API documentation]
|
|
200
|
+
- [Report issues]
|
|
201
|
+
```
|
|
202
|
+
|
|
203
|
+
### Testing Checklist
|
|
204
|
+
|
|
205
|
+
Before submitting, verify:
|
|
206
|
+
|
|
207
|
+
- [ ] Skill triggers correctly for intended scenarios
|
|
208
|
+
- [ ] Error handling works (missing API key, network errors, etc.)
|
|
209
|
+
- [ ] Multi-language support (if applicable)
|
|
210
|
+
- [ ] Documentation is clear and complete
|
|
211
|
+
- [ ] Examples are realistic and helpful
|
|
212
|
+
- [ ] All commands are copy-paste ready
|
|
213
|
+
- [ ] Links work
|
|
214
|
+
- [ ] Tested on Windows, macOS, or Linux
|
|
215
|
+
|
|
216
|
+
---
|
|
217
|
+
|
|
218
|
+
## Pull Request Guidelines
|
|
219
|
+
|
|
220
|
+
### Branch Naming
|
|
221
|
+
|
|
222
|
+
Use descriptive branch names:
|
|
223
|
+
- `feature/add-xyz-skill` - New skill
|
|
224
|
+
- `fix/felo-search-encoding` - Bug fix
|
|
225
|
+
- `docs/improve-readme` - Documentation
|
|
226
|
+
- `refactor/skill-structure` - Code refactoring
|
|
227
|
+
|
|
228
|
+
### Commit Messages
|
|
229
|
+
|
|
230
|
+
Follow this format:
|
|
231
|
+
```
|
|
232
|
+
type: brief description
|
|
233
|
+
|
|
234
|
+
Detailed explanation (if needed)
|
|
235
|
+
```
|
|
236
|
+
|
|
237
|
+
Types:
|
|
238
|
+
- `feat`: New feature or skill
|
|
239
|
+
- `fix`: Bug fix
|
|
240
|
+
- `docs`: Documentation changes
|
|
241
|
+
- `refactor`: Code refactoring
|
|
242
|
+
- `test`: Testing improvements
|
|
243
|
+
- `chore`: Maintenance tasks
|
|
244
|
+
|
|
245
|
+
Examples:
|
|
246
|
+
```
|
|
247
|
+
feat: add weather-skill for real-time weather data
|
|
248
|
+
|
|
249
|
+
Integrates OpenWeatherMap API to provide current weather,
|
|
250
|
+
forecasts, and alerts. Supports multi-language queries.
|
|
251
|
+
|
|
252
|
+
fix: handle Chinese characters in felo-search
|
|
253
|
+
|
|
254
|
+
Use heredoc for JSON files to properly encode Chinese,
|
|
255
|
+
Japanese, and Korean characters.
|
|
256
|
+
|
|
257
|
+
docs: improve installation guide in README
|
|
258
|
+
|
|
259
|
+
Add verification steps after each installation step
|
|
260
|
+
to help users confirm setup is correct.
|
|
261
|
+
```
|
|
262
|
+
|
|
263
|
+
### Pull Request Description
|
|
264
|
+
|
|
265
|
+
Include:
|
|
266
|
+
|
|
267
|
+
1. **What**: What does this PR do?
|
|
268
|
+
2. **Why**: Why is this change needed?
|
|
269
|
+
3. **How**: How does it work?
|
|
270
|
+
4. **Testing**: How did you test this?
|
|
271
|
+
5. **Screenshots**: (if applicable)
|
|
272
|
+
|
|
273
|
+
Example:
|
|
274
|
+
```markdown
|
|
275
|
+
## What
|
|
276
|
+
Adds a new skill for real-time weather information using OpenWeatherMap API.
|
|
277
|
+
|
|
278
|
+
## Why
|
|
279
|
+
Users frequently ask about weather, and current web search is slow.
|
|
280
|
+
Direct API integration provides faster, more accurate results.
|
|
281
|
+
|
|
282
|
+
## How
|
|
283
|
+
- Integrates OpenWeatherMap API
|
|
284
|
+
- Auto-triggers for weather-related queries
|
|
285
|
+
- Supports location detection and multi-language
|
|
286
|
+
|
|
287
|
+
## Testing
|
|
288
|
+
- Tested on Windows 11, macOS 14, Ubuntu 22.04
|
|
289
|
+
- Verified with English, Chinese, Japanese queries
|
|
290
|
+
- Tested error handling (invalid API key, network errors)
|
|
291
|
+
|
|
292
|
+
## Screenshots
|
|
293
|
+
[Screenshot of weather query result]
|
|
294
|
+
```
|
|
295
|
+
|
|
296
|
+
### Review Process
|
|
297
|
+
|
|
298
|
+
1. Submit PR
|
|
299
|
+
2. Automated checks run (if configured)
|
|
300
|
+
3. Maintainers review code and documentation
|
|
301
|
+
4. Address feedback
|
|
302
|
+
5. PR merged
|
|
303
|
+
|
|
304
|
+
---
|
|
305
|
+
|
|
306
|
+
## Code of Conduct
|
|
307
|
+
|
|
308
|
+
### Be Respectful
|
|
309
|
+
|
|
310
|
+
- Use welcoming and inclusive language
|
|
311
|
+
- Respect differing viewpoints
|
|
312
|
+
- Accept constructive criticism gracefully
|
|
313
|
+
- Focus on what's best for the community
|
|
314
|
+
|
|
315
|
+
### Be Professional
|
|
316
|
+
|
|
317
|
+
- Keep discussions on-topic
|
|
318
|
+
- Avoid personal attacks
|
|
319
|
+
- Don't spam or self-promote
|
|
320
|
+
- Follow GitHub's terms of service
|
|
321
|
+
|
|
322
|
+
### Be Helpful
|
|
323
|
+
|
|
324
|
+
- Help newcomers get started
|
|
325
|
+
- Share knowledge and experience
|
|
326
|
+
- Provide constructive feedback
|
|
327
|
+
- Celebrate others' contributions
|
|
328
|
+
|
|
329
|
+
---
|
|
330
|
+
|
|
331
|
+
## Questions?
|
|
332
|
+
|
|
333
|
+
- **Documentation**: Check [README](./README.md) and skill docs
|
|
334
|
+
- **Discussions**: [GitHub Discussions](https://github.com/Felo-Inc/felo-skills/discussions)
|
|
335
|
+
- **Issues**: [GitHub Issues](https://github.com/Felo-Inc/felo-skills/issues)
|
|
336
|
+
- **Email**: support@felo.ai
|
|
337
|
+
|
|
338
|
+
---
|
|
339
|
+
|
|
340
|
+
## License
|
|
341
|
+
|
|
342
|
+
By contributing, you agree that your contributions will be licensed under the MIT License.
|
|
343
|
+
|
|
344
|
+
---
|
|
345
|
+
|
|
346
|
+
Thank you for contributing to Felo Skills! 🎉
|
package/README.en.md
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
# Felo AI
|
|
2
|
+
|
|
3
|
+
**Ask anything. Get current answers powered by AI.**
|
|
4
|
+
|
|
5
|
+
Felo AI provides a terminal CLI and Claude Code skill, with support for English, Chinese (Simplified & Traditional), Japanese, and Korean.
|
|
6
|
+
|
|
7
|
+
[]()
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## Two Core Capabilities
|
|
12
|
+
|
|
13
|
+
Felo AI offers two main features: **Real-time Search** and **PPT Generation**. Use them via the CLI in your terminal, or in Claude Code via the skill (search can trigger automatically).
|
|
14
|
+
|
|
15
|
+
### Capability 1: Real-time Search
|
|
16
|
+
|
|
17
|
+
Search the web for up-to-date information and get AI-synthesized answers. Ideal for weather, news, prices, documentation, tech updates, and any question that needs “right now” information.
|
|
18
|
+
|
|
19
|
+
- **Multi-language**: Ask in your preferred language.
|
|
20
|
+
- **Terminal**: `felo search "your question"`
|
|
21
|
+
- **Claude Code**: After installing the skill, it triggers automatically, or type `/felo-ai your question`
|
|
22
|
+
- **Examples**: `felo search "Tokyo weather"`, `felo search "React 19 new features" --verbose`
|
|
23
|
+
|
|
24
|
+
### Capability 2: Generate PPT
|
|
25
|
+
|
|
26
|
+
Describe a topic in one sentence and Felo generates a slideshow. The job runs in the cloud; when done, you get an **online document link** to open in your browser.
|
|
27
|
+
|
|
28
|
+
- **Terminal**: `felo slides "your topic or description"`
|
|
29
|
+
- **Examples**: `felo slides "Felo product intro, 3 slides"`, `felo slides "Introduction to React" --poll-timeout 300`
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## Install & Configure
|
|
34
|
+
|
|
35
|
+
### Install CLI
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
npm install -g felo-ai
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Run without installing: `npx felo-ai search "Tokyo weather"`
|
|
42
|
+
After install, the command is `felo`.
|
|
43
|
+
|
|
44
|
+
### Configure API Key
|
|
45
|
+
|
|
46
|
+
Recommended (persisted):
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
felo config set FELO_API_KEY your-api-key-here
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
Or set the environment variable: `export FELO_API_KEY="your-api-key-here"` (Linux/macOS), `$env:FELO_API_KEY="your-api-key-here"` (Windows PowerShell).
|
|
53
|
+
|
|
54
|
+
Get your API key at [felo.ai](https://felo.ai) (Settings → API Keys).
|
|
55
|
+
|
|
56
|
+
### Commands
|
|
57
|
+
|
|
58
|
+
| Command | Description |
|
|
59
|
+
|---------|-------------|
|
|
60
|
+
| `felo search "<query>"` | Real-time search |
|
|
61
|
+
| `felo slides "<prompt>"` | Generate PPT |
|
|
62
|
+
| `felo config set FELO_API_KEY <key>` | Save API key |
|
|
63
|
+
| `felo config get/list/path/unset` | View / list / path / remove config |
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
## Claude Code Skill
|
|
68
|
+
|
|
69
|
+
Install the skill:
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
npx @claude/skills add felo-ai
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
After setting `FELO_API_KEY`, ask Claude things like “What’s the weather in Tokyo today?” or “React 19 new features” and search will trigger automatically. PPT generation is available only via the terminal with `felo slides`.
|
|
76
|
+
|
|
77
|
+
---
|
|
78
|
+
|
|
79
|
+
## Links
|
|
80
|
+
|
|
81
|
+
- [Felo Open Platform](https://openapi.felo.ai/docs/) — Get your API key
|
|
82
|
+
- [API Documentation](https://openapi.felo.ai/docs/api-reference/v2/chat.html)
|
|
83
|
+
- [More examples](./docs/EXAMPLES.md) | [FAQ](./docs/FAQ.md) | [GitHub Issues](https://github.com/Felo-Inc/felo-skills/issues)
|
|
84
|
+
|
|
85
|
+
---
|
|
86
|
+
|
|
87
|
+
**Other languages / 其他语言:** [简体中文](README.zh-CN.md) | [日本語](README.ja.md) | [한국어](README.ko.md) | [繁體中文](README.zh-TW.md)
|
package/README.ja.md
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
# Felo AI
|
|
2
|
+
|
|
3
|
+
**何でも聞いて、AI で今の答えを。**
|
|
4
|
+
|
|
5
|
+
Felo AI はターミナル用 CLI と Claude Code スキルを提供し、日本語・英語・中国語(簡体・繁体)・韓国語に対応しています。
|
|
6
|
+
|
|
7
|
+
[]()
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## 2つの機能
|
|
12
|
+
|
|
13
|
+
Felo AI のコア機能は **リアルタイム検索** と **PPT 生成** です。ターミナルの CLI で使うほか、Claude Code のスキルとしても利用でき、検索は自動で発動します。
|
|
14
|
+
|
|
15
|
+
### 機能1: リアルタイム検索
|
|
16
|
+
|
|
17
|
+
最新情報を検索し、AI がまとめた回答を取得します。天気、ニュース、価格、ドキュメント、技術動向など、「今」の情報が必要なときに最適です。
|
|
18
|
+
|
|
19
|
+
- **多言語対応**: お好みの言語で質問できます。
|
|
20
|
+
- **ターミナル**: `felo search "質問"`
|
|
21
|
+
- **Claude Code**: スキル導入後は自動で発動。手動では `/felo-ai 質問`
|
|
22
|
+
- **例**: `felo search "東京の天気"`、`felo search "React 19 new features" --verbose`
|
|
23
|
+
|
|
24
|
+
### 機能2: PPT 生成
|
|
25
|
+
|
|
26
|
+
テーマや説明を一文で指定すると、PPT を自動作成します。処理はクラウドで実行され、完了後に**オンライン文書リンク**が返り、ブラウザで開いて確認・編集できます。
|
|
27
|
+
|
|
28
|
+
- **ターミナル**: `felo slides "テーマや説明"`
|
|
29
|
+
- **例**: `felo slides "Felo 製品紹介、3枚"`、`felo slides "Introduction to React" --poll-timeout 300`
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## インストールと設定
|
|
34
|
+
|
|
35
|
+
### CLI のインストール
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
npm install -g felo-ai
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
インストールせずに実行: `npx felo-ai search "東京の天気"`
|
|
42
|
+
インストール後のコマンドは `felo` です。
|
|
43
|
+
|
|
44
|
+
### API キー設定
|
|
45
|
+
|
|
46
|
+
推奨(永続保存):
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
felo config set FELO_API_KEY your-api-key-here
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
または環境変数: `export FELO_API_KEY="your-api-key-here"`(Linux/macOS)、`$env:FELO_API_KEY="your-api-key-here"`(Windows PowerShell)。
|
|
53
|
+
|
|
54
|
+
API キーは [felo.ai](https://felo.ai)(設定 → API Keys)で取得してください。
|
|
55
|
+
|
|
56
|
+
### コマンド一覧
|
|
57
|
+
|
|
58
|
+
| コマンド | 説明 |
|
|
59
|
+
|----------|------|
|
|
60
|
+
| `felo search "<query>"` | リアルタイム検索 |
|
|
61
|
+
| `felo slides "<prompt>"` | PPT 生成 |
|
|
62
|
+
| `felo config set FELO_API_KEY <key>` | API キー保存 |
|
|
63
|
+
| `felo config get/list/path/unset` | 設定の参照/一覧/パス/削除 |
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
## Claude Code スキル
|
|
68
|
+
|
|
69
|
+
スキルのインストール:
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
npx @claude/skills add felo-ai
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
`FELO_API_KEY` を設定後、「東京の今日の天気」「React 19 の新機能」などの質問で検索が自動発動します。PPT 生成は現状ターミナルの `felo slides` のみ対応です。
|
|
76
|
+
|
|
77
|
+
---
|
|
78
|
+
|
|
79
|
+
## リンク
|
|
80
|
+
|
|
81
|
+
- [Felo オープンプラットフォーム](https://openapi.felo.ai/docs/) — API キー取得
|
|
82
|
+
- [API ドキュメント](https://openapi.felo.ai/docs/api-reference/v2/chat.html)
|
|
83
|
+
- [その他の例](./docs/EXAMPLES.md) | [FAQ](./docs/FAQ.md) | [GitHub Issues](https://github.com/Felo-Inc/felo-skills/issues)
|
|
84
|
+
|
|
85
|
+
---
|
|
86
|
+
|
|
87
|
+
**他の言語 / Other languages:** [简体中文](README.zh-CN.md) | [English](README.en.md) | [한국어](README.ko.md) | [繁體中文](README.zh-TW.md)
|
package/README.ko.md
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
# Felo AI
|
|
2
|
+
|
|
3
|
+
**무엇이든 물어보고, AI로 최신 답을 받으세요.**
|
|
4
|
+
|
|
5
|
+
Felo AI는 터미널 CLI와 Claude Code 스킬을 제공하며, 한국어·영어·중국어(간체·번체)·일본어를 지원합니다.
|
|
6
|
+
|
|
7
|
+
[]()
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## 두 가지 핵심 기능
|
|
12
|
+
|
|
13
|
+
Felo AI의 핵심 기능은 **실시간 검색**과 **PPT 생성**입니다. 터미널 CLI로 사용하거나 Claude Code 스킬로 사용할 수 있으며, 검색은 자동으로 트리거됩니다.
|
|
14
|
+
|
|
15
|
+
### 기능 1: 실시간 검색
|
|
16
|
+
|
|
17
|
+
최신 정보를 검색하고 AI가 정리한 답변을 받습니다. 날씨, 뉴스, 가격, 문서, 기술 동향 등 「지금」 정보가 필요할 때 적합합니다.
|
|
18
|
+
|
|
19
|
+
- **다국어 지원**: 원하는 언어로 질문하면 됩니다.
|
|
20
|
+
- **터미널**: `felo search "질문"`
|
|
21
|
+
- **Claude Code**: 스킬 설치 후 자동 트리거, 또는 `/felo-ai 질문` 입력
|
|
22
|
+
- **예시**: `felo search "서울 날씨"`, `felo search "React 19 new features" --verbose`
|
|
23
|
+
|
|
24
|
+
### 기능 2: PPT 생성
|
|
25
|
+
|
|
26
|
+
주제나 설명을 한 문장으로 주면 PPT를 자동 생성합니다. 작업은 클라우드에서 실행되며, 완료 후 **온라인 문서 링크**를 반환해 브라우저에서 열어 확인·편집할 수 있습니다.
|
|
27
|
+
|
|
28
|
+
- **터미널**: `felo slides "주제 또는 설명"`
|
|
29
|
+
- **예시**: `felo slides "Felo 제품 소개, 3장"`, `felo slides "Introduction to React" --poll-timeout 300`
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## 설치 및 설정
|
|
34
|
+
|
|
35
|
+
### CLI 설치
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
npm install -g felo-ai
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
설치 없이 실행: `npx felo-ai search "서울 날씨"`
|
|
42
|
+
설치 후 사용하는 명령은 `felo` 입니다.
|
|
43
|
+
|
|
44
|
+
### API 키 설정
|
|
45
|
+
|
|
46
|
+
권장(영구 저장):
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
felo config set FELO_API_KEY your-api-key-here
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
또는 환경 변수: `export FELO_API_KEY="your-api-key-here"` (Linux/macOS), `$env:FELO_API_KEY="your-api-key-here"` (Windows PowerShell).
|
|
53
|
+
|
|
54
|
+
API 키는 [felo.ai](https://felo.ai)(설정 → API Keys)에서 발급받을 수 있습니다.
|
|
55
|
+
|
|
56
|
+
### 명령어 요약
|
|
57
|
+
|
|
58
|
+
| 명령 | 설명 |
|
|
59
|
+
|------|------|
|
|
60
|
+
| `felo search "<query>"` | 실시간 검색 |
|
|
61
|
+
| `felo slides "<prompt>"` | PPT 생성 |
|
|
62
|
+
| `felo config set FELO_API_KEY <key>` | API 키 저장 |
|
|
63
|
+
| `felo config get/list/path/unset` | 설정 조회/목록/경로/삭제 |
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
## Claude Code 스킬
|
|
68
|
+
|
|
69
|
+
스킬 설치:
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
npx @claude/skills add felo-ai
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
`FELO_API_KEY` 설정 후, Claude Code에서 「서울 오늘 날씨」「React 19 새 기능」 같은 질문을 하면 검색이 자동으로 실행됩니다. PPT 생성은 현재 터미널의 `felo slides` 로만 지원됩니다.
|
|
76
|
+
|
|
77
|
+
---
|
|
78
|
+
|
|
79
|
+
## 링크
|
|
80
|
+
|
|
81
|
+
- [Felo 오픈 플랫폼](https://openapi.felo.ai/docs/) — API 키 발급
|
|
82
|
+
- [API 문서](https://openapi.felo.ai/docs/api-reference/v2/chat.html)
|
|
83
|
+
- [더 많은 예시](./docs/EXAMPLES.md) | [FAQ](./docs/FAQ.md) | [GitHub Issues](https://github.com/Felo-Inc/felo-skills/issues)
|
|
84
|
+
|
|
85
|
+
---
|
|
86
|
+
|
|
87
|
+
**다른 언어 / Other languages:** [简体中文](README.zh-CN.md) | [English](README.en.md) | [日本語](README.ja.md) | [繁體中文](README.zh-TW.md)
|