Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,6 @@
"import": {
"description": "Import existing resources from your Checkly account to your project."
},
"skills": {
"description": "Explore Checkly AI agent skills, actions and reference documentation."
},
"status-pages": {
"description": "List and manage status pages in your Checkly account."
}
Expand Down
4 changes: 4 additions & 0 deletions packages/cli/src/ai-context/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ Agent Skills are a standardized format for giving AI agents specialized knowledg
- Build dashboards and status pages
- Follow monitoring-as-code best practices with the Checkly CLI

## Installing This Skill

Run `npx checkly skills install` to install the skill into your project. The command supports Claude Code, Cursor, and Windsurf out of the box, or you can specify a custom path.

## Using This Skill

AI agents can load this skill to gain expertise in Checkly monitoring. The skill follows the [Agent Skills specification](https://agentskills.io) with:
Expand Down
2 changes: 2 additions & 0 deletions packages/cli/src/ai-context/skill.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ metadata:

The Checkly CLI provides all the required information via the `npx checkly skills` command.

Use `npx checkly skills install` to install this skill into your project (supports Claude Code, Cursor, and Windsurf).

Use `npx checkly skills` to list all available actions, and `npx checkly skills <action>` to access up-to-date information on how to use the Checkly CLI for each action.

## Progressive Disclosure via `npx checkly skills`
Expand Down
2 changes: 2 additions & 0 deletions packages/cli/src/commands/__tests__/command-metadata.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ import ImportCommit from '../import/commit'
import ImportCancel from '../import/cancel'
import PwTest from '../pw-test'
import SyncPlaywright from '../sync-playwright'
import SkillsInstall from '../skills/install'

const commands: Array<[string, typeof BaseCommand]> = [
['checks list', ChecksList],
Expand Down Expand Up @@ -66,6 +67,7 @@ const commands: Array<[string, typeof BaseCommand]> = [
['import cancel', ImportCancel],
['pw-test', PwTest],
['sync-playwright', SyncPlaywright],
['skills install', SkillsInstall],
]

describe('command metadata', () => {
Expand Down
Loading
Loading