Skip to content

Claude code guide #1337

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 46 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
dac0a36
new guide, modified docs, drive by copy editing of an older guide
serverless-mom Jul 29, 2025
5b124f2
new page summary
serverless-mom Jul 29, 2025
8728cb4
proofreading edits
serverless-mom Jul 29, 2025
68006c0
guide rewrite
serverless-mom Jul 30, 2025
5dff046
fix bash scripting
serverless-mom Jul 31, 2025
7006ec4
new guide
serverless-mom Jul 31, 2025
07b6488
merge conflicts
serverless-mom Aug 1, 2025
b6ce9e5
final edits
serverless-mom Aug 1, 2025
7eba844
Update site/content/guides/claude-code-monitoring.md
serverless-mom Aug 1, 2025
bb7f06f
Update site/content/guides/claude-code-monitoring.md
serverless-mom Aug 1, 2025
1172fcd
Update site/content/guides/claude-code-monitoring.md
serverless-mom Aug 1, 2025
26ade4a
Update site/content/guides/claude-code-monitoring.md
serverless-mom Aug 1, 2025
04e5d9f
Update site/content/guides/claude-code-monitoring.md
serverless-mom Aug 1, 2025
c46b62e
Update site/content/guides/claude-code-monitoring.md
serverless-mom Aug 1, 2025
be0d5ae
polish and rewrites
serverless-mom Aug 1, 2025
392b248
Update site/content/guides/claude-code-monitoring.md
serverless-mom Aug 4, 2025
2dda78a
Merge branch 'main' into claudeCodeGuide
serverless-mom Aug 4, 2025
2fbdac2
edits
serverless-mom Aug 4, 2025
aab4907
Update site/content/guides/claude-code-monitoring.md
serverless-mom Aug 4, 2025
cc8707f
Update site/content/guides/claude-code-monitoring.md
serverless-mom Aug 4, 2025
24c6234
edits
serverless-mom Aug 4, 2025
8a834d3
Merge branch 'claudeCodeGuide' of github.com:checkly/docs.checklyhq.c…
serverless-mom Aug 4, 2025
7d05930
edits
serverless-mom Aug 4, 2025
895c27d
edits
serverless-mom Aug 4, 2025
4af7917
revised with extensive notes, codegen removed
serverless-mom Aug 8, 2025
1ae9b04
final edits
serverless-mom Aug 8, 2025
45d1b57
Merge branch 'main' into claudeCodeGuide
serverless-mom Aug 8, 2025
375a18c
added Stefan's blog post to further reading
serverless-mom Aug 8, 2025
7148841
Merge branch 'claudeCodeGuide' of github.com:checkly/docs.checklyhq.c…
serverless-mom Aug 8, 2025
57ce376
Update site/content/guides/claude-code-monitoring.md
serverless-mom Aug 11, 2025
af6128c
Update site/content/guides/claude-code-monitoring.md
serverless-mom Aug 11, 2025
077948a
Update site/content/guides/claude-code-monitoring.md
serverless-mom Aug 11, 2025
5804ee1
Update site/content/guides/claude-code-monitoring.md
serverless-mom Aug 11, 2025
85e9575
remove screenshots
serverless-mom Aug 11, 2025
5d1c838
More edits
serverless-mom Aug 11, 2025
0a32244
final flow and formatting edits
serverless-mom Aug 13, 2025
a0e9887
Merge branch 'main' into claudeCodeGuide
serverless-mom Aug 13, 2025
b3c3692
Update site/content/guides/claude-code-monitoring.md
serverless-mom Aug 14, 2025
7cc92d3
Update site/content/guides/claude-code-monitoring.md
serverless-mom Aug 14, 2025
49ba27d
Update site/content/guides/claude-code-monitoring.md
serverless-mom Aug 14, 2025
b705514
Update site/content/guides/claude-code-monitoring.md
serverless-mom Aug 14, 2025
1858271
Update site/content/guides/claude-code-monitoring.md
serverless-mom Aug 14, 2025
2c8ea83
Update site/content/guides/claude-code-monitoring.md
serverless-mom Aug 14, 2025
95ab08f
Update site/content/guides/claude-code-monitoring.md
serverless-mom Aug 14, 2025
87c14ee
Update site/content/guides/claude-code-monitoring.md
serverless-mom Aug 14, 2025
5fa1bf2
Update site/content/guides/claude-code-monitoring.md
serverless-mom Aug 14, 2025
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ site/resources/
__checks__/screenshots
.vercel
checkly-github-report.md
CLAUDE.md
5 changes: 4 additions & 1 deletion site/content/docs/ai/use-checkly-with-ai-ide.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ menu:

## Docs

You can index our docs pages in your IDE to leverage better code generation results. To do so, follow the guides for your IDE of choice:
You can index our docs pages in your IDE to leverage better code generation results. To do so, follow the guides for your IDE of choice:

Make sure to index the following url:
Expand All @@ -35,6 +36,8 @@ of our docs pages in plain text format. You can use this file to index our docs
We prepared a first set of AI rules which you can use to teach your AI IDE of choice on how to generate code for Checkly.
Go into the root of your IDE's workspace and download the rules according to your IDE's config parameters.
When asking questions about Checkly, manually add the downloaded rules files to your prompt.
Go into the root of your IDE's workspace and download the rules according to your IDE's config parameters.
When asking questions about Checkly, manually add the downloaded rules files to your prompt.

### GitHub Copilot

Expand Down Expand Up @@ -122,7 +125,7 @@ API Checks, Browser checks, Multistep checks and all other constructs.
{{< tab "Mac and Linux" >}}

```bash
mkdir \p .claude &&
mkdir -p .claude &&
curl -o .claude/checkly.rules.md https://www.checklyhq.com/docs/ai/checkly.rules.md -L
echo "- examine checkly.rules.md for code generation rules" >> .claude/CLAUDE.md
```
Expand Down
Loading
Loading