Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
32 changes: 22 additions & 10 deletions .agents/skills/README.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,34 @@
# Agent skill packs

This directory vendors several agent-skill packs so they are available to
This directory vendors agent-skill packs so they are available to
Codex and Prime Agent (which discover skills under `.agents/skills/`). The same
packs are mirrored under [`.claude/skills/`](../../.claude/skills/) for Claude
Code and Cursor.

| Pack | Source | License |
| --- | --- | --- |
| `find-skills/` | [`vercel-labs/skills`](https://github.com/vercel-labs/skills) (`find-skills` only) | MIT |
| `superpowers/` | [`obra/superpowers`](https://github.com/obra/superpowers) | MIT |
| `mattpocock/` | [`mattpocock/skills`](https://github.com/mattpocock/skills) | MIT |
| `gstack/` | [`garrytan/gstack`](https://github.com/garrytan/gstack) | MIT |
| `pstack/` | [`michael-denyer/pstack-claude`](https://github.com/michael-denyer/pstack-claude) (poteto's pstack port) | MIT |
| `pstack/` | [`cursor/plugins` pstack](https://github.com/cursor/plugins/tree/main/pstack) | MIT |
| `improve/` | [`shadcn/improve`](https://github.com/shadcn/improve) | MIT |
| `cursor-team-kit/` | [`cursor/plugins` cursor-team-kit](https://github.com/cursor/plugins/tree/main/cursor-team-kit) | MIT |
| `vercel-agent-skills/` | [`vercel-labs/agent-skills`](https://github.com/vercel-labs/agent-skills) | MIT (README) |
| `addyosmani/` | [`addyosmani/agent-skills`](https://github.com/addyosmani/agent-skills) | MIT |
| `trailofbits/` | [`trailofbits/skills`](https://github.com/trailofbits/skills) | CC-BY-SA-4.0 |
| `agent-browser/` | [`vercel-labs/agent-browser`](https://github.com/vercel-labs/agent-browser) | Apache-2.0 |
| `compound-engineering/` | [`EveryInc/compound-engineering-plugin`](https://github.com/EveryInc/compound-engineering-plugin) | MIT |
| `anthropics/` | [`anthropics/skills`](https://github.com/anthropics/skills) (engineering subset) | Apache-2.0 (per skill) |
| `awesome-copilot/` | [`github/awesome-copilot`](https://github.com/github/awesome-copilot) (full `skills/` toolbox) | MIT |
| `spec-kit/` | [`github/spec-kit`](https://github.com/github/spec-kit) (command templates as skills, v1.0.1) | MIT |
| `microsoft/` | [`microsoft/skills`](https://github.com/microsoft/skills) (documented subset) | MIT |
| `aws/` | [`aws/agent-toolkit-for-aws`](https://github.com/aws/agent-toolkit-for-aws) (`skills/` tree) | Apache-2.0 |
| `cloudflare/` | [`cloudflare/skills`](https://github.com/cloudflare/skills) | Apache-2.0 |
| `supabase/` | [`supabase/agent-skills`](https://github.com/supabase/agent-skills) | MIT |

- Full, browsable index with every skill and its trigger description:
[`docs/agent-skills.md`](../../docs/agent-skills.md).
- These are **slimmed** installs: only `SKILL.md` files and their Markdown
references are vendored; upstream build scripts, browser extensions, tests and
binaries are excluded to keep the repo lean.
- To refresh/update from upstream:
`./scripts/install-agent-skills.sh && node scripts/gen-skills-index.js`.
- Each pack directory retains its upstream `LICENSE` for attribution.
- Full index: [`docs/agent-skills.md`](../../docs/agent-skills.md).
- Why these packs: [`docs/agent-skill-packs.md`](../../docs/agent-skill-packs.md).
- Slimmed install: `SKILL.md`, Markdown references, and each skill's `scripts/`.
- Refresh: `./scripts/install-agent-skills.sh && node scripts/gen-skills-index.js`.
- Pipeline: find-skills β†’ spec (gstack **XOR** spec-kit **XOR** CE) β†’ interrogate β†’ implement (pstack **XOR** Superpowers) β†’ review β†’ ToB β†’ agent-browser QA β†’ ship β†’ CE compound. Never run CE + gstack + Superpowers + pstack on the same task.
21 changes: 21 additions & 0 deletions .agents/skills/addyosmani/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2025 Addy Osmani

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading
Loading