bootspring_skill

Search and retrieve code patterns and skills. Find battle-tested implementations for common tasks.

Overview#

The bootspring_skill tool provides access to Bootspring's library of code patterns and skills. Skills are curated implementations for common development tasks like authentication, database operations, API design, and more.

Parameters#

ParameterTypeRequiredDescription
actionstringYesAction to perform
namestringNoSkill name (e.g., auth/jwt, database/prisma)
querystringNoSearch query
includeExternalbooleanNoInclude external skills from skills/external
limitnumberNoLimit result count (default: 50)
summarybooleanNoReturn concise summary instead of full content
sectionsstringNoComma-separated section keywords to include
maxCharsnumberNoCap returned content length
modestringNoEntitlement mode: local or server
entitledbooleanNoOverride for external skills
tierstringNoTier override: free, pro, team, enterprise

Actions#

ActionDescription
listList all available skills
showShow a specific skill's content
searchSearch skills by query
syncSync remote external catalog

Sync-Specific Parameters#

For action: sync:

ParameterTypeDescription
manifestUrlstringRemote manifest URL
contentBaseUrlstringFallback base URL for SKILL.md files
tokenstringOptional bearer token
cacheDirstringLocal cache directory override
manifestPublicKeystringPEM public key for signature verification
requireManifestSignaturebooleanRequire signature validation

Usage Examples#

List All Skills#

Use the bootspring_skill tool with: - action: "list"

Response:

Loading code block...

Show a Skill#

Use the bootspring_skill tool with: - action: "show" - name: "auth/jwt"

Response:

Loading code block...

Show Skill Summary#

Use the bootspring_skill tool with: - action: "show" - name: "database/prisma" - summary: true

Response:

Loading code block...

Show Specific Sections#

Use the bootspring_skill tool with: - action: "show" - name: "auth/jwt" - sections: "installation,setup"

Search Skills#

Use the bootspring_skill tool with: - action: "search" - query: "authentication"

Response:

Loading code block...

Include External Skills#

Use the bootspring_skill tool with: - action: "list" - includeExternal: true

Sync External Catalog#

Use the bootspring_skill tool with: - action: "sync" - manifestUrl: "https://skills.bootspring.com/manifest.json"

Response:

Loading code block...

Skill Categories#

Skills are organized by category:

CategoryDescriptionExamples
auth/Authenticationjwt, nextauth, oauth
database/Database operationsprisma, drizzle, mongodb
api/API designrest, graphql, trpc
testing/Testing patternsvitest, playwright, jest
ui/UI componentsshadcn, forms, tables
deploy/Deploymentvercel, docker, aws
security/Security patternscsrf, cors, headers
performance/Performancecaching, optimization

Skill Content Format#

Each skill contains:

Loading code block...

Error Handling#

Skill Not Found#

Loading code block...

External Skill Access#

Loading code block...

Best Practices#

Search First#

Use search to find relevant skills before browsing the full list.

Use Summary Mode#

For quick reference, use summary: true to get concise content.

Section Filtering#

Use sections parameter to get only the parts you need.

External Skills#

Enable includeExternal to access premium skill content.