Skip to content

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:

  1. Scans the installed skills directory for all SKILL.md files
  2. Injects all skill instructions into the Agent's system prompt
  3. Assigns available tools based on each skill's allowed-tools field
  4. The Agent automatically matches and executes the appropriate skill

Skill Sources

Skills can be installed from three sources:

SourceInstall CommandDescription
Localopenpollen skill install ./pathCopy from local directory
Gitopenpollen skill install <url>.gitClone from Git repository
Marketplaceopenpollen skill install <name>Download from official marketplace

Managing Skills

List Installed Skills

bash
openpollen skill list

Example output:

已安装技能 (2):

  code-review
    描述: 自动审查代码,给出改进建议
    来源: local
    路径: ~/.openpollen/skills/code-review

  data-analyst
    描述: 分析数据、生成图表和报告
    来源: local
    路径: ~/.openpollen/skills/data-analyst

Install 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-skill

Create a New Skill

bash
openpollen skill create my-skill

This creates a scaffold in the skills directory:

~/.openpollen/skills/my-skill/
├── SKILL.md          # Skill definition file
├── examples/         # Examples directory
└── .source.json      # Source information

Uninstall Skills

bash
openpollen skill remove my-skill

Update Skills

bash
# Only supported for Git-sourced skills
openpollen skill update my-skill

Skills 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 downloads

Publish Skills

bash
# Login first
openpollen login

# Publish
openpollen skill publish my-skill

Pricing options:

  • Free
  • One-time purchase
  • Subscription

View Earnings

bash
openpollen skill earnings
openpollen skill earnings --month 2026-02

Built-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.