prompt-language-shell 0.7.2 → 0.7.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,36 +0,0 @@
1
- export const planTool = {
2
- name: 'plan',
3
- description: 'Plan and structure tasks from a user command. Break down the request into clear, actionable steps with type information and parameters. When refining previously selected tasks, the input will be formatted as lowercase actions with types in brackets, e.g., "install the python development environment (type: execute), explain how virtual environments work (type: answer)".',
4
- input_schema: {
5
- type: 'object',
6
- properties: {
7
- message: {
8
- type: 'string',
9
- description: 'Introductory reply to display before the task list. Must be a single sentence, maximum 64 characters (including the colon at the end). Vary this naturally - try to use a different phrase each time.',
10
- },
11
- tasks: {
12
- type: 'array',
13
- description: 'Array of planned tasks to execute',
14
- items: {
15
- type: 'object',
16
- properties: {
17
- action: {
18
- type: 'string',
19
- description: 'Clear description of what needs to be done in this task',
20
- },
21
- type: {
22
- type: 'string',
23
- description: 'Type of task: "config" (settings), "plan" (planning), "execute" (shell/programs/finding files), "answer" (questions, NOT for capability queries), "introspect" (list capabilities/skills), "report" (summaries), "define" (skill-based disambiguation), "ignore" (too vague)',
24
- },
25
- params: {
26
- type: 'object',
27
- description: 'Task-specific parameters (e.g., command, path, url, etc.)',
28
- },
29
- },
30
- required: ['action'],
31
- },
32
- },
33
- },
34
- required: ['message', 'tasks'],
35
- },
36
- };