Finding and managing skills
Skills live in the Skills section in the main navigation. From there you can:- Browse all your active skills and templates
- Install skills from the Skill Library
- Create a new skill from scratch
- Import a skill from a file or GitHub URL
- Enable or disable skills without deleting them
Four ways to get started
Option 1: Install from the Skill Library
The fastest way to get started. The Skill Library is a curated collection of ready-to-use skills maintained by Plerion — open source and free. Go to Skills → Library, browse the catalog, and click Add on anything that looks useful. Every skill in the library follows the AgentSkills open standard, so you know exactly what you’re getting. You can use them as-is or fork them as a starting point for your own playbooks.Option 2: Import a file
If someone has shared a skill ZIP with you, go to Skills and click Import. Drop the ZIP in — it will unpack the project files and register the skill automatically. Every skill includes a call instruction that tells you how to trigger it. Open a new chat and use that phrase, and I’ll load the skill and follow its playbook.Option 3: Build from a prompt
Start a new chat and describe the outcome you want:Option 4: Use the editor
For anything involving scripts — Python, shell, or other executables — use the skill editor directly. Define the steps, upload your scripts as project files, and wire them together. This is how you get deterministic outputs. When a skill calls a script, I run the script and use its output directly, rather than asking the model to calculate or guess. Use this for anything where precision matters: cost calculations, network tests, data extractions, compliance checks with exact thresholds. Go to Skills and click New skill to open the editor.How skills load
When a conversation starts, I scan the skill catalog and ask: does any skill match what’s being asked? If yes, I load it immediately and follow the playbook it defines — before doing anything else. This means your custom workflows run consistently, every time, without anyone having to remind me.Creating a skill manually
When you click New skill, you’ll be asked for:- Name — a short slug used to identify the skill, e.g.
weekly-k8s-review - Display name — the human-readable label shown in the UI, e.g.
Weekly Kubernetes review - Description — the most important field. This is what I read to decide when to load the skill. Be specific about what triggers it and what it should not be used for
- Instructions — the full playbook I follow once the skill is loaded. Use clear, step-by-step language
- Tags — optional labels for organizing and filtering your skills, e.g.
security,aws,compliance
Skill scope
Every skill has a scope that controls who can see and use it:- Personal — private to you. Only you can see, edit, and trigger this skill. Great for personal workflows, experiments, or role-specific playbooks you don’t need to share
- Tenant — shared across your entire organization. Only admins can create or modify tenant skills, but they apply to every user automatically. Use these for agreed-upon team processes like escalation procedures or compliance checks
- Template — published as a starting point others can fork. Templates appear in the skill gallery and can be installed by anyone in your organization. When someone installs a template, they get their own editable personal copy
Organizing skills with tags
Tags let you group and filter skills so they’re easier to find as your collection grows. You can add up to 20 tags per skill, each up to 64 characters. Good tags are short and meaningful — think of them like labels on a folder. Some examples:
You can set tags when creating a skill or ask me to update them anytime:
Skill Library
The Skill Library is a curated, open-source collection of skills maintained by Plerion in the plerionhq/pleri-skills repository. Every skill in the library:- Follows the AgentSkills open standard
- Is reviewed and maintained by the Plerion team
- Is free to use, fork, and customize
Currently available skills
More skills are added regularly. If you’ve built something useful for your team, consider contributing it back — it only takes a
SKILL.md file.
Installing a skill from the library
- Go to Skills → Library
- Find the skill you want and click Add
- The skill is now active in your sessions
Template skills
Not sure where to start? The skill template gallery gives you pre-built playbooks you can install with one click. Each template covers a common security workflow, ready to use out of the box or customize to fit your team. Go to Skills and click Templates to browse the gallery. Available templates include:
When you install a template, it creates a personal copy you own. You can rename it, edit the instructions, attach your own files, or promote it to tenant scope — the template is just a starting point.
Importing skills
You can import skills from external sources instead of building from scratch. This is useful for sharing skills across teams, pulling in community playbooks, or migrating skills between environments.Import from a zip file
Go to Skills and click Import. Upload a.zip file containing a SKILL.md at the root. The SKILL.md file uses frontmatter to define the skill metadata:
Import from GitHub
You can also import directly from a GitHub repository URL. Paste the repo URL and I’ll pull the skill definition from it. Supported formats:https://github.com/owner/repo— imports from the repo roothttps://github.com/owner/repo/tree/branch/subdirectory— imports from a specific subdirectory
SKILL.md file at the target location.
If an imported skill has the same name as an existing skill, a numeric suffix is added automatically (e.g.,
my-skill becomes my-skill-2) so nothing gets overwritten.Attaching files
Skills can carry supporting files — scripts, reference documents, or other assets your playbook depends on. Files live in three directories:
You can upload files directly from the Skills page, or ask me to create them for you.
Examples
Here are a few examples to show what’s possible.Branded security reports
Attach your brand guidelines as a reference file, point me to your logo, and I’ll apply your color palette, typography, and layout rules every time I generate an HTML report.Weekly Kubernetes security review
CVE triage for Python services
Production finding escalation
Script-backed network test
For tasks that need precise, deterministic results, attach a script and I’ll call it directly:scripts/network-test.py and I’ll call it directly — the numbers come from the script, not the model.
Working with skills conversationally
You can also ask me to create, update, or manage skills directly in chat:Smarter questions, better guidance
When a skill needs input before proceeding, I’ll ask structured questions with clear options. Each option includes a short label and a description of the trade-offs so you can decide quickly. When it helps, I’ll show side-by-side previews so you can compare approaches visually. You’ll also see contextual nudges throughout the UI that suggest relevant skills, highlight best practices, and guide you toward the right workflow for the task at hand.Disabling a skill
If a skill is no longer relevant, you can disable it from the Skills page. Disabled skills stay saved but won’t appear in the catalog or be loaded by me — so you can safely pause them without losing the playbook.Limitations
- Text files only: Skill files support text-based formats —
.md,.txt,.py,.sh,.js,.ts,.json,.yaml,.yml,.csv,.html, and.css. Binary files such as images, PDFs, and office documents are not supported. For logos and images, reference them by URL in your skill instructions instead. - File size: Individual files are capped at 400KB.
- Logos by URL: Logo and image assets must be hosted externally and referenced as a URL in your skill instructions or brand guidelines file.
- Tags: Up to 20 tags per skill, each up to 64 characters.
