acquiring-skills
Guide for safely discovering and installing skills from external repositories. Use when a user asks for something where a specialized skill likely exists (browser testing, PDF processing, document generation, etc.) and you want to bootstrap your understanding rather than starting from scratch.
Install
mkdir -p .claude/skills/acquiring-skills && curl -L -o skill.zip "https://mcp.directory/api/skills/download/2413" && unzip -o skill.zip -d .claude/skills/acquiring-skills && rm skill.zipInstalls to .claude/skills/acquiring-skills
About this skill
Acquiring New Skills
This skill teaches you how to safely discover and install skills from external sources.
SAFETY - READ THIS FIRST
Skills can contain:
- Markdown files (.md) - Risk: prompt injection, misleading instructions
- Scripts (Python, TypeScript, Bash) - Risk: malicious code execution
Trusted Sources (no user approval needed for download)
https://github.com/letta-ai/skills- Letta's community skillshttps://github.com/anthropics/skills- Anthropic's official skills
Untrusted Sources (ALWAYS verify with user)
For ANY source other than letta-ai or anthropics:
- Ask the user before downloading
- Explain where the skill comes from
- Get explicit approval
Script Safety
Even for skills from trusted sources, ALWAYS:
- Read and inspect any scripts before executing them
- Understand what the script does
- Be wary of network calls, file operations, or system commands
When to Use This Skill
DO use when:
- User asks for something where a skill likely exists (e.g., "help me test this webapp", "generate a PDF report")
- You think "there's probably a skill that would bootstrap my understanding"
- User explicitly asks about available skills or extending capabilities
DON'T use for:
- General coding tasks you can already handle
- Simple bug fixes or feature implementations
- Tasks where you have sufficient knowledge
Ask Before Searching (Interactive Mode)
If you recognize a task that might have an associated skill, ask the user first:
"This sounds like something where a community skill might help (e.g., webapp testing with Playwright). Would you like me to look for available skills in the Letta or Anthropic repositories? This might take a minute, or I can start coding right away if you prefer."
The user may prefer to start immediately rather than wait for skill discovery.
Only proceed with skill acquisition if the user agrees.
Skill Repositories
| Repository | Description |
|---|---|
| https://github.com/letta-ai/skills | Community skills for Letta agents |
| https://github.com/anthropics/skills | Anthropic's official Agent Skills |
Browse these repositories to discover available skills. Check the README for skill listings.
Installation Locations
| Location | Path | When to Use |
|---|---|---|
| Agent-scoped | ~/.letta/agents/<agent-id>/skills/<skill>/ | Skills for a single agent (default for agent-specific capabilities) |
| Global | ~/.letta/skills/<skill>/ | General-purpose skills useful across projects |
| Project | .skills/<skill>/ | Project-specific skills |
Rule: Default to agent-scoped for changes that should apply only to the current agent. Use project for repo-specific skills. Use global only if all agents should inherit the skill.
How to Download Skills
Skills are directories containing SKILL.md and optionally scripts/, references/, examples/.
Method: Clone to /tmp, then copy
# 1. Clone the repo (shallow)
git clone --depth 1 https://github.com/anthropics/skills /tmp/skills-temp
# 2. Copy the skill to your skills directory
# For agent-scoped (recommended default):
cp -r /tmp/skills-temp/skills/webapp-testing ~/.letta/agents/<agent-id>/skills/
# For global:
# cp -r /tmp/skills-temp/skills/webapp-testing ~/.letta/skills/
# For project:
# cp -r /tmp/skills-temp/skills/webapp-testing .skills/
# 3. Cleanup
rm -rf /tmp/skills-temp
Alternative: rsync (preserves permissions)
git clone --depth 1 https://github.com/anthropics/skills /tmp/skills-temp
rsync -av /tmp/skills-temp/skills/webapp-testing/ ~/.letta/agents/<agent-id>/skills/webapp-testing/
rm -rf /tmp/skills-temp
Registering New Skills
After downloading a skill, it will be automatically discovered on the next message. Skills are discovered from ~/.letta/skills/, .skills/, and agent-scoped ~/.letta/agents/<agent-id>/skills/ directories.
Complete Example
User asks: "Can you help me test my React app's UI?"
- Recognize opportunity: Browser/webapp testing - likely has a skill
- Ask user: "Would you like me to look for webapp testing skills, or start coding right away?"
- If user agrees, find skill: Check anthropics/skills for webapp-testing
- Download (trusted source):
git clone --depth 1 https://github.com/anthropics/skills /tmp/skills-temp cp -r /tmp/skills-temp/skills/webapp-testing ~/.letta/agents/<agent-id>/skills/ rm -rf /tmp/skills-temp - Inspect scripts: Read any .py or .ts files before using them
- Invoke:
Skill(skill: "webapp-testing") - Use: Follow the skill's instructions for the user's task
More by letta-ai
View all →You might also like
flutter-development
aj-geddes
Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.
drawio-diagrams-enhanced
jgtolentino
Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.
godot
bfollington
This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.
nano-banana-pro
garg-aayush
Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.
ui-ux-pro-max
nextlevelbuilder
"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."
rust-coding-skill
UtakataKyosui
Guides Claude in writing idiomatic, efficient, well-structured Rust code using proper data modeling, traits, impl organization, macros, and build-speed best practices.
Stay ahead of the MCP ecosystem
Get weekly updates on new skills and servers.