Skip to content

iflow-ai/iflow-skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 

Repository files navigation

iflow Skills

This repository contains iflow's official Agent Skills for AI agents. Each skill enables agents to interact with iflow's platform capabilities in a repeatable, standardized way.

What Are Skills

Skills are folders of instructions, scripts, and resources that AI agents load dynamically to perform specialized tasks. They follow the open Agent Skills standard and work across multiple agent platforms.

Available Skills

Skill Description
iflow-nb Knowledge base management, file import, content generation (PDF/PPT/podcast/mind map/video), web search & deep research, semantic search
iflow-search Web search, image search, and web page content fetching for AI agents

Quick Start

1. Install a Skill

Agent Install Method
Claude Code Copy to ~/.claude/skills/ or .claude/skills/
OpenClaw npx clawhub@latest install iflow-nb
Devin Commit to .agents/skills/ in your repo
Windsurf Copy to .windsurf/skills/
CrewAI skills=["./skills/iflow-nb"]

For any agent that supports the Agent Skills standard, place the skill directory under the agent's skill discovery path.

2. Configure Credentials

Each skill documents its own setup requirements. For example, iflow-nb requires an iflow API key:

# Option A - Config file (recommended)
mkdir -p ~/.config/iflow-nb && echo "your_api_key" > ~/.config/iflow-nb/api-key

# Option B - Environment variable
export IFLOW_API_KEY="your_api_key"

3. Use It

Just talk to your agent naturally:

You: Create a KB called "Research Papers", upload these PDFs, and generate a literature review.

You: Search for recent papers on LLM agents and create a summary report.

You: Share the "Research Papers" notebook with my team.

Repository Structure

iflow-skill/
├── README.md
├── LICENSE
└── skills/
    ├── iflow-nb/            # Knowledge base skill
    │   ├── SKILL.md         # Skill entry point
    │   ├── knowledge-base/  # KB & file management APIs
    │   ├── reports/         # Content generation APIs
    │   ├── search/          # Web search APIs
    │   ├── scripts/         # Pipeline scripts (Python)
    │   ├── examples/        # Usage examples
    │   └── references/      # Full API reference
    └── iflow-search/        # Web search skill
        ├── SKILL.md         # Skill entry point
        └── scripts/         # Search scripts (Bash)

Contributing

We welcome contributions! To add a new skill:

  1. Create a new directory under skills/ with a descriptive name
  2. Add a SKILL.md with the required frontmatter (name, description)
  3. Include scripts, examples, and references as needed
  4. Submit a pull request

See the Agent Skills spec for the full skill format.

License

MIT

About

iflow-skills

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors