بنقرة واحدة
skill-creator
Create or update agent skills for the Agno framework. Use when designing, structuring, or packaging skills with instructions, scripts, and references.
القائمة
Create or update agent skills for the Agno framework. Use when designing, structuring, or packaging skills with instructions, scripts, and references.
Code review assistance with linting, style checking, and best practices
Git workflow guidance for commits, branches, and pull requests
Orchestrate external coding agents (Claude Code, Codex CLI, OpenCode) via background processes for automated code tasks, PR reviews, and parallel issue fixing.
Send messages, react, manage threads/pins, run polls, and moderate Discord channels via the Discord API.
Interact with GitHub using the gh CLI. Use gh issue, gh pr, gh run, and gh api for issues, PRs, CI runs, and advanced queries.
Notion API for creating and managing pages, databases, and blocks. Use when working with Notion workspaces.
| name | skill-creator |
| description | Create or update agent skills for the Agno framework. Use when designing, structuring, or packaging skills with instructions, scripts, and references. |
| metadata | {"version":"1.0.0","author":"agno-team"} |
Guide for creating effective skills for Agno agents.
A skill is a self-contained directory that extends an agent's capabilities with domain-specific knowledge, workflows, and tools.
skill-name/
SKILL.md # Required: YAML frontmatter + instructions
scripts/ # Optional: executable scripts
references/ # Optional: reference documentation
Every SKILL.md consists of:
---
name: my-skill
description: What this skill does and when to use it
license: MIT
metadata:
version: "1.0.0"
author: your-name
tags: ["category1", "category2"]
---
Required fields: name, description
Optional fields: license, metadata, compatibility, allowed-tools
Instructions and guidance for using the skill. Only loaded when the skill is activated.
The agent is already smart. Only add context it doesn't already have. Challenge each piece: "Does the agent really need this explanation?"
code-review, git-workflowWhat concrete examples will this skill handle? What triggers it?
For each example, identify:
mkdir -p my-skill/{scripts,references}
descriptionLoad the skill with your agent and test with real prompts.
For skills with multiple domains, organize by topic:
bigquery-skill/
SKILL.md
references/
finance.md
sales.md
product.md
The agent loads only the relevant reference when needed.