https://github.com/checkly/checkly-plugin
Checkly ecosystem plugin — skills for Monitoring as Code and soon specialized agents.
https://github.com/checkly/checkly-plugin
Last synced: 29 days ago
JSON representation
Checkly ecosystem plugin — skills for Monitoring as Code and soon specialized agents.
- Host: GitHub
- URL: https://github.com/checkly/checkly-plugin
- Owner: checkly
- License: apache-2.0
- Created: 2026-05-20T14:03:54.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2026-06-24T09:35:35.000Z (about 1 month ago)
- Last Synced: 2026-06-24T10:46:29.546Z (about 1 month ago)
- Language: TypeScript
- Homepage:
- Size: 164 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# checkly-plugin
Checkly skills, agents, and commands for AI coding agents packaged as a single plugin that targets Codex, Claude Code, Cursor, and generic agent SDKs.
## What's in here
```
.codex-plugin/ Codex plugin manifest
.claude-plugin/ Claude Code marketplace + plugin manifest
.cursor-plugin/ Cursor plugin manifest
.plugin/ Generic agent plugin manifest
skills/ Skills (one directory per skill)
scripts/sync.ts Pulls externally-authored skills from their source repos
skills.config.ts Declares where each externally-authored skill comes from
```
## Installing
### Codex
```bash
codex plugin marketplace add checkly/checkly-plugin
codex
```
Then open Codex and enable the Checkly plugin via `/plugins`.
```
/plugins
```
### Plugins CLI
```
npx plugins add checkly/checkly-plugin
```
### Claude Code
```
/plugin marketplace add checkly/checkly-plugin
/plugin install checkly@checkly
```
### Cursor
Point Cursor at this repo to install the plugin.
## Skills shipped here
| Skill | Source |
| ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------- |
| [checkly](skills/checkly/) | [checkly/checkly-cli](https://github.com/checkly/checkly-cli/tree/main/skills/checkly) — tracks `main`, synced daily |
| [playwright-best-practices-for-agents](skills/playwright-best-practices-for-agents/) | [checkly/docs](https://github.com/checkly/docs/tree/main/skills/playwright-best-practices-for-agents) — tracks `main`, synced daily |
## Adding more
- **Externally-authored** (lives in another repo, synced here): add an entry to [`skills.config.ts`](skills.config.ts) and run `npm run sync`.
- **Plugin-native** (authored here directly): drop a `skills//SKILL.md` into the `skills/` directory.
See [CONTRIBUTING.md](CONTRIBUTING.md) for details.