Skip to main content

Overview

Use Agent Skills to extend EnConvo with task-specific capabilities. A skill packages instructions, resources, and optional scripts so EnConvo can follow a workflow reliably. You can share skills across teams or with the community.
Skills use progressive disclosure to manage context efficiently: EnConvo starts with each skill’s metadata (name, description, file path). Full instructions are loaded only when a skill is activated.

Skill Structure

A skill is a directory with a SKILL.md file plus optional scripts and references.

SKILL.md Format

The SKILL.md file must include a frontmatter block with name and description:
Because implicit matching depends on the description field, write descriptions with clear scope and boundaries. Be specific about when and when not to use the skill.

How Skills Are Activated

EnConvo can activate skills in two ways:

Explicit Invocation

Mention the skill directly in your prompt using the / prefix. Use this when you know exactly which skill you need.

Implicit Invocation

EnConvo automatically selects a skill when your task matches its description. No manual selection needed.

Explicit Invocation

Type / followed by the skill name in SmartBar or chat to invoke it directly:
This is the most reliable way to invoke a skill — you get exactly the one you want.

Implicit Invocation

When you do not specify a skill, EnConvo automatically matches your request to the most relevant skill based on the description field:
  1. You type: “Summarize these meeting notes into action items”
  2. EnConvo scans all available skill descriptions
  3. The meeting-notes skill matches (“…format raw meeting transcripts into structured notes with action items…”)
  4. The skill is activated and its instructions guide the response

How to Write Descriptions That Match Well

Good implicit matching depends entirely on well-written description fields: The key elements:
  • What it does: “Review code for bugs, security issues, and best practices”
  • When to trigger: “Use when the user asks for a code review”
  • When NOT to trigger: “Do not use for code generation or writing new code”

Skill Locations

EnConvo reads skills from multiple locations, with different scopes:
If two skills share the same name in different locations, both remain available — EnConvo does not merge them.

Project Skills

Project-scoped skills are stored inside your project directory. They are available only when that project is active:
This is ideal for skills that depend on project-specific conventions, file structures, or tools.

User Skills

User-scoped skills in ~/.agents/skills/ are available across all projects. Use this for personal productivity skills that are not project-specific:

Creating a Skill

Using the Skill Creator

The fastest way to create a skill is with the built-in creator:
The creator walks you through:
  1. What the skill does
  2. When it should trigger
  3. Whether it should be instruction-only or include scripts
Instruction-only is the default and recommended approach. Use scripts only when you need deterministic behavior or external tooling.

Manual Creation

Create a folder with a SKILL.md file:
1

Create the skill directory

2

Write SKILL.md

3

Verify

EnConvo detects skill changes automatically. If the new skill doesn’t appear, restart EnConvo.

Writing Effective Instructions

The body of SKILL.md (below the frontmatter) contains the instructions the AI follows. Write them as clear, imperative steps:

v1.2.0 (2024-01-15)

Features

  • Added dark mode support for all pages
  • New export to PDF option in reports

Fixes

  • Fixed login timeout on slow connections
  • Resolved duplicate notification issue

Breaking Changes

⚠️ API endpoint /v1/users now requires authentication
State exactly where the input comes from: “Read the selected text”, “Parse the attached file”, “Use the URL from the user’s message”.
Include a concrete example of what the output should look like. This prevents ambiguity and ensures consistency.
Add instructions for common edge cases: “If no commits are found, report that the range is empty” or “If the input is not valid JSON, ask the user to check the format”.
One skill should do one thing well. If you find yourself writing a skill with 10+ steps covering multiple tasks, split it into separate skills.

Adding Scripts

For skills that need executable logic, add a scripts/ directory:
Reference scripts in your SKILL.md:
  1. Parse the JSON output.
  2. Report status, response time, and any errors.
my-skill/ ├── SKILL.md ├── references/ │ ├── api-docs.md │ └── examples.md └── scripts/ └── run.sh
References are useful for:
  • API documentation the skill needs to follow
  • Style guides or brand guidelines
  • Code examples and templates
  • Domain-specific knowledge

Installing Skills

EnConvo supports two methods to install skills using /skill-installer:

From EnConvo Skills Store

Search and install skills by name from the built-in skills store:
This searches the EnConvo skills store and installs the matching skill. EnConvo detects newly installed skills automatically.

From GitHub

Install skills directly from a GitHub repository URL — including subdirectories:
GitHub installation supports subdirectory paths, so you can point to a specific skill folder within a larger repository. No need to clone the entire repo.

Browsing the Skills Store

The Skills Store provides a curated collection of community-built skills:
  1. Open Settings
  2. Navigate to Skills Store
  3. Browse categories or search by keyword
  4. Click Install on any skill
  5. The skill is downloaded and ready to use immediately
Popular skill categories:
  • Development: Code review, documentation generation, testing
  • Writing: Email composition, blog posts, technical writing
  • Data: Analysis, visualization, reporting
  • Productivity: Meeting notes, task management, scheduling

Managing Skills

Viewing Installed Skills

See all your installed skills in Settings -> Skills:
  • System skills (built-in)
  • User skills (from ~/.agents/skills/)
  • Project skills (from current project)
  • Store-installed skills

Updating Skills

  • Store skills: Check for updates in the Skills Store
  • GitHub skills: Re-run the installer with the same URL
  • Custom skills: Edit the SKILL.md file directly — changes are detected automatically

Disabling Skills

You can disable a skill without deleting it:
  1. Go to Settings -> Skills
  2. Find the skill
  3. Toggle it off
Disabled skills will not be available for implicit or explicit invocation until re-enabled.

Best Practices

One skill = one job. A skill that does too many things is harder to trigger correctly and harder to maintain.
Use plain-language instructions unless you need deterministic behavior or external tooling. Instructions are easier to write, debug, and iterate on.
Be explicit about inputs, steps, and expected outputs. Vague instructions lead to inconsistent results.
Try various prompts against your skill’s description field to confirm it triggers (and doesn’t trigger) correctly.
In the description, state both what the skill should handle and what it should not handle.
For team-shared skills, keep them in version control (git). This makes it easy to track changes, roll back, and collaborate.

Example Skills

Code Reviewer

Meeting Notes

Git Commit Message

type(scope): concise description
  • Detail 1
  • Detail 2

API Documentation Generator