Skills Overview
Skills define the Agent's capabilities. Each skill is a directory containing a SKILL.md file with YAML frontmatter for metadata and Markdown body for instructions.
How It Works
When a user sends a message, OpenPollen's AgentRunner:
- Scans the installed skills directory for all
SKILL.mdfiles - Injects all skill instructions into the Agent's system prompt
- Assigns available tools based on each skill's
allowed-toolsfield - The Agent automatically matches and executes the appropriate skill
Skill Sources
Skills can be installed from three sources:
| Source | Install Command | Description |
|---|---|---|
| Local | openpollen skill install ./path | Copy from local directory |
| Git | openpollen skill install <url>.git | Clone from Git repository |
| Marketplace | openpollen skill install <name> | Download from official marketplace |
Managing Skills
List Installed Skills
bash
openpollen skill listExample output:
已安装技能 (2):
code-review
描述: 自动审查代码,给出改进建议
来源: local
路径: ~/.openpollen/skills/code-review
data-analyst
描述: 分析数据、生成图表和报告
来源: local
路径: ~/.openpollen/skills/data-analystInstall Skills
bash
# Search and install from marketplace
openpollen skill search coding
openpollen skill install <skill-name>
# Install from Git
openpollen skill install https://github.com/user/my-skill.git
# Install from local directory
openpollen skill install ./my-skillCreate a New Skill
bash
openpollen skill create my-skillThis creates a scaffold in the skills directory:
~/.openpollen/skills/my-skill/
├── SKILL.md # Skill definition file
├── examples/ # Examples directory
└── .source.json # Source informationUninstall Skills
bash
openpollen skill remove my-skillUpdate Skills
bash
# Only supported for Git-sourced skills
openpollen skill update my-skillSkills Marketplace
OpenPollen provides an official skills marketplace for searching, installing, and publishing skills.
Search Skills
bash
openpollen skill search <keyword>
openpollen skill search coding --category coding --sort downloadsPublish Skills
bash
# Login first
openpollen login
# Publish
openpollen skill publish my-skillPricing options:
- Free
- One-time purchase
- Subscription
View Earnings
bash
openpollen skill earnings
openpollen skill earnings --month 2026-02Built-in Skills
OpenPollen ships with these built-in skills:
code-review
Automatic code review focusing on security, performance, readability, and best practices.
Output uses severity markers:
- [Critical] — Must fix
- [Suggestion] — Recommended improvement
- [Optimization] — Optional optimization
data-analyst
Data analysis, chart generation, and reporting.