# Agent Skills

> Source: <https://signoz.io/docs/ai/agent-skills>
> Published: 2026-05-27 00:00:00+00:00

[Agent Skills](https://agentskills.io) are an open format for extending AI coding assistants with specialized knowledge and capabilities. Once installed, your agent uses them whenever it detects a relevant task - no prompting required.

When you ask your AI assistant something like "export traces from my service to signoz" or "help me write a ClickHouse query," the agent automatically selects the appropriate skill and follows its instructions.

Installation

skills.sh

Install all SigNoz skills:

```
npx skills add SigNoz/agent-skills
```

Install a specific skill:

```
npx skills add SigNoz/agent-skills --skill signoz-docs
npx skills add SigNoz/agent-skills --skill signoz-clickhouse-query
```

Claude Code

Install through the Claude Code plugin marketplace:

```
/plugin marketplace add SigNoz/agent-skills
/plugin install signoz@signoz-skills
```

To update after new releases:

```
/plugin marketplace update signoz-skills
/reload-plugins
```

You can also enable auto-updates for the marketplace through the `/plugin`

interface under the **Marketplaces** tab.

Available Skills

signoz-searching-docs

Guides AI agents to fetch and explore SigNoz documentation. Use it when you need help with SigNoz setup, configuration, or feature usage.

[View skill source →](https://github.com/SigNoz/agent-skills/blob/main/plugins/signoz/skills/signoz-searching-docs/SKILL.md)

signoz-writing-clickhouse-queries

Helps AI agents write and debug ClickHouse queries for SigNoz data. Use it when building custom dashboards, alerts, or performing ad-hoc analysis on your observability data.

[View skill source →](https://github.com/SigNoz/agent-skills/blob/main/plugins/signoz/skills/signoz-writing-clickhouse-queries/SKILL.md)

Learn more

[SigNoz Skills on skills.sh](https://skills.sh/signoz/agent-skills)- browse available skills and install instructions[GitHub repository](https://github.com/signoz/agent-skills)- source code and skill structure
