{"id":50100854,"url":"https://github.com/yusukebe/skills","last_synced_at":"2026-05-27T11:01:04.134Z","repository":{"id":359239625,"uuid":"1245107731","full_name":"yusukebe/skills","owner":"yusukebe","description":"Skills for yusukebe","archived":false,"fork":false,"pushed_at":"2026-05-22T06:58:36.000Z","size":133,"stargazers_count":34,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-26T10:30:20.020Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://skills.yusuke.run","language":"TypeScript","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yusukebe.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-05-20T23:19:26.000Z","updated_at":"2026-05-26T09:59:15.000Z","dependencies_parsed_at":"2026-05-24T08:00:57.790Z","dependency_job_id":null,"html_url":"https://github.com/yusukebe/skills","commit_stats":null,"previous_names":["yusukebe/skills"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/yusukebe/skills","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yusukebe%2Fskills","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yusukebe%2Fskills/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yusukebe%2Fskills/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yusukebe%2Fskills/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yusukebe","download_url":"https://codeload.github.com/yusukebe/skills/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yusukebe%2Fskills/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33562773,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-27T02:00:06.184Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-05-23T07:16:08.743Z","updated_at":"2026-05-27T11:01:04.084Z","avatar_url":"https://github.com/yusukebe.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# skills.yusuke.run\n\nA personal, curated collection of **skills** — small, focused Markdown documents that describe how to do specific things with specific tools. Designed to be consumed by coding agents (Claude Code, Cursor, etc.) and by humans.\n\nDeployed at \u003chttps://skills.yusuke.run\u003e.\n\n## What is a \"skill\"?\n\nA skill is a `SKILL.md` Markdown document that answers a focused question like:\n\n- \"How do I build a server-rendered UI with Hono?\"\n- \"How do I combine Inertia.js with Hono?\"\n- \"How do I structure a Cloudflare Workers project with D1?\"\n\nEach skill is small, opinionated (it reflects how _I_ like to do it), and includes links to the canonical human-facing documentation so an agent can drill deeper when needed. The on-disk layout (`skills/\u003cname\u003e/SKILL.md`) matches the `vercel-labs/skills` CLI, so the catalog is also installable into Claude Code, Cursor, and other agents via `npx skills add`.\n\n## How agents should use this\n\nThere are two ways to consume the catalog. Pick whichever the agent / tool supports.\n\n**Fetch on demand (no installation).** Drop this into your agent at the start of a new project:\n\n\u003e `fetch https://skills.yusuke.run/start.md to start a new project`\n\nThe landing page (`/`) shows this same line, ready to copy. From `/start.md` the agent discovers every available skill and drills down into the ones it needs.\n\n**Install as local skills.** For tools that integrate with the `skills` CLI (Claude Code, Cursor, OpenCode, Codex, ...):\n\n```sh\nnpx skills add yusukebe/skills\n```\n\nThis installs the catalog into the agent's local skills directory so the agent can match on `description` without an HTTP fetch.\n\n## URL shape\n\n- `GET /` — human-facing landing with the copy-pasteable agent prompt.\n- `GET /start.md` — agent entry point. Markdown: usage instructions + skill index.\n- `GET /skills/:name` — a single skill (Markdown).\n- `GET /skills/:name.json` — the same skill as JSON (frontmatter + body).\n- `GET /skills.json` — machine-readable full index.\n\nAll Markdown content is served as `text/markdown; charset=utf-8`.\n\n## Repository layout\n\n```text\n.\n├── AGENTS.md                # Instructions for AI agents working in this repo\n├── README.md                # This file\n├── skills/                  # One directory per skill, each containing SKILL.md\n│   └── \u003cname\u003e/SKILL.md\n├── scripts/\n│   └── build-registry.ts    # Scans skills/*/SKILL.md, writes src/registry.generated.ts\n├── src/\n│   ├── index.ts             # Hono routes\n│   ├── landing.ts           # Renders the / and /start.md responses\n│   ├── landing.template.md  # Template for /\n│   ├── start.template.md    # Template for /start.md (with {{skills}} placeholder)\n│   ├── frontmatter.ts       # Minimal YAML frontmatter parser\n│   ├── registry.generated.ts # Build output — frontmatter for every skill (gitignored)\n│   └── skills.ts            # Reads the generated registry, fetches bodies via env.ASSETS\n└── wrangler.jsonc\n```\n\n## Adding a new skill\n\nSee [AGENTS.md](./AGENTS.md) for the full contribution procedure. The short version:\n\n1. Create `skills/\u003cname\u003e/SKILL.md` with the frontmatter shown in AGENTS.md.\n2. `bun run dev` to preview (the registry is regenerated automatically from `skills/*/SKILL.md`).\n3. Push to `main` — Cloudflare Workers Builds handles the deploy.\n\nFrom another working project, an agent can also open a PR for you — see the [`contribute`](https://skills.yusuke.run/skills/contribute) skill.\n\n## Develop\n\n```sh\nbun install\nbun run dev      # local preview at http://localhost:8787\n```\n\n## Deploy\n\nDeployment is automated via **Cloudflare Workers Builds**. Any push to `main` builds and deploys the Worker.\n\nInitial setup (one-time, in the Cloudflare dashboard):\n\n1. **Workers \u0026 Pages** → the `skills` Worker → **Settings** → **Builds**.\n2. **Connect** the GitHub repository `yusukebe/skills`.\n3. **Branch:** `main`.\n4. **Build command:** leave empty (or `bun install`).\n5. **Deploy command:** `bun run deploy`.\n\n`bun run deploy` regenerates `src/registry.generated.ts` from the current `skills/*/SKILL.md` and then runs `wrangler deploy`. The build step is bundled into the `deploy` script so a manual local deploy can't forget it either.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyusukebe%2Fskills","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyusukebe%2Fskills","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyusukebe%2Fskills/lists"}