Help
Display help information for the Qwen CLI tool to understand available commands and usage instructions.
Instructions
Display Qwen CLI help information
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/simple-tools.ts:36-49 (handler)The 'helpTool' UnifiedTool defining the 'Help' tool. Includes the execute handler logic that runs the Qwen CLI with --help flag using executeSimpleCommand.export const helpTool: UnifiedTool = { name: "Help", description: "Display Qwen CLI help information", category: "simple", zodSchema: z.object({}), execute: async () => { return executeSimpleCommand(CLI.COMMANDS.QWEN, ["--help"]); }, prompt: { name: "help", description: "Show Qwen CLI help and available options", arguments: [] } };
- src/tools/simple-tools.ts:40-40 (schema)Zod input schema for the Help tool (no parameters required).zodSchema: z.object({}),
- src/tools/index.ts:11-11 (registration)Registration of the helpTool in the tools registry.registerTool(helpTool);