Install command
Provided
Install and manage Claude Code Agent Skills - specialized knowledge packages that extend Claude's capabilities with domain expertise and progressive disclosure
Open the source and read safety notes before installing.
Source-backed facts for citing this resource, derived directly from the registry — also available as plain text for AI assistants.
Decision playbook
Signals are present but mixed. Use the checklist below to confirm the source and operational safety for your environment.
0
78
—
No baseline selected
No major trust-signal divergence detected in the current selection.
Confirm ownership and provenance before trusting install instructions.
Source link availableRequired
Open the canonical repository and verify ownership.
Source provenance statusRequired
Marked as source-backed.
Metadata reviewed
Registry metadata indicates a reviewed listing.
Validate risk disclosures before installation or API wiring.
Safety notes presentRequired
Review the listed safety guidance before running commands.
Privacy notes presentRequired
Review data handling notes before connecting accounts or secrets.
Trust level risk gateRequired
Trust level does not block evaluation.
Check package metadata and artifact integrity signals.
Install payload available
Install or copy payload is available for review.
Package verification flag
No package verification flag provided.
Checksum metadata
No checksum provided for downloaded artifact.
Use compare context to validate trade-offs before adoption.
Compare tray has multiple entries
Add at least one more entry to compare trust differences.
Baseline comparison available
No baseline peer selected yet.
Diverging trust signals identified
No major trust-signal divergence found.
Setup at a glance
Copy-ready — paste the snippet to get started.
Install command
Provided
Config snippet
Not provided
Copy snippet
Provided
Prerequisites
None
Platforms
1 listed
Difficulty
100/100
Adoption plan
Current risk score 16/100. Use staged verification before broader rollout.
Validate source and review signals before any execution.
Confirm source provenanceRequired
Source URL/provenance metadata is present.
Confirm metadata review state
Listing has review metadata.
Verify install payload
Install/config payload exists and can be inspected.
Confirm safety, privacy, and package integrity signals.
Review safety notesRequired
Safety notes are present.
Review privacy notesRequired
Privacy notes are present.
Verify package integrity metadata
No package verification/checksum metadata.
Adopt in controlled steps based on the selected plan.
Run in isolated sandbox firstRequired
Use a constrained sandbox and observe behavior across multiple tasks.
Roll out graduallyRequired
Roll out to a small cohort before wider usage.
Set monitoring and fallback
Define rollback path and monitor errors after adoption.
Evidence readiness
Required evidence gates are covered (5/6 signals complete).
Source repository/provenance is listed.
Required in this preset
Review metadata is present.
Required in this preset
Safety notes are present.
Required in this preset
Privacy notes are present.
Optional in this preset
Package integrity metadata is missing.
Optional in this preset
Install payload is available.
Required in this preset
Required evidence gates are covered for this preset.
Decision timeline
5/6 steps complete with no blocking gaps for this preset.
triage
Source/provenance metadata is available.
triage
Review metadata is available.
verify
Safety notes are available.
verify
Privacy notes are available.
verify
Package integrity metadata is missing.
rollout
Install payload is available.
No required blockers for this timeline preset.
Safety & privacy surface
2 safety and 2 privacy notes across 4 risk areas. Review closely: credentials & tokens, permissions & scopes, third-party handling.
/skills-installer [action] [skill-name]The /skills-installer command installs Agent Skills - model-controlled configuration packages that extend Claude's capabilities with specialized domain knowledge.
/skills-installer [action] [skill-name]
--install - Install skill by name--list - List available skills--installed - Show installed skills--uninstall - Remove skill--update - Update installed skills--search - Search skills by keyword--development - Programming and development skills--devops - Infrastructure and deployment--data - Data science and analytics--security - Security and compliance--frontend - UI/UX and frontend--backend - Server-side and APIsAgent Skills are model-controlled configurations that give Claude specialized knowledge:
Command:
/skills-installer --install react-19-expert
Installation:
[Installing Skill: React 19 Expert]
✓ Downloaded skill package
✓ Installed dependencies
✓ Configured activation triggers
Skill Capabilities:
- React 19.1 features (use hook, Server Actions)
- React Compiler optimization
- Server Components best practices
- Concurrent rendering patterns
- New hooks (useOptimistic, useFormStatus)
Activation Triggers:
- React file detected (*.tsx, *.jsx)
- package.json contains "react": "^19"
- Prompts mentioning React/components
✓ Skill installed successfully
Auto-Activation:
User: "Create a form with optimistic updates"
[Agent Skill: React 19 Expert - Activated]
Claude: "I'll use React 19's useOptimistic hook for this..."
// Generated code uses React 19 patterns
import { useOptimistic } from 'react';
export function TodoForm({ addTodo }: Props) {
const [optimisticTodos, addOptimisticTodo] = useOptimistic(
todos,
(state, newTodo) => [...state, newTodo]
);
// ...
}
Command:
/skills-installer --install typescript-strict
Skill Details:
[TypeScript Strict Mode Expert]
Capabilities:
- Enforce strict mode conventions
- No `any` type - suggest `unknown` instead
- Proper type guards
- Discriminated unions
- Advanced type inference
Configuration:
"compilerOptions": {
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitReturns": true
}
✓ Installed
Effect:
// Before skill:
function getData(id: any) {
// Claude might use 'any'
return data[id];
}
// After skill activated:
function getData(id: string): User | undefined {
// Strict types
const user = data[id]; // Could be undefined
if (!user) {
throw new Error(`User ${id} not found`);
}
return user;
}
Command:
/skills-installer --install next-15-expert prisma-advanced tdd-workflow
Batch Installation:
[Installing 3 Skills]
1/3 Next.js 15 Expert
✓ Installed
- App Router patterns
- Server Components
- Partial Prerendering
- React 19 integration
2/3 Prisma Advanced
✓ Installed
- Query optimization
- N+1 prevention
- Migration strategies
- Type safety patterns
3/3 TDD Workflow
✓ Installed
- Test-first development
- Red-green-refactor
- Coverage enforcement
- Mock strategies
✓ All skills installed
Command:
/skills-installer --list --category=development
Output:
[Available Development Skills]
## Frontend
- react-19-expert - React 19.1 features and patterns
- next-15-expert - Next.js 15 App Router mastery
- tailwind-v4 - TailwindCSS v4 modern patterns
- svelte-5-runes - Svelte 5 with runes system
## Backend
- node-20-performance - Node.js 20 performance patterns
- fastify-optimization - Fastify web framework expert
- graphql-federation - GraphQL Federation v2
- prisma-advanced - Advanced Prisma ORM patterns
## Testing
- vitest-advanced - Vitest testing mastery
- playwright-e2e - Playwright E2E testing
- tdd-workflow - Test-driven development expert
## Language Expertise
- typescript-strict - TypeScript strict mode expert
- python-type-hints - Python typing and mypy
- go-idioms - Go language idioms
- rust-ownership - Rust ownership patterns
Total: 47 skills available
Installed: 0
Command:
/skills-installer --installed
Output:
[Installed Skills]
✓ react-19-expert (v1.2.0)
Last used: 2 hours ago
Activations: 45 times
✓ typescript-strict (v2.1.0)
Last used: Active now
Activations: 120 times
✓ next-15-expert (v1.0.5)
Last used: Yesterday
Activations: 30 times
3 skills installed
Storage: 2.4 MB
Command:
/skills-installer --search "database optimization"
Results:
[Search Results: database optimization]
1. prisma-advanced
Description: Advanced Prisma patterns with query optimization
Tags: database, orm, optimization, performance
2. postgres-performance
Description: PostgreSQL query optimization and indexing
Tags: database, postgresql, performance, sql
3. mongodb-aggregation
Description: MongoDB aggregation pipeline mastery
Tags: database, mongodb, nosql, performance
Found 3 matching skills
react-19-expert - React 19 featuresnext-15-expert - Next.js 15 patternsvue-3-composition - Vue 3 Composition APIsvelte-5-runes - Svelte 5 runestailwind-v4 - TailwindCSS v4framer-motion-advanced - Animation patternsnode-20-performance - Node.js optimizationfastapi-async - FastAPI async patternsnestjs-microservices - NestJS architectureexpress-security - Express.js securitygraphql-federation - GraphQL Federationprisma-advanced - Prisma ORM masterypostgres-performance - PostgreSQL optimizationmongodb-aggregation - MongoDB pipelinesredis-caching - Redis caching strategiesdrizzle-orm - Drizzle ORM patternsdocker-optimization - Docker best practiceskubernetes-deployment - K8s deploymentsgithub-actions-ci - GitHub Actions CI/CDterraform-iac - Infrastructure as Codevercel-edge - Vercel Edge Functionsvitest-advanced - Vitest masteryplaywright-e2e - Playwright E2Ecypress-component - Cypress testingtdd-workflow - Test-driven developmentjest-migration - Jest to Vitest migrationowasp-top-10 - OWASP security patternsauth-best-practices - Authentication/authorizationinput-validation - Input sanitizationsecrets-management - Secret handlingcsrf-protection - CSRF preventionUser: "Fix the login component"
[Skill Selection Process]
1. Detect context: React component
2. Check installed skills
3. Activate: react-19-expert
4. Load knowledge: React 19 patterns
5. Apply to task
Claude: *Uses React 19 patterns automatically*
User: "Optimize the database queries in the API"
[Skills Activated]
✓ prisma-advanced (database queries)
✓ node-20-performance (API optimization)
✓ typescript-strict (type safety)
Claude: *Combines knowledge from all 3 skills*
# Project skills (team-shared)
.claude/
skills/
react-19-expert/
config.json
patterns.md
examples/
typescript-strict/
config.json
rules.md
# User skills (personal)
~/.claude/
skills/
personal-shortcuts/
// .claude/skills/react-19-expert/config.json
{
"name": "react-19-expert",
"version": "1.2.0",
"description": "React 19 expert with latest features",
"activationTriggers": [
{ "filePattern": "**/*.{tsx,jsx}" },
{ "keyword": "react" },
{ "packageJson": "react" }
],
"capabilities": [
"React 19.1 features",
"Server Components",
"React Compiler",
"New hooks"
],
"dependencies": ["typescript-strict"]
}
Command:
/skills-installer --update
Update Process:
[Checking for Updates]
✓ react-19-expert: v1.2.0 → v1.3.0 available
- Added Server Actions patterns
- Improved useOptimistic examples
✓ typescript-strict: Up to date (v2.1.0)
✓ next-15-expert: v1.0.5 → v1.1.0 available
- Partial Prerendering patterns
- Updated caching strategies
Update all? (y/n): y
[Updating 2 skills]
✓ react-19-expert updated
✓ next-15-expert updated
All skills up to date
# ✅ Good: Install skills you actually use
/skills-installer --install react-19-expert typescript-strict
# ❌ Bad: Install everything
/skills-installer --install * # Don't do this
# Commit skills config to git
git add .claude/skills/
git commit -m "Add React 19 and TypeScript skills"
# Team members get same skills automatically
git pull
# Skills auto-install on first use
// More specific skills override general skills
{
"skills": [
{ "name": "typescript-strict", "priority": 10 },
{ "name": "react-19-expert", "priority": 20 }, // Higher priority
{ "name": "next-15-expert", "priority": 30 } // Highest priority
]
}
# Check skill installation
/skills-installer --installed
# Verify activation triggers
# Edit .claude/skills/[skill]/config.json
# Manually activate for testing
"Use the React 19 expert skill for this task"
# Some skills may conflict
# Example: jest-expert + vitest-expert
# Solution: Uninstall conflicting skill
/skills-installer --uninstall jest-expert
# Rollback to previous version
/skills-installer --rollback react-19-expert
# Or pin specific version
/skills-installer --install react-19-expert@1.2.0
Agent Skills Installer for Claude Code side by side with its closest alternative on trust, install, platform support, and disclosed safety notes — all from reviewed registry metadata.
| Field | Install and manage Claude Code Agent Skills - specialized knowledge packages that extend Claude's capabilities with domain expertise and progressive disclosure Open dossier | User-created Claude Code custom slash command recipe for planning deeper tests around a file or function, including edge cases, property-style invariants, regression cases, and mutation-score gaps where the project already supports those tools. Open dossier |
|---|---|---|
| Next steps | ||
| Trust | ||
| Review status | ReviewedMaintainer reviewed | ReviewedMaintainer reviewed |
| Package trust | Package not verified | Package not verified |
| Source provenance | Source-backed | Source-backed |
| Submitter | — | — |
| Install risk | Review first | Review first |
| Notes | Safety ✓ Privacy ✓ | Safety ✓ Privacy ✓ |
| Brand | — | — |
| Category | commands | commands |
| Source | source-backed | source-backed |
| Author | JSONbored | JSONbored |
| Added | 2025-10-25 | 2025-09-16 |
| Platforms | Claude Code | Claude Code |
| Source repo | — | — |
| Safety notes | ✓Review generated changes and commands before applying them; slash commands can ask the agent to read, write, edit, or run tools in the current project. Limit scope to the intended files and run in a trusted checkout when the command analyzes code, tests, security findings, or generated output. | ✓This recipe asks Claude to inspect and draft tests against local project code; review generated tests before committing them. Run the narrowest relevant test command yourself and verify failures before broadening the suite or changing production code. If you add allowed-tools or dynamic shell injection to the command file, scope those permissions narrowly because the command can run local tools. |
| Privacy notes | ✓Prompts, source files, logs, errors, dependency metadata, and generated reports may be sent to the configured AI model during command execution. Redact secrets, customer data, private repository details, and proprietary code before sharing command output outside the workspace. | ✓The target source file, nearby tests, failures, logs, and command arguments may be sent into the model context. Use synthetic fixtures and redacted logs; do not paste production data, credentials, customer records, or private incident details into generated tests. |
| Prerequisites | — none listed | — none listed |
| Install | | |
| Config | — | — |
| Citations | ||
| Claim | Unclaimed | Unclaimed |
Source-backed guides for putting this to work.
Loading live community signals…
A short, calm digest of reviewed Claude resources. Unsubscribe any time.