queryCommands
Retrieve a filtered list of available commands for managing and manipulating notes in the SiYuan Note system, based on specified namespaces or command types.
Instructions
查询可用的命令列表
Input Schema
Name | Required | Description | Default |
---|---|---|---|
namespace | No | 命令命名空间过滤 | |
type | No | 命令名称过滤 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"namespace": {
"description": "命令命名空间过滤",
"type": "string"
},
"type": {
"description": "命令名称过滤",
"type": "string"
}
},
"type": "object"
}