AgentSkillsCN

install-backend

适用于安装后端技能、后端技术栈、搭建后端、新建后端项目、API项目搭建、Hono项目、Cloudflare Workers项目时使用。

SKILL.md
--- frontmatter
name: install-backend
description: USE WHEN install backend skills, backend stack, setup backend, new backend project, api project setup, hono project, cloudflare workers project.

Install Backend Stack

Installs the curated backend development skill stack into the current project for all agents (claude-code, opencode, gemini-cli).

Curated Skill List

Framework (yusukebe/hono-skill)

SkillSourcePurpose
honoyusukebe/hono-skillHono framework best practices (by Hono creator)

Platform (cloudflare/skills — official)

SkillSourcePurpose
cloudflarecloudflare/skillsComprehensive Workers, Pages, KV, D1, R2 platform skill
wranglercloudflare/skillsWrangler CLI for deployment and development

Database (supabase/agent-skills)

SkillSourcePurpose
supabase-postgres-best-practicessupabase/agent-skillsPostgres optimization, 8 categories, prioritized by impact

Authentication (better-auth/skills)

SkillSourcePurpose
better-auth-best-practicesbetter-auth/skillsBetter Auth TypeScript authentication framework integration
create-auth-skillbetter-auth/skillsCreate auth layers in TypeScript/JavaScript apps using Better Auth

Testing (anthropics/skills)

SkillSourcePurpose
webapp-testinganthropics/skillsPlaywright-based UI and API testing

Execution

Step 1: Show the Plan

Display the skill list above and tell the user:

code
Backend Stack Install Plan

The following skills will be installed to this project for claude-code, opencode, and gemini-cli:

Source: yusukebe/hono-skill
  - hono

Source: cloudflare/skills (official)
  - cloudflare
  - wrangler

Source: supabase/agent-skills
  - supabase-postgres-best-practices

Source: better-auth/skills
  - better-auth-best-practices
  - create-auth-skill

Source: anthropics/skills
  - webapp-testing

Scope: current project (not global). Confirm to proceed.

Step 2: Wait for Confirmation

Do NOT proceed until the user explicitly confirms.

Step 3: Install Skills

Run these commands sequentially. Report progress after each:

bash
bunx skills add yusukebe/hono-skill \
  -a claude-code -a opencode -a gemini-cli \
  --skill hono -y
bash
bunx skills add cloudflare/skills \
  -a claude-code -a opencode -a gemini-cli \
  --skill cloudflare \
  --skill wrangler -y
bash
bunx skills add supabase/agent-skills \
  -a claude-code -a opencode -a gemini-cli \
  --skill supabase-postgres-best-practices -y
bash
bunx skills add better-auth/skills \
  -a claude-code -a opencode -a gemini-cli \
  --skill better-auth-best-practices \
  --skill create-auth-skill -y
bash
bunx skills add anthropics/skills \
  -a claude-code -a opencode -a gemini-cli \
  --skill webapp-testing -y

Step 4: Search for Additional Skills

After the core install, search for additional backend skills:

bash
bunx skills find bun
bunx skills find d1 sqlite
bunx skills find api best practices

Present any results found and offer to install them.

Step 5: Verify

Run bunx skills list to confirm all skills were installed. Report the final state.

Notes

  • All installs are per-project (no -g flag)
  • Uses -y flag after user confirmation to skip redundant CLI prompts
  • If any install fails, report the error and continue with remaining skills
  • The Hono skill is by Yusuke Wada (Hono creator) — authoritative source
  • Cloudflare skills are from the official cloudflare/skills repo