Skip to content

Commit 52e9082

Browse files
Add automatic Cloudflare skills installation for AI coding agents (#13897)
1 parent 30657e1 commit 52e9082

56 files changed

Lines changed: 1884 additions & 792 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"wrangler": minor
3+
---
4+
5+
Add automatic Cloudflare skills installation for AI coding agents
6+
7+
Wrangler now detects AI coding agents and offers to install Cloudflare skill files from the `cloudflare/skills` GitHub repository. Users are prompted once interactively; subsequent runs skip the prompt. Use `--install-skills` to install without prompting.

packages/wrangler/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@
7171
"esbuild": "catalog:default",
7272
"miniflare": "workspace:*",
7373
"path-to-regexp": "6.3.0",
74+
"rosie-skills": "^0.6.3",
7475
"unenv": "2.0.0-rc.24",
7576
"workerd": "1.20260521.1"
7677
},

packages/wrangler/scripts/deps.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ export const EXTERNAL_DEPENDENCIES = [
3535

3636
// workerd contains a native binary, so must be external. Wrangler depends on a pinned version.
3737
"workerd",
38+
39+
// rosie-skills contains inlined WASM that is loaded at runtime via import.meta.url-relative
40+
// path resolution, so it cannot be bundled.
41+
"rosie-skills",
3842
];
3943

4044
/**

0 commit comments

Comments
 (0)