Star 历史趋势
数据来源: GitHub API · 生成自 Stargazers.cn
README.md

Felo AI CLI

Felo AI

Ask anything. Get current answers. Generate slides and mindmaps from a prompt.

npm version Discord X (Twitter) MIT License

Felo AI CLI — Real-time search, PPT generation, mindmap creation, web fetch, YouTube subtitles, and X (Twitter) search, SuperAgent conversation, and Twitter writing from the terminal. Also works as Claude Code skills, including landing page creation. Supports Chinese, English, Japanese, and Korean.

Felo AI · Docs · API Reference · Examples · FAQ · ClawHub · Discord · X (Twitter)


Install

npm install -g felo-ai

Get your API key from Felo AI (Settings → API Keys), then:

felo config set FELO_API_KEY your-api-key-here

That's it. The key is persisted in ~/.felo/config.json. You can also use environment variables as an alternative:

export FELO_API_KEY="..." # Linux/macOS $env:FELO_API_KEY="..." # Windows (PowerShell)

Commands

CommandDescription
felo search "<query>"Search for current info (weather, news, prices, etc.)
felo slides "<prompt>"Generate PPT; returns link when done
felo mindmap "<query>"Generate mindmap; returns link immediately
felo web-fetch --url <url>Fetch webpage content (markdown/text/html)
felo youtube-subtitling -v <url-or-id>Fetch YouTube video subtitles
felo x "<query>"Search X (Twitter) tweets, users, and replies
felo livedoc <subcommand>Manage LiveDocs (knowledge bases) and resources
felo apple-buy-advisor "<query>"Research and compare Apple products before you buy
felo superagent "<query>"AI conversation with real-time streaming output
felo style-library <category>List brand styles from the style library
felo config <set|get|list|path>Manage API key and config

Examples

Search

felo search "Tokyo weather" felo search "React 19 new features" --verbose felo search "MacBook Air M3 price" --json

Slides

felo slides "Felo product intro, 3 slides" felo slides "Q4 2024 business review, 10 pages" --poll-timeout 300

Mindmap

felo mindmap "AI trends in 2024" felo mindmap "Project timeline" --layout TIMELINE felo mindmap "Problem analysis" --layout FISHBONE --json felo mindmap-layouts # List available layouts

Web Fetchfull options →

felo web-fetch --url "https://example.com" felo web-fetch --url "https://example.com" --format markdown --readability

YouTube Subtitlingfull options →

felo youtube-subtitling -v "https://www.youtube.com/watch?v=dQw4w9WgXcQ" felo youtube-subtitling -v "dQw4w9WgXcQ" --language zh-CN --with-time

X (Twitter) Searchfull options →

felo x "AI news" # Search tweets felo x "OpenAI" --user # Search users felo x --id "elonmusk" --user # Get user info felo x --id "elonmusk" --user --tweets # Get user tweets felo x --id "1234567890" # Get tweet replies

LiveDoc (Knowledge Base)full options →

felo livedoc create --name "My KB" --description "Project docs" felo livedoc list felo livedoc add-doc SHORT_ID --content "Hello" --title "Test" felo livedoc add-urls SHORT_ID --urls "https://example.com" felo livedoc upload SHORT_ID --file ./doc.pdf felo livedoc retrieve SHORT_ID --query "search query"

Apple Buy Advisorfull options →

# Use as Felo CLI command felo apple-buy-advisor "Should I buy MacBook Pro M4?" felo apple-buy-advisor "Compare iPhone 17 vs iPhone 17e" felo apple-buy-advisor "Is it worth upgrading to iPad Air 13?"
# Use as Claude Code skill /apple-buy-advisor Should I buy MacBook Pro M4? /apple-buy-advisor Compare iPhone 17 vs iPhone 17e /apple-buy-advisor Is it worth upgrading to iPad Air 13?

Twitter Writerfull options →

# Use as Claude Code skill — Claude automatically fetches your style library # and asks you to pick a writing style before generating /felo-twitter-writer Analyze @paulg's tweet style and extract a style DNA /felo-twitter-writer Write 3 tweets about AI trends /felo-twitter-writer Write a Twitter thread about why most startups fail /felo-twitter-writer Write a tweet about AI in the style of @darioamodei
# Run scripts directly node felo-superAgent/scripts/run_style_library.mjs --category TWITTER --accept-language en node felo-superAgent/scripts/run_superagent.mjs \ --query "/twitter-writer Write a tweet about AI trends" \ --live-doc-id "LIVE_DOC_ID" \ --skill-id twitter-writer \ --ext '{"brand_style_requirement":"Style name: darioamodei\nStyle labels: Thoughtful long-form essays\nStyle DNA: ..."}' \ --accept-language en

SuperAgentfull options →

# Use as Claude Code skill /felo-superAgent What is the latest news about AI? /felo-superAgent Write a tweet about quantum computing /felo-superAgent Design a logo for my coffee shop
# Run script directly node felo-superAgent/scripts/run_superagent.mjs --query "What is quantum computing?" --live-doc-id "LIVE_DOC_ID" node felo-superAgent/scripts/run_superagent.mjs --query "Tell me more" --thread-id <thread_short_id> --live-doc-id "LIVE_DOC_ID"
# CLI commands felo superagent "What is the latest news about AI?" felo superagent "Tell me more" --thread-id <thread_short_id> felo style-library TWITTER --accept-language en felo style-library IMAGE --accept-language zh-Hans

Doc Snapshot Agentfull options →

# Use as Claude Code skill — Claude parses image markers, captures screenshots, # generates AI images, and produces an illustrated Markdown document /doc-snapshot-agent Add images to my article cases/getting-started.md /doc-snapshot-agent Recapture screenshot A3 in cases/product-overview.md /doc-snapshot-agent Regenerate all images from scratch for cases/tutorial.md

See 40+ more examples →


Skills Overview

12 skills across search, content generation, web scraping, social media, knowledge base, shopping advice, and document illustration:

SkillDescriptionDocs
felo-searchReal-time web search with AI answers. Triggers automatically.
felo-slidesGenerate PPT from a prompt
felo-landingpageGenerate a hosted landing page/webpage from a prompt
felo-web-fetchFetch and extract webpage content
felo-youtube-subtitlingFetch YouTube video subtitles
felo-x-searchSearch X (Twitter) tweets, users, replies
felo-livedocManage knowledge bases and semantic retrieval
apple-buy-advisorResearch and compare Apple products before you buy
felo-twitter-writerAnalyze tweet style DNA; compose tweets, threads, X posts with brand style
felo-superAgentAI conversation with real-time streaming, brand style support, continuous threads
felo-mindmapGenerate mindmaps with various layouts
doc-snapshot-agentAutomatically illustrate Markdown documents with screenshots and AI-generated images

Using felo-twitter-writer and felo-superAgent with Claude Code

These two skills work together and share the style library. Here is how Claude uses them.

Installation

# Via ClawHub # felo-twitter-writer depends on felo-superAgent + felo-livedoc; felo-superAgent depends on felo-livedoc clawhub install felo-twitter-writer clawhub install felo-superAgent clawhub install felo-livedoc clawhub install felo-x-search # Manual cp -r felo-twitter-writer ~/.claude/skills/ cp -r felo-superAgent ~/.claude/skills/ cp -r felo-livedoc ~/.claude/skills/ cp -r felo-x-search ~/.claude/skills/

felo-twitter-writer

Trigger keywords: write a tweet, twitter thread, style DNA, imitate tweet style, tweet in the style of, X account analysis, ghostwrite tweets

/felo-twitter-writer Analyze @paulg's tweet style
/felo-twitter-writer Write 3 tweets about AI trends
/felo-twitter-writer Write a Twitter thread about why most startups fail

What Claude does automatically for tweet writing (Mode 2, new conversation):

  1. Calls run_style_library.mjs --category TWITTER to fetch your saved writing styles
  2. Presents the list grouped as [Your styles] / [Recommended styles] with a "No preference" option
  3. Waits for your selection, then calls SuperAgent with the full style block in --ext
  4. Streams the result in real time — follow-ups reuse the thread without re-fetching styles
You:    Write a Twitter thread about why most startups fail

Claude: Here are the available Twitter writing styles — choosing one will make
        the output more accurate:

        [Your styles]
        1. My Bold Voice

        [Recommended styles]
        2. darioamodei

        0. No preference — use default style

You:    1

Claude: [streams the thread in "My Bold Voice" style]

You:    Make the hook tweet more provocative

Claude: [follow-up — no style re-selection needed]

If the style library is empty, Claude skips the selection step silently.

felo-superAgent

Trigger keywords: superagent, super agent, stream chat, streaming conversation, write a tweet, create a logo, product image

/felo-superAgent What is the latest news about AI?
/felo-superAgent Write a tweet about quantum computing
/felo-superAgent Design a logo for my coffee shop
/felo-superAgent Generate a product image for wireless headphones

What Claude does automatically for skill-based conversations:

Skill intentStyle category fetched--skill-id passed
Write tweetsTWITTERtwitter-writer
Logo / brandingIMAGElogo-and-branding
Product imagesIMAGEecommerce-product-image
General conversation

For skill-based new conversations, Claude fetches the matching style library, presents options, and passes the chosen style via --ext '{"brand_style_requirement":"..."}'. The style block includes Style name, Style labels, Style DNA, and optionally Cover file ID — passed completely, never truncated.

Thread and LiveDoc management:

  • Claude reuses the same LiveDoc across the entire session
  • Every message after the first is a follow-up (--thread-id) by default
  • A new thread is only started when you say "new topic", "start over", or when a different skill ID is needed
  • --ext is only passed for new conversations, never for follow-ups

Skills Install

Claude Code

# Via ClawHub (recommended) clawhub install felo-search clawhub install felo-slides clawhub install felo-landingpage clawhub install felo-mindmap clawhub install felo-web-fetch clawhub install felo-youtube-subtitling clawhub install felo-x-search clawhub install felo-livedoc clawhub install apple-buy-advisor clawhub install doc-snapshot-agent # felo-superAgent depends on felo-livedoc — install both: clawhub install felo-superAgent clawhub install felo-livedoc # felo-twitter-writer depends on felo-superAgent and felo-livedoc — install all three: clawhub install felo-twitter-writer clawhub install felo-superAgent clawhub install felo-livedoc
# Manual git clone https://github.com/Felo-Inc/felo-skills.git cd felo-skills cp -r felo-search ~/.claude/skills/ cp -r felo-slides ~/.claude/skills/ cp -r felo-landingpage ~/.claude/skills/ cp -r felo-web-fetch ~/.claude/skills/ cp -r felo-youtube-subtitling ~/.claude/skills/ cp -r felo-x-search ~/.claude/skills/ cp -r felo-livedoc ~/.claude/skills/ cp -r apple-buy-advisor ~/.claude/skills/ cp -r felo-twitter-writer ~/.claude/skills/ cp -r felo-superAgent ~/.claude/skills/ cp -r doc-snapshot-agent ~/.claude/skills/

Gemini CLI

git clone https://github.com/Felo-Inc/felo-skills.git cd felo-skills cp -r felo-search ~/.gemini/skills/ cp -r felo-slides ~/.gemini/skills/ cp -r felo-landingpage ~/.gemini/skills/ cp -r felo-web-fetch ~/.gemini/skills/ cp -r felo-youtube-subtitling ~/.gemini/skills/ cp -r felo-x-search ~/.gemini/skills/ cp -r felo-livedoc ~/.gemini/skills/ cp -r apple-buy-advisor ~/.gemini/skills/ cp -r felo-twitter-writer ~/.gemini/skills/ cp -r felo-superAgent ~/.gemini/skills/ cp -r doc-snapshot-agent ~/.gemini/skills/

OpenAI Codex

git clone https://github.com/Felo-Inc/felo-skills.git cd felo-skills cp -r felo-search ~/.codex/skills/ cp -r felo-slides ~/.codex/skills/ cp -r felo-landingpage ~/.codex/skills/ cp -r felo-web-fetch ~/.codex/skills/ cp -r felo-youtube-subtitling ~/.codex/skills/ cp -r felo-x-search ~/.codex/skills/ cp -r felo-livedoc ~/.codex/skills/ cp -r apple-buy-advisor ~/.codex/skills/ cp -r felo-twitter-writer ~/.codex/skills/ cp -r felo-superAgent ~/.codex/skills/ cp -r doc-snapshot-agent ~/.codex/skills/

OpenClaw

# Installs all skills that contain a SKILL.md (includes felo-twitter-writer and felo-superAgent) bash <(curl -s https://raw.githubusercontent.com/Felo-Inc/felo-skills/main/scripts/openclaw-install.sh)

Hermes

# Installs all skills that contain a SKILL.md (includes felo-twitter-writer and felo-superAgent) bash <(curl -s https://raw.githubusercontent.com/Felo-Inc/felo-skills/main/scripts/install-hermes.sh)

FAQ

  • Key not found? Run felo config set FELO_API_KEY <key> or set the FELO_API_KEY environment variable.
  • Request timeout? Use --timeout 120 (default 60s). 5xx errors are retried automatically.
  • Slides taking long? Use --poll-timeout 300 (default 1200s) to limit wait.
  • Skill not triggering? Use /felo-search your query to trigger manually.
  • Multi-language? Yes — Chinese, English, Japanese, and Korean are supported.

Full FAQ →


Contributing

We welcome contributions — report bugs, improve docs, or add new skills. Run tests with npm test.

Contributing guide →


License

MIT — see LICENSE for details.


Made with ❤️ by the Felo team

关于 About

No description, website, or topics provided.

语言 Languages

JavaScript95.6%
Python2.2%
Shell2.2%

提交活跃度 Commit Activity

代码提交热力图
过去 52 周的开发活跃度
262
Total Commits
峰值: 90次/周
Less
More

核心贡献者 Contributors