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.
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.
| 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 |
| 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.
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"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.
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)
We welcome contributions! To add a new skill:
- Create a new directory under
skills/with a descriptive name - Add a
SKILL.mdwith the required frontmatter (name,description) - Include scripts, examples, and references as needed
- Submit a pull request
See the Agent Skills spec for the full skill format.