critical .claude/skills/cloudflare/SKILL.md
Contradictory deployment guidance: Cloudflare skill permits direct wrangler deploy while AGENTS.md forbids it
### Manual deploy (out-of-band) If you need to push a build without going through git: ```bash cd blog pnpm install pnpm build npx wrangler deploy ```
The Cloudflare skill (conditionally loaded) tells the agent to run `npx wrangler deploy` for an out‑of‑band manual deployment. AGENTS.md (always‑loaded) explicitly states: “Never publish straight to Cloudflare (or any other host) — always push to the repo and let the repo deploy. The `cloudflare` skill is for DNS, analytics, and inspection only; **never call `wrangler deploy`**, `vercel --prod`, or any direct deploy command yourself.” This direct conflict can cause agents to perform disallowed actions, breaking the repo’s deployment policy.
Suggested rewrite
Remove the manual deploy section from `.claude/skills/cloudflare/SKILL.md` or replace it with a note directing the user to push to git instead of using `wrangler deploy`.