explaingit

yusukebe/skills

Analysis updated 2026-06-24

28TypeScriptAudience · developerComplexity · 2/5Setup · easy

TLDR

A personal collection of opinionated Markdown how-to notes served as a Hono on Cloudflare Workers site, designed for AI coding agents like Claude Code and Cursor to fetch and follow.

Mindmap

mindmap
  root((skills))
    Inputs
      SKILL.md files
      YAML frontmatter
    Outputs
      Markdown pages
      JSON endpoints
      Static registry
    Use Cases
      Feed an AI coding agent
      Browse on the web
      Install catalog locally
    Tech Stack
      TypeScript
      Hono
      Cloudflare Workers
      Wrangler
      Markdown
Click or tap to explore — scroll the page freely

Code map

Detail Auto

An interactive map of this repo's files and how they connect — its source is parsed live in your browser. Click Visualize to build it.

filefunction / class

What do people build with it?

USE CASE 1

Paste the start prompt into Claude Code or Cursor to load the skill catalog

USE CASE 2

Install the catalog locally via npx skills add yusukebe/skills

USE CASE 3

Read a single skill as Markdown or JSON at a predictable URL

USE CASE 4

Fork the layout to publish your own skills site

What is it built with?

TypeScriptHonoCloudflare WorkersWranglerMarkdown

How does it compare?

yusukebe/skillsaudemodo/audemodo-responsive-keepalivecahn91/gpt-repo-mcp
Stars282828
LanguageTypeScriptTypeScriptTypeScript
Setup difficultyeasyeasymoderate
Complexity2/52/53/5
Audiencedeveloperdevelopervibe coder

Figures from each repo's GitHub metadata at analysis time.

How do you get it running?

Difficulty · easy Time to first run · 5min

Local install needs the vercel-labs skills CLI, otherwise just paste the landing-page prompt into your agent.

In plain English

This repository is a personal collection of short how-to notes that the author, Yusuke, calls skills. Each skill is a small Markdown file that answers one focused question, things like how to build a server-rendered UI with the Hono framework, how to combine Inertia.js with Hono, or how to lay out a Cloudflare Workers project that uses the D1 database. They are intentionally opinionated, written the way the author personally likes to do things, and they link out to the official documentation for anything deeper. The collection is meant to be consumed by AI coding agents like Claude Code or Cursor as well as by humans reading the web. It is deployed as a small website at skills.yusuke.run, and each skill is also reachable as plain Markdown or JSON at predictable URLs. The landing page shows a one-line prompt that you can paste into your agent at the start of a new project, which tells it to fetch a start.md file and walk through the available skills from there. For tools that already integrate with the vercel-labs skills CLI, you can install the whole catalog locally with npx skills add yusukebe/skills. After that, the agent can pick the right skill by matching on its description without making an HTTP call. The code behind the site is a small Hono app deployed on Cloudflare Workers. The skills directory holds one folder per skill, each containing a SKILL.md with YAML frontmatter. A build script scans those files and generates a registry that the worker reads at runtime. Deployment is automated through Cloudflare Workers Builds: any push to the main branch triggers a build that regenerates the registry and runs wrangler deploy.

Copy-paste prompts

Prompt 1
Show me the SKILL.md frontmatter format used in yusukebe/skills and how the registry build script consumes it
Prompt 2
Explain how yusukebe/skills serves the same content as Markdown, JSON, and HTML from one Hono worker
Prompt 3
Walk me through the Cloudflare Workers Builds pipeline that regenerates the registry on push to main
Prompt 4
Help me adapt yusukebe/skills into my own catalog deployed under a custom domain
Prompt 5
List every skill currently in yusukebe/skills and group them by framework

Frequently asked questions

What is skills?

A personal collection of opinionated Markdown how-to notes served as a Hono on Cloudflare Workers site, designed for AI coding agents like Claude Code and Cursor to fetch and follow.

What language is skills written in?

Mainly TypeScript. The stack also includes TypeScript, Hono, Cloudflare Workers.

How hard is skills to set up?

Setup difficulty is rated easy, with roughly 5min to a first successful run.

Who is skills for?

Mainly developer.

Open on GitHub → Explain another repo

This repo across BitVibe Labs

Verify against the repo before relying on details.