From ad07167cc18d61d2ef95dbcdb10f087e6e16cf04 Mon Sep 17 00:00:00 2001 From: Marco Walz Date: Fri, 20 Mar 2026 17:38:58 +0100 Subject: [PATCH] chore: sync agent instructions with icp-cli wording --- src/pages/AGENTS.md.ts | 2 +- src/pages/llms.txt.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/AGENTS.md.ts b/src/pages/AGENTS.md.ts index 9f565bf..d2d7d31 100644 --- a/src/pages/AGENTS.md.ts +++ b/src/pages/AGENTS.md.ts @@ -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. diff --git a/src/pages/llms.txt.ts b/src/pages/llms.txt.ts index 2c925af..9d8999f 100644 --- a/src/pages/llms.txt.ts +++ b/src/pages/llms.txt.ts @@ -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.