Official SigNoz skills for Codex, 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-skillsThe Claude plugin ships a PreToolUse hook that auto-allows WebFetch requests to https://signoz.io/... and https://*.signoz.io/.... This does not affect network calls made through Bash, such as curl or wget, which still follow Claude Code's normal permission flow.
This 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.
This repository now includes a Codex repo marketplace at .agents/plugins/marketplace.json and a Codex plugin manifest at plugins/signoz/.codex-plugin/plugin.json.
To use it from this repository:
- Open the repository in Codex.
- Restart Codex if it was already running.
- Open the plugin surface with
/plugins. - Install the
signozplugin from theSigNozmarketplace.
To distribute it outside this repository, copy plugins/signoz into the target repo's plugins/ directory and copy the marketplace entry format from .agents/plugins/marketplace.json into that repo's $REPO_ROOT/.agents/plugins/marketplace.json.
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 - Codex marketplace path:
.agents/plugins/marketplace.json - Codex plugin root:
plugins/signoz - Cursor plugin root:
plugins/signoz - Repository:
SigNoz/agent-skills
.
├── .agents/
│ └── plugins/
│ └── marketplace.json
├── .claude-plugin/
│ └── marketplace.json
├── .cursor-plugin/
│ └── marketplace.json
├── plugins/
│ ├── signoz/
│ │ ├── .codex-plugin/
│ │ │ └── plugin.json
│ │ ├── .claude-plugin/
│ │ │ └── plugin.json
│ │ ├── .cursor-plugin/
│ │ │ └── plugin.json
│ │ ├── hooks/
│ │ │ ├── hooks.json
│ │ │ └── scripts/
│ │ │ └── allow-signoz-webfetch.js
│ │ └── 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.
For Codex distribution, keep the repo marketplace at .agents/plugins/marketplace.json pointing to the plugin directory and keep the plugin manifest at plugins/signoz/.codex-plugin/plugin.json in sync with shipped skills.
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/.codex-plugin/plugin.jsonwhenever the Codex plugin ships updated skill content. - 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.