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
2 changes: 1 addition & 1 deletion src/pages/AGENTS.md.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Tested implementation patterns for ICP development are available as agent skills
Before writing any ICP code, fetch the skills index and remember each skill's name and description:
${SITE_URL}/.well-known/skills/index.json

When a task matches a skill's description, fetch its content on-demand from:
When a task matches a skill's description, use it if already loaded in your context. Otherwise, fetch its content on-demand from the registry:
${SITE_URL}/.well-known/skills/{name}/SKILL.md

Skills contain correct dependency versions, configuration formats, and common pitfalls that prevent build failures.
Expand Down
4 changes: 2 additions & 2 deletions src/pages/llms.txt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ export const GET: APIRoute = () => {

## How to use

Before writing any ICP code, fetch the skills index and find skills matching your task:
Fetch the skills index and remember each skill's name and description:
${SITE_URL}/.well-known/skills/index.json

Then fetch the full skill content from:
When a task matches a skill's description, use it if already loaded in your context. Otherwise, fetch its content on-demand from the registry:
${SITE_URL}/.well-known/skills/{name}/SKILL.md

Skills contain correct dependency versions, configuration formats, and common pitfalls that prevent build failures.
Expand Down
Loading