Explore

Find agent skills by outcome

74,917 skills indexed with the new KISS metadata standard.

Showing 24 of 74,917Categories: Cursor-rules, Data, Communication, General, Coding & Debugging
General
PromptBeginner5 minmarkdown

- Use headers

lists

0
General
PromptBeginner5 minmarkdown

.min(0

Age cannot be negative)

0
General
PromptBeginner5 minmarkdown

.max(100

Name must not exceed 100 characters)

0
General
PromptBeginner5 minmarkdown

.max(150

Age cannot be greater than 150)

0
General
PromptBeginner5 minmarkdown

.min(1

Name is required)

0
General
PromptBeginner5 minmarkdown

const lines = [`# User Search Results: '${params.query}'`

"

0
General
PromptBeginner5 minmarkdown

has_more: boolean

// Whether more results are available

0
General
PromptBeginner5 minmarkdown

`Found ${total} users (showing ${users.length})`

"];

0
Communication
PromptBeginner5 minmarkdown

email: string

// Email address

0
General
PromptBeginner5 minmarkdown

team: string

// Team name (optional)

0
General
PromptBeginner5 minmarkdown

name: string

// Full name (e.g.

0
General
PromptBeginner5 minmarkdown

count: number

// Number of results in this response

0
General
PromptBeginner5 minmarkdown

offset: number

// Current pagination offset

0
General
PromptBeginner5 minmarkdown

id: string

// User ID (e.g.

0
General
PromptBeginner5 minmarkdown

total: number

// Total number of matches found

0
General
PromptBeginner5 minmarkdown

- limit (number): Maximum results to return

between 1-100 (default: 20)

0
General
PromptBeginner5 minmarkdown

.min(2

Query must be at least 2 characters)

0
Communication
PromptBeginner5 minmarkdown

description: `Search for users in the Example system by name

email

0
General
PromptBeginner5 minmarkdown

.max(200

Query must not exceed 200 characters)

0
General
PromptBeginner5 minmarkdown

- Explicitly provide `title`

`description`

0
General
PromptBeginner5 minmarkdown

Use snake_case for tool names (e.g.

search_users

0
Coding & Debugging
PromptBeginner5 minmarkdown

│ └── constants.ts # Shared constants (API_URL

CHARACTER_LIMIT

0
General
PromptBeginner5 minmarkdown

- **Examples**: `github-mcp-server`

`jira-mcp-server`

0
Coding & Debugging
PromptBeginner5 minmarkdown

- **DO NOT use**: Old deprecated APIs such as `server.tool()`

`server.setRequestHandler(ListToolsRequestSchema

0