Skip to main content

Felo Skills officially lands on OpenClaw: giving AI Agents real-time search and content creation capabilities

· 6 min read
Felo Search Tips Buddy
Committed to answers at your fingertips

Felo Skills adds real-time search, OpenClaw integration, and AI PPT generation to your AI Agent. Unlock live data and create faster—try it free

Your AI Agent can write code, manage files, and send messages — but can it search today’s news? Can it check trending discussions on X? Can it help you create a PPT?

In most cases, the answer is no. An AI Agent’s knowledge stops at the cutoff date of its training data, leaving it unaware of real-time information. This is one of the biggest shortcomings in today’s Agent ecosystem.

Felo AI is changing that. We have packaged our core capabilities into skill packages compliant with the Agent Skills open standard, officially launching in the OpenClaw and ClawHub ecosystems. With just one command, developers can give their AI Agents real-time search, social media data retrieval, and content creation capabilities.

Installation method:

npx clawhub@latest install felo-search
npx clawhub@latest install felo-slides
npx clawhub@latest install felo-x-search

Why AI Agents Need Felo Skills

OpenClaw gained over 180K GitHub Stars in less than 60 days, becoming a phenomenal project in the open-source AI Agent field. It can autonomously execute shell commands, browse the web, manage files, and control calendars—but it lacks one key ability: reliable real-time information access.

The built-in search capability of Agents is often unstable, with inconsistent result quality. In real-world work scenarios, what you need an Agent to do goes far beyond manipulating local files:

  • Research a topic — requires the latest industry data and news
  • Monitor competitor activities — requires real-time social media discussions
  • Prepare for a meeting — requires quickly generating a presentation

This is exactly the problem Felo Skills aims to solve.


Three Skills, Three Superpowers

Felo AI has released its first three OpenClaw skills, covering two major scenarios: information retrieval and content creation:

This is not just simple web crawling. felo-search invokes Felo AI’s conversational search engine, returning not just a list of links but structured answers + cited sources.

felo search "AI Agent market size in 2026"

The Agent will generate a well-organized response with traceable sources. It supports multiple languages — Chinese, English, Japanese, and more — with no translation required. Ask in your native language and access global information.

Applicable Scenarios:

  • Real-time news and industry updates inquiry
  • Product research and competitor analysis
  • Latest solutions to technical issues
  • Any workflow that requires the latest data

2. felo-x-search: X/Twitter data retrieval

Social media is the most vibrant source of information. felo-x-search allows Agents to directly search for users, tweets, and discussions on X (Twitter).

felo x "OpenAI" --limit 20
felo x --id "elonmusk" --user --tweets
felo x --id "1234567890" # Get tweet replies

Five API endpoints cover the complete X data retrieval needs:

| Capability | Description | | --- | --- | | User Lookup | Retrieve user profiles in bulk (number of followers, bio, number of posts) | | User Search | Search for related users by keywords | | User Tweets | Get the latest posts from a specified user | | Tweet Search | Search for posts by keywords, supporting advanced query syntax | | Tweet Replies | Retrieve the reply discussion of a specified post |

Applicable Scenarios:

  • Brand Public Opinion Monitoring
  • KOL and Influencer Tracking
  • Hot Topic Analysis
  • Competitor Social Media Strategy Research

3. felo-slides: AI PPT Generation

From a single sentence to a complete presentation. felo-slides takes a topic description and automatically generates a professional PPT file.

felo slides "Q1 AI Agent Market Analysis Report, including market size, key players, and trend forecasts"

The Agent creates tasks, automatically polls progress, and returns a downloadable PPT link once completed. The entire process requires no human intervention.

Applicable Scenarios:

  • Rapid generation of presentation slides for meetings
  • Visualization of research reports
  • Preparation of project report materials
  • Creation of teaching and training content

<!-- IMG PROMPT: Three-panel flat illustration showing Felo Skills capabilities. Left panel: magnifying glass with search results flowing out, representing real-time AI search. Center panel: X/Twitter bird icon with data streams of tweets and user profiles. Right panel: presentation slides being auto-generated from a text prompt. Clean minimal style, blue (#2563EB) accent color, white background, light gray cards. 16:9 aspect ratio. -->


Installation in Three Steps

Felo Skills follows the Agent Skills open standard released by Anthropic, making the installation process extremely simple.

Step 1: Obtain an API Key

Visit felo.ai, go to Settings → API Keys, create and copy your API Key.

Step 2: Configure Environment Variables

export FELO_API_KEY="your-api-key-here"

Step 3: Install the Skill

Install the Felo CLI globally through npm:

npm install -g felo-ai

After installation, your Agent can directly use the three commands felo search, felo x, and felo slides.

If you prefer manual integration, each skill also provides a complete curl API call example that can be embedded directly into any workflow.


Cross-platform compatibility: More than just OpenClaw

Felo Skills are built on the Agent Skills open standard. This means that the same set of skills can run not only in OpenClaw but also on platforms that support this standard, such as Claude Code and GitHub Copilot.

The core of a skill is a folder containing a SKILL.md file—declaring metadata with YAML frontmatter and describing execution logic with Markdown. No complex framework dependencies, no platform lock-in.

This is also why we chose this standard: write once, use everywhere.


Practical workflow example

Let's look at a complete scenario: you need to prepare an analytical report on the AI Agent market.

Traditional approach: Manual searching → Opening a dozen web pages → Copying and pasting → Organizing into a document → Making a PPT. Takes 3-4 hours.

Using Felo Skills:

1. felo search "2026 AI Agent market size trends"
→ Get the latest market data and trend analysis
2. felo x "AI Agent" --limit 30
→ Get trending discussions and industry opinions on X
3. felo slides "AI Agent market analysis: size, trends, and key players"
→ Automatically generate presentation slides

Three commands—from information gathering to outputting results—are all completed autonomously by the Agent.


Get Started

The core search function of Felo Skills is open for free. Get your API Key and let your AI Agent stay connected to the real world in real time.

Try Felo AI for free now →

The Skill source code and documentation are open-sourced on GitHub. Community contributions and feedback are welcome.