> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zerotwo.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Skills Overview

> Lightweight, reusable AI tools you invoke inline in any chat using @skill-name.

## What are Skills?

Skills are lightweight, single-purpose AI tools you invoke directly in any chat using the `@skill-name` trigger. Type `@` in the chat prompt bar, and a picker appears showing all your available skills — select one, add your content, and the skill runs instantly.

Unlike Custom Agents (which are full conversation configurations you chat with at `/agents`), skills are one-shot tools designed for a specific repeatable task: summarize this, translate that, review this code, check this grammar.

**The key difference:**

|                 | Skills                       | Custom Agents                           |
| --------------- | ---------------------------- | --------------------------------------- |
| **What it is**  | A single-purpose inline tool | A full saved conversation configuration |
| **How to use**  | Type @skill-name in any chat | Go to /agents and start a chat          |
| **Persistence** | Invoked per message          | Full ongoing conversation               |
| **Best for**    | Repetitive single tasks      | Specialized ongoing assistants          |

## How to Invoke a Skill

1. In any chat (including project chats), type **@** in the prompt bar
2. A skill picker dropdown appears — continue typing to filter by name
3. Select a skill
4. Type or paste the content you want the skill to act on
5. Send

**Examples:**

```
@summarize Here is the article I need summarized: [paste text]
```

```
@translate-to-spanish Please convert this: Hello, how are you today?
```

```
@explain-code [paste code here]
```

```
@grammar-check Please fix: The team are working hard to completed the project on time.
```

## Three Sources for Skills

<CardGroup cols={2}>
  <Card title="Official Library" icon="star" href="/skills/official-skill-library">
    Pre-built skills curated and maintained by ZeroTwo. Browse by category and install with one click.
  </Card>

  <Card title="Custom Skills" icon="wand2" href="/skills/build/create-a-skill">
    Build your own skills with a custom trigger, system prompt, tools, and model.
  </Card>

  <Card title="GitHub Import" icon="github" href="/skills/build/import-from-github">
    Import skill configurations from a GitHub repository — useful for team sharing.
  </Card>

  <Card title="Troubleshooting" icon="alert-triangle" href="/skills/troubleshooting">
    Fix skills that aren't showing in the picker, producing inconsistent output, or failing to use tools.
  </Card>
</CardGroup>

## Access Skills

Skills are managed at **Settings → Skills**. From there you can:

* Browse and install Official Library skills
* Create custom skills
* Import skills from GitHub
* View, edit, and delete your installed and custom skills

## Example Skills

| Trigger                 | What it does                                                        |
| ----------------------- | ------------------------------------------------------------------- |
| `@summarize`            | Condenses long text into 3–5 bullet points                          |
| `@explain-code`         | Explains what a piece of code does with an overview and suggestions |
| `@translate-to-spanish` | Translates text to Spanish, preserving tone                         |
| `@grammar-check`        | Corrects grammar and style without changing meaning                 |
| `@tone-formal`          | Rewrites text in a formal, professional tone                        |
| `@extract-action-items` | Pulls a numbered list of action items from meeting notes or emails  |
