Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 16 additions & 12 deletions lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,19 +97,23 @@ export function apply(ctx) {
name: 'find_dsh_plugins',
description: TOOL_DESCRIPTION,
parameters: {
query: {
type: 'string',
required: true,
description: 'User\'s need in natural language (Chinese or English), e.g. "给纯文本模型读图片的能力", "手机上查看会话进度", "Claude Code 风格的终端界面".',
},
limit: {
type: 'number',
description: 'Max results to return (default 5, max 10).',
},
installable_only: {
type: 'boolean',
description: 'Return only plugins that declare a dsh.bundle manifest and can be installed with dsh plugin add. Default false.',
type: 'object',
additionalProperties: false,
properties: {
query: {
type: 'string',
description: 'User\'s need in natural language (Chinese or English), e.g. "给纯文本模型读图片的能力", "手机上查看会话进度", "Claude Code 风格的终端界面".',
},
limit: {
type: 'number',
description: 'Max results to return (default 5, max 10).',
},
installable_only: {
type: 'boolean',
description: 'Return only plugins that declare a dsh.bundle manifest and can be installed with dsh plugin add. Default false.',
},
},
required: ['query'],
},
output: {
schema: {
Expand Down