Official SigNoz skills for Claude Code, Cursor, and the skills.sh ecosystem.
| Skill | Description |
|---|---|
| signoz-clickhouse-query | Write optimized ClickHouse queries for SigNoz OpenTelemetry data to build dashboard panels from traces and logs. |
| signoz-docs | Use official SigNoz docs to answer instrumentation, setup, querying, troubleshooting, deployment, and API questions. |
/plugin marketplace add SigNoz/agent-skills
/plugin install signoz@signoz-skillsTo update after new releases:
/plugin marketplace update
/plugin update signoz@signoz-skillsThis repository includes a Cursor marketplace manifest at .cursor-plugin/marketplace.json and a Cursor plugin manifest at plugins/signoz/.cursor-plugin/plugin.json.
This plugin is not yet published on the public Cursor Marketplace. Install it manually through a Cursor Team Marketplace:
- Add
https://github.com/SigNoz/agent-skillsas a Cursor team marketplace. - In the Cursor dashboard, go to
Settings -> Plugins. - Under
Team Marketplaces, clickImport. - Paste the GitHub repository URL and save the marketplace.
- Open the marketplace panel in Cursor and install the
signozplugin.
Install all SigNoz skills:
npx skills add SigNoz/agent-skillsInstall a specific skill:
npx skills add SigNoz/agent-skills --skill signoz-docs
npx skills add SigNoz/agent-skills --skill signoz-clickhouse-query- Marketplace id:
signoz-skills - Plugin id:
signoz - Cursor plugin root:
plugins/signoz - Repository:
SigNoz/agent-skills
.
├── .claude-plugin/
│ └── marketplace.json
├── .cursor-plugin/
│ └── marketplace.json
├── plugins/
│ ├── signoz/
│ │ ├── .claude-plugin/
│ │ │ └── plugin.json
│ │ ├── .cursor-plugin/
│ │ │ └── plugin.json
│ │ └── skills/
│ │ ├── signoz-clickhouse-query/
│ │ └── signoz-docs/
└── README.md
Skills in this repository should follow the Agent Skills specification and live under plugins/signoz/skills/<skill-name>/SKILL.md.
Use Anthropic's skill-creator as the default workflow for creating or evolving a skill. It helps draft the skill, refine trigger descriptions, and iterate with realistic evaluations.
Install it with:
npx skills add https://github.com/anthropics/skills --skill skill-creatorFor a new SigNoz skill:
plugins/signoz/skills/my-skill/
└── SKILL.md
Keep these conventions:
namein frontmatter must exactly match the directory name.descriptionshould explain both what the skill does and when it should trigger.- Keep
SKILL.mdconcise and move deeper reference material intoreferences/,scripts/, orassets/when needed. - Bump
plugins/signoz/.claude-plugin/plugin.jsonwhenever a skill or other plugin-shipped content changes so Claude Code users receive updates. - Bump
plugins/signoz/.cursor-plugin/plugin.jsonwhenever the Cursor plugin ships updated skill content.
MIT. See LICENSE.