felo-ai 0.2.25 → 0.2.28

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/CHANGELOG.md CHANGED
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
- ## [0.2.24] - 2026-03-17
8
+ ## [0.2.25] - 2026-03-17
9
9
 
10
10
  ### Added
11
11
 
@@ -230,8 +230,7 @@ Examples:
230
230
  node felo-superAgent/scripts/run_superagent.mjs \
231
231
  --query "USER_QUERY_HERE" \
232
232
  --live-doc-id "LIVE_DOC_ID" \
233
- --accept-language en \
234
- --timeout 3600
233
+ --accept-language en
235
234
  ```
236
235
 
237
236
  **New conversation with skill ID (e.g., tweet writing):**
@@ -240,8 +239,7 @@ node felo-superAgent/scripts/run_superagent.mjs \
240
239
  --query "Write a tweet about the latest AI trends" \
241
240
  --live-doc-id "LIVE_DOC_ID" \
242
241
  --skill-id twitter-writer \
243
- --accept-language en \
244
- --timeout 3600
242
+ --accept-language en
245
243
  ```
246
244
 
247
245
  **Follow-up question (DEFAULT for 2nd+ messages):**
@@ -249,8 +247,7 @@ node felo-superAgent/scripts/run_superagent.mjs \
249
247
  node felo-superAgent/scripts/run_superagent.mjs \
250
248
  --query "USER_FOLLOW_UP_QUERY" \
251
249
  --thread-id "THREAD_SHORT_ID_FROM_PREVIOUS" \
252
- --live-doc-id "LIVE_DOC_ID" \
253
- --timeout 3600
250
+ --live-doc-id "LIVE_DOC_ID"
254
251
  ```
255
252
 
256
253
  ### Step 6: Extract State from stderr (Do NOT Re-output the Answer)
@@ -284,7 +281,7 @@ User: "What is quantum computing?"
284
281
  node felo-superAgent/scripts/run_superagent.mjs \
285
282
  --query "What is quantum computing?" \
286
283
  --live-doc-id "QPetunwpGnkKuZHStP7gwt" \
287
- --accept-language en --timeout 3600
284
+ --accept-language en
288
285
  ```
289
286
  **Step 6:** The answer is already streamed to the user. Extract from stderr `[state]` line: `thread_short_id = "CmYpuGwBgCnrUdDx5ZtmxA"`, `live_doc_id = "QPetunwpGnkKuZHStP7gwt"`. Do NOT repeat the answer.
290
287
 
@@ -299,8 +296,7 @@ User: "What are its practical applications?"
299
296
  node felo-superAgent/scripts/run_superagent.mjs \
300
297
  --query "What are its practical applications?" \
301
298
  --thread-id "CmYpuGwBgCnrUdDx5ZtmxA" \
302
- --live-doc-id "QPetunwpGnkKuZHStP7gwt" \
303
- --timeout 3600
299
+ --live-doc-id "QPetunwpGnkKuZHStP7gwt"
304
300
  ```
305
301
  **Step 6:** Answer already streamed. Extract updated `thread_short_id` from stderr `[state]` line (may be the same), keep `live_doc_id`.
306
302
 
@@ -326,7 +322,7 @@ node felo-superAgent/scripts/run_superagent.mjs \
326
322
  --query "Help me write a tweet about AI trends" \
327
323
  --live-doc-id "QPetunwpGnkKuZHStP7gwt" \
328
324
  --skill-id twitter-writer \
329
- --accept-language en --timeout 3600
325
+ --accept-language en
330
326
  ```
331
327
  **Step 6:** Answer already streamed. Extract new `thread_short_id` from stderr `[state]` line, keep same `live_doc_id`.
332
328
 
@@ -340,8 +336,7 @@ User: "Make it more casual and add some emojis"
340
336
  node felo-superAgent/scripts/run_superagent.mjs \
341
337
  --query "Make it more casual and add some emojis" \
342
338
  --thread-id "NEW_THREAD_FROM_TWEET" \
343
- --live-doc-id "QPetunwpGnkKuZHStP7gwt" \
344
- --timeout 3600
339
+ --live-doc-id "QPetunwpGnkKuZHStP7gwt"
345
340
  ```
346
341
 
347
342
  ### Example C: Logo Design
@@ -357,7 +352,7 @@ node felo-superAgent/scripts/run_superagent.mjs \
357
352
  --query "Design a logo for my coffee shop called Bean & Brew" \
358
353
  --live-doc-id "QPetunwpGnkKuZHStP7gwt" \
359
354
  --skill-id logo-and-branding \
360
- --accept-language en --timeout 3600
355
+ --accept-language en
361
356
  ```
362
357
 
363
358
  ### Example D: E-commerce Product Image
@@ -373,7 +368,7 @@ node felo-superAgent/scripts/run_superagent.mjs \
373
368
  --query "Generate a product image for a wireless headphone on white background" \
374
369
  --live-doc-id "QPetunwpGnkKuZHStP7gwt" \
375
370
  --skill-id ecommerce-product-image \
376
- --accept-language en --timeout 3600
371
+ --accept-language en
377
372
  ```
378
373
 
379
374
  ### Example E: User Requests a New Canvas
@@ -394,7 +389,6 @@ Extract new `live_doc_id`. Discard the old one. All subsequent calls use the new
394
389
  - `--query <text>` (REQUIRED) — User question, 1-2000 characters
395
390
  - `--live-doc-id <id>` (REQUIRED for new conversations) — LiveDoc ID (`live_doc_id`) to associate with
396
391
  - `--thread-id <id>` — Thread ID from previous response, for follow-up conversations
397
- - `--timeout <seconds>` — Request/stream timeout, default 3600 seconds
398
392
 
399
393
  **Skill parameters (new conversations only, ignored in follow-up):**
400
394
  - `--skill-id <id>` — Skill ID (see Constraint #8 for available skill IDs)
@@ -505,9 +499,8 @@ To use this skill, you need to set up your Felo API Key:
505
499
 
506
500
  ### Timeout Handling
507
501
 
508
- - Default timeout: 3600 seconds (recommended for all SuperAgent calls due to SSE streaming)
509
- - Idle timeout: 2 hours (no data received)
510
- - **Bash tool timeout:** MUST be set to at least 600000ms (10 minutes) when executing the script
502
+ - The SSE stream has its own idle timeout: 2 hours (no data received). The stream stays open as long as data keeps flowing.
503
+ - **Bash tool timeout:** MUST be set to at least 600000ms (10 minutes) when executing the script, because the SSE stream can run for a long time.
511
504
 
512
505
  ## Important Notes
513
506
 
@@ -561,3 +554,4 @@ Do NOT repeat or summarize the answer (already shown)
561
554
  - [SuperAgent API (Felo Open Platform)](https://openapi.felo.ai/docs/api-reference/v2/superagent.html)
562
555
  - [Felo Open Platform](https://openapi.felo.ai/docs/)
563
556
  - [Get API Key](https://felo.ai) (Settings -> API Keys)
557
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "felo-ai",
3
- "version": "0.2.25",
3
+ "version": "0.2.28",
4
4
  "description": "Felo AI CLI - real-time search, PPT generation, SuperAgent conversation, LiveDoc management, web fetch, YouTube subtitles, LiveDoc knowledge base, and X (Twitter) search from the terminal",
5
5
  "type": "module",
6
6
  "main": "src/cli.js",