The secure, validated skill registry for professional AI coding agents. Extend Antigravity, Claude Code, Cursor, Copilot and more with absolute confidence.
> /plugin marketplace add tech-leads-club/agent-skills> /plugin install agent-skills-mcp@tech-leads-club
Repo: tech-leads-club/agent-skills
What's inside
Skills are packaged instructions and resources that extend AI agent capabilities. Think of them as plugins for your AI assistant โ they teach your agent new workflows, patterns, and specialized knowledge.
packages/skills-catalog/skills/
(category-name)/
skill/
SKILL.md โ Main instructions
templates/ โ File templates
references/ โ On-demand documentation
Your environment's safety is our top priority. Unlike open marketplaces where 13.4% of skills contain critical issues, agent-skills is a managed, hardened library: 100% open source (no binaries), static analysis in CI/CD, immutable integrity via lockfiles and content hashing, and human-curated prompts. The CLI uses defense-in-depth (sanitization, path isolation, symlink guards, atomic lockfile, audit trail); every skill is scanned with Snyk Agent Scan (formerly mcp-scan) before publishing.
โ Full threat model, implementation details, and vulnerability reporting: SECURITY.md
Install skills to any of these AI coding agents:
| Tier 1 (Popular) | Tier 2 (Rising) | Tier 3 (Enterprise) |
|---|---|---|
| Claude Code | Aider | Amazon Q |
| Cline | Antigravity | Augment |
| Cursor | Gemini CLI | Droid (Factory.ai) |
| GitHub Copilot | Kilo Code | OpenCode |
| Windsurf | Kiro | Sourcegraph Cody |
| OpenAI Codex | Tabnine | |
| Roo Code | ||
| TRAE |
A glimpse of what's available in our growing catalog:
| Skill | Category | Description |
|---|---|---|
| tlc-spec-driven | Development | Project and feature planning with 4 phases: Specify โ Design โ Tasks โ Implement. Creates atomic tasks with verification criteria and maintains persistent memory across sessions. |
| aws-advisor | Cloud | Expert AWS Cloud Advisor for architecture design, security review, and implementation guidance. Leverages AWS MCP tools for documentation-backed answers. |
| playwright-skill | Automation | Complete browser automation with Playwright. Test pages, fill forms, take screenshots, validate UX, and automate any browser task. |
| figma | Design | Fetch design context from Figma and translate nodes into production code. Design-to-code implementation with MCP integration. |
| security-best-practices | Security | Language and framework-specific security reviews. Detect vulnerabilities, generate reports, and suggest secure-by-default fixes. |
npx @tech-leads-club/agent-skills
This launches an interactive wizard:
Each step shows a โ Back option to return and revise your choices.
Note: You can use either
npx @tech-leads-club/agent-skillsor install globally and useagent-skillsdirectly.
# Interactive mode (default)
npx @tech-leads-club/agent-skills
# or: agent-skills (if installed globally)
# List available skills
agent-skills list
agent-skills ls # Alias
# Install one skill
agent-skills install -s tlc-spec-driven
# Install multiple skills at once
agent-skills install -s aws-advisor coding-guidelines docs-writer
# Install to specific agents
agent-skills install -s my-skill -a cursor claude-code
# Install multiple skills to multiple agents
agent-skills install -s aws-advisor nx-workspace -a cursor windsurf cline
# Install globally (to ~/.gemini, ~/.claude, etc.)
agent-skills install -s my-skill -g
# Use symlink instead of copy
agent-skills install -s my-skill --symlink
# Force re-download (bypass cache)
agent-skills install -s my-skill --force
# Update a specific skill
agent-skills update -s my-skill
# Update all installed skills
agent-skills update
# Remove one skill
agent-skills remove -s my-skill
# Remove multiple skills at once
agent-skills remove -s skill1 skill2 skill3
agent-skills rm -s my-skill # Alias
# Remove from specific agents
agent-skills remove -s my-skill -a cursor windsurf
# Force removal (bypass lockfile check)
agent-skills remove -s my-skill --force
# Manage cache
agent-skills cache --clear # Clear all cache
agent-skills cache --clear-registry # Clear only registry
agent-skills cache --path # Show cache location
# View audit log
agent-skills audit # Show recent operations
agent-skills audit -n 20 # Show last 20 entries
agent-skills audit --path # Show audit log location
# Show contributors and credits
agent-skills credits
# Show help
agent-skills --help
npm install -g @tech-leads-club/agent-skills
agent-skills # Use 'agent-skills' instead of 'npx @tech-leads-club/agent-skills'
The CLI fetches skills on-demand from our CDN:
Downloaded skills are cached in ~/.cache/agent-skills/ for offline use.
# Clear the cache
rm -rf ~/.cache/agent-skills
@tech-leads-club/agent-skills-mcp is an MCP server that exposes the skills catalog directly to AI agents via progressive disclosure โ search first, then fetch only what's needed.
| Tool | Purpose |
|---|---|
list_skills | Browse all skills by category |
search_skills | Find skills by intent (fuzzy search) |
read_skill | Load a skill's main instructions |
fetch_skill_files | Fetch specific reference files |
list_skills should be called only when the user explicitly asks to browse/list the catalog.
Quick install (works with any MCP-compatible client):
{
"mcpServers": {
"agent-skills": {
"command": "npx",
"args": ["-y", "@tech-leads-club/agent-skills-mcp"]
}
}
}
โ Full setup for all clients (Cursor, Claude Code, VS Code, etc.), caching, and error reference: packages/mcp/README.md
We welcome contributions! Please see our CONTRIBUTING.md file for detailed guidelines on how to set up your local environment, create new skills, contribute to the marketplace, and follow our release processes.
This repository is a collection of curated skills intended to benefit the community. We deeply respect the intellectual property and wishes of all creators.
If you are the author of any content included here and would like it removed or updated, please open an issue or contact the maintainers.
SKILL.md) authored by the repository maintainers are licensed under the Creative Commons Attribution 4.0 International License (CC-BY-4.0).SKILL.md files for specific licensing and author attribution.If you use our skills catalog, you must provide attribution to Tech Leads Club, regardless of how it is used.
.claude-plugin/
marketplace.json
.cursor-plugin/
marketplace.json
.github/
actions/
check-ci-status/
action.yml
security-scan/
security-scan-notify/
action.yml
security-scan-pr-comment/
action.yml
security-scan-print-results/
action.yml
action.yml
setup/
action.yml
snapshot-notification/
action.yml
validate-skills/
action.yml
assets/
logo.png
ISSUE_TEMPLATE/
change-or-bug.yml
config.yml
new-skill.yml
pull_request_template.md
workflows/
deploy-marketplace.yml
release.yml
.gitignore
.nvmrc
.nx/
SELF_HEALING.md
.prettierignore
.prettierrc
AGENTS.md
CHANGELOG.md
CLAUDE.md
CONTRIBUTING.md
eslint.config.js
jest.config.ts
jest.preset.js
libs/
core/
eslint.config.mjs
jest.config.ts
package.json
project.json
README.md
src/
api-surface.spec.ts
index.spec.ts
index.ts
lib/
adapters/
__tests__/
create-node-adapters.spec.ts
node-env.adapter.spec.ts
node-filesystem.adapter.spec.ts
node-http.adapter.spec.ts
node-logger.adapter.spec.ts
node-package-resolver.adapter.spec.ts
node-paths.adapter.spec.ts
node-shell.adapter.spec.ts
index.ts
node-env.adapter.ts
node-filesystem.adapter.ts
node-http.adapter.ts
node-logger.adapter.ts
node-package-resolver.adapter.ts
node-paths.adapter.ts
node-shell.adapter.ts
constants.ts
ports/
env.port.ts
filesystem.port.ts
http.port.ts
index.ts
logger.port.ts
package-resolver.port.ts
paths.port.ts
shell.port.ts
services/
__tests__/
agents.service.spec.ts
audit-log.service.spec.ts
categories.service.spec.ts
global-path.service.spec.ts
installer.service.spec.ts
lockfile.service.spec.ts
markdown-parser.service.spec.ts
project-root.service.spec.ts
registry.service.spec.ts
skills-provider.service.spec.ts
update.service.spec.ts
agents.service.ts
audit-log.service.ts
categories.service.ts
global-path.service.ts
index.spec.ts
index.ts
installer.service.ts
lockfile.service.ts
markdown-parser.service.ts
project-root.service.ts
registry.service.ts
skills-provider.service.ts
update.service.ts
types.ts
utils.spec.ts
utils.ts
tsconfig.json
tsconfig.lib.json
tsconfig.spec.json
LICENSE
nx.json
package-lock.json
package.json
packages/
cli/
CHANGELOG.md
jest.config.ts
package.json
project.json
src/
__tests__/
ports.test.ts
app.tsx
assets/
chiptune.mp3
atoms/
deprecatedSkills.ts
environmentCheck.ts
installedSkills.ts
wizard.ts
cli/
audit.ts
cache.ts
install.ts
remove.ts
update.ts
components/
__tests__/
AnimatedTransition.pbt.test.tsx
CategoryHeader.pbt.test.tsx
CategoryHeader.test.tsx
KeyboardShortcutsOverlay.pbt.test.tsx
KeyboardShortcutsOverlay.test.tsx
SkillDetailPanel.test.tsx
AnimatedTransition.tsx
AuditLogViewer.tsx
CategoryHeader.tsx
ConfirmPrompt.tsx
FooterBar.tsx
Header.tsx
index.ts
InstallResults.tsx
KeyboardShortcutsOverlay.tsx
MultiSelectPrompt.tsx
SearchInput.tsx
SelectPrompt.tsx
SkillCard.tsx
SkillDetailPanel.tsx
StatusBadge.tsx
hooks/
__tests__/
useConfig.test.ts
index.ts
useAgents.ts
useConfig.ts
useFilter.ts
useInstaller.ts
useKeyboardNav.ts
useKonamiCode.ts
useRemover.ts
useSkillContent.ts
useSkills.ts
useWizardStep.ts
index.ts
ports.ts
services/
__tests__/
badge-format.test.ts
category-colors.test.ts
config.test.ts
terminal-dimensions.pbt.test.ts
terminal-dimensions.test.ts
update-cache.pbt.test.ts
update-cache.test.ts
audio-player.ts
badge-format.ts
category-colors.ts
config.ts
github-contributors.ts
index.ts
package-info.ts
terminal-dimensions.ts
update-cache.ts
update-check.ts
theme/
colors.ts
index.ts
symbols.ts
types.ts
utils/
constants.ts
paths.ts
views/
ActionSelector.tsx
AgentSelector.tsx
arcade/
ArcadeMenu.tsx
index.ts
VibeInvaders.tsx
CreditsView.tsx
index.ts
InstallConfig.tsx
InstallWizard.tsx
ListView.tsx
RemoveWizard.tsx
SkillBrowser.tsx
UpdateView.tsx
tsconfig.json
tsconfig.spec.json
marketplace/
.gitignore
.swcrc
index.d.ts
jest.config.ts
next.config.mjs
package.json
postcss.config.cjs
project.json
public/
.gitkeep
.nojekyll
apple-touch-icon.png
favicon-32x32.png
favicon.ico
og-image.png
og-tlc-spec-driven.png
robots.txt
tlc-logo-dark.svg
white_logo.png
README.md
scripts/
generate-data.ts
generate-tlc-spec-driven-og.mjs
seo-smoke.mjs
src/
app/
about/
page.tsx
global.css
layout.tsx
page.tsx
sitemap.ts
skills/
[id]/
page.tsx
page.tsx
SkillsClient.tsx
tlc-spec-driven/
page.tsx
components/
__tests__/
SkillsCrawlIndex.test.tsx
benchmark/
BenchmarkHero.tsx
ComparisonTable.tsx
ConsistencyChart.tsx
DirectQuestions.tsx
FinalScoreChart.tsx
ImplVsTestsChart.tsx
ModelTable.tsx
SpecDrivenBenchmark.tsx
useChartTheme.ts
ValueScatter.tsx
VerdictCTA.tsx
CategoryBadge.tsx
CategoryFilter.tsx
CopyButton.tsx
JsonLd.tsx
lp/
LPFinalCTA.tsx
LPHero.tsx
LPHowItWorks.tsx
LPQuality.tsx
LPSimplicity.tsx
LPValueProps.tsx
NpmDownloadsCard.tsx
Pagination.tsx
SafeMarkdownAnchor.tsx
SearchBar.tsx
ShareButton.tsx
SkillCard.tsx
SkillsCrawlIndex.tsx
StatsCard.tsx
ThemeProvider.tsx
ThemeToggle.tsx
data/
skills.json
spec-driven-benchmark.ts
lib/
__tests__/
demote-markdown-h1.test.ts
markdown-code-fences.test.ts
safe-markdown-href.test.ts
skill-display-name.test.ts
skills-filter.test.ts
demote-markdown-h1.ts
markdown-code-fences.ts
safe-markdown-href.ts
skill-display-name.ts
skills-filter.ts
types/
index.ts
tsconfig.json
tsconfig.spec.json
mcp/
.claude-plugin/
plugin.json
.cursor-plugin/
plugin.json
assets/
logo.svg
CHANGELOG.md
jest.config.ts
mcp.json
package.json
project.json
README.md
src/
__tests__/
integrity.test.ts
prompts.test.ts
registry.test.ts
staging.test.ts
utils.test.ts
cdn.ts
constants.ts
integrity.ts
main.ts
prompts.ts
registry.ts
resources.ts
staging.ts
tools/
__tests__/
fetcher-core.test.ts
helpers.ts
list.test.ts
search-core.test.ts
search-tool.test.ts
search.test.ts
skill-core.test.ts
staging-core.test.ts
core/
fetcher.ts
list.ts
search.ts
skill.ts
staging.ts
fetcher-tool.ts
list-tool.ts
prepare-tool.ts
search-tool.ts
skill-tool.ts
types.ts
utils.ts
tsconfig.app.json
tsconfig.json
tsconfig.spec.json
skills-catalog/
CHANGELOG.md
package.json
project.json
security-scan-allowlist.yaml
skills/
skills-registry.json
_category.json
(architecture)/
component-common-domain-detection/
QUICK-REFERENCE.md
README.md
SKILL.md
component-flattening-analysis/
QUICK-REFERENCE.md
README.md
SKILL.md
component-identification-sizing/
QUICK-REFERENCE.md
README.md
SKILL.md
coupling-analysis/
SKILL.md
decomposition-planning-roadmap/
... 992 moreFAQ
tech-leads-club-agent-skills is a Claude Code plugin with 88 hand-picked skills for development work, indexed on Flowy. Install it with the command on its page. It includes component-common-domain-detection, component-flattening-analysis, component-identification-sizing. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.