https://github.com/teamplanes/hangar
The Hangar — Planes' shared library of Claude skills, prompts and recipes by discipline. https://planes-hangar.vercel.app
https://github.com/teamplanes/hangar
Last synced: about 22 hours ago
JSON representation
The Hangar — Planes' shared library of Claude skills, prompts and recipes by discipline. https://planes-hangar.vercel.app
- Host: GitHub
- URL: https://github.com/teamplanes/hangar
- Owner: teamplanes
- Created: 2026-06-07T21:27:27.000Z (12 days ago)
- Default Branch: main
- Last Pushed: 2026-06-15T12:51:08.000Z (4 days ago)
- Last Synced: 2026-06-15T14:24:32.683Z (4 days ago)
- Language: TypeScript
- Homepage: https://hangar-azure.vercel.app
- Size: 1.23 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# The Hangar
Planes' shared library of Claude skills, prompts and recipes, organised by discipline ("bays"). Browse, install, and contribute.
Live site: **https://planes-hangar.vercel.app**
## Install skills in Claude Code
Register the marketplace once, then install whichever bay packs you want:
```bash
claude plugin marketplace add teamplanes/hangar
claude plugin install hangar-product@planes-hangar
```
Swap `hangar-product` for any bay: `hangar-design`, `hangar-dev`, `hangar-new-business`, `hangar-general`, `hangar-just-for-fun`. Skills land as slash commands and persist between sessions.
The repo is public, so the `marketplace add` step works for anyone with no GitHub auth required.
## Add a skill
Two ways:
1. **From the site.** Use "Add to The Hangar" on https://planes-hangar.vercel.app. It opens a pre-filled GitHub "new file" page; commit it and open a PR.
2. **By hand.** Add a markdown file under `skills//.md` with the frontmatter other skills use (see any existing skill), then open a PR.
A skill in `skills//` renders on the site automatically. To make it installable via the plugin marketplace, also add it under `plugins/hangar-/skills//SKILL.md`.
## Local development
```bash
npm install
npm run dev # http://localhost:3000
npm run build # production build
```
Built with Next.js (App Router). Skills are markdown files parsed at build time; the filesystem is the source of truth.