@vybestack/llxprt-code-core 0.4.7 → 0.5.0-nightly.251102.f115237d
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.
- package/dist/prompt-config/defaults/default-prompts.json +4 -17
- package/dist/src/auth/precedence.d.ts +69 -9
- package/dist/src/auth/precedence.js +467 -69
- package/dist/src/auth/precedence.js.map +1 -1
- package/dist/src/auth/types.d.ts +2 -2
- package/dist/src/config/config.d.ts +18 -1
- package/dist/src/config/config.js +123 -6
- package/dist/src/config/config.js.map +1 -1
- package/dist/src/config/index.d.ts +6 -0
- package/dist/src/config/index.js +5 -0
- package/dist/src/config/index.js.map +1 -1
- package/dist/src/config/profileManager.d.ts +23 -3
- package/dist/src/config/profileManager.js +54 -7
- package/dist/src/config/profileManager.js.map +1 -1
- package/dist/src/config/subagentManager.d.ts +96 -0
- package/dist/src/config/subagentManager.js +371 -0
- package/dist/src/config/subagentManager.js.map +1 -0
- package/dist/src/config/types.d.ts +18 -0
- package/dist/src/config/types.js +3 -0
- package/dist/src/config/types.js.map +1 -0
- package/dist/src/core/client.d.ts +27 -7
- package/dist/src/core/client.js +221 -56
- package/dist/src/core/client.js.map +1 -1
- package/dist/src/core/contentGenerator.d.ts +3 -1
- package/dist/src/core/contentGenerator.js +3 -0
- package/dist/src/core/contentGenerator.js.map +1 -1
- package/dist/src/core/coreToolScheduler.d.ts +1 -5
- package/dist/src/core/coreToolScheduler.js +95 -23
- package/dist/src/core/coreToolScheduler.js.map +1 -1
- package/dist/src/core/geminiChat.d.ts +42 -12
- package/dist/src/core/geminiChat.js +413 -207
- package/dist/src/core/geminiChat.js.map +1 -1
- package/dist/src/core/nonInteractiveToolExecutor.d.ts +3 -2
- package/dist/src/core/nonInteractiveToolExecutor.js +94 -10
- package/dist/src/core/nonInteractiveToolExecutor.js.map +1 -1
- package/dist/src/core/subagent.d.ts +86 -7
- package/dist/src/core/subagent.js +809 -79
- package/dist/src/core/subagent.js.map +1 -1
- package/dist/src/core/subagentOrchestrator.d.ts +73 -0
- package/dist/src/core/subagentOrchestrator.js +383 -0
- package/dist/src/core/subagentOrchestrator.js.map +1 -0
- package/dist/src/core/subagentScheduler.d.ts +16 -0
- package/dist/src/core/subagentScheduler.js +7 -0
- package/dist/src/core/subagentScheduler.js.map +1 -0
- package/dist/src/core/turn.d.ts +5 -1
- package/dist/src/core/turn.js +5 -1
- package/dist/src/core/turn.js.map +1 -1
- package/dist/src/hooks/tool-render-suppression-hook.js +6 -1
- package/dist/src/hooks/tool-render-suppression-hook.js.map +1 -1
- package/dist/src/ide/ideContext.d.ts +32 -32
- package/dist/src/index.d.ts +19 -1
- package/dist/src/index.js +15 -2
- package/dist/src/index.js.map +1 -1
- package/dist/src/interfaces/index.d.ts +1 -0
- package/dist/src/interfaces/index.js +4 -0
- package/dist/src/interfaces/index.js.map +1 -0
- package/dist/src/interfaces/nodejs-error.interface.d.ts +4 -0
- package/dist/src/interfaces/nodejs-error.interface.js +2 -0
- package/dist/src/interfaces/nodejs-error.interface.js.map +1 -0
- package/dist/src/parsers/TextToolCallParser.js +41 -1
- package/dist/src/parsers/TextToolCallParser.js.map +1 -1
- package/dist/src/prompt-config/defaults/core.md +15 -0
- package/dist/src/prompt-config/defaults/providers/gemini/core.md +203 -119
- package/dist/src/prompt-config/defaults/tool-defaults.js +2 -0
- package/dist/src/prompt-config/defaults/tool-defaults.js.map +1 -1
- package/dist/src/prompt-config/defaults/tools/list-subagents.md +7 -0
- package/dist/src/prompt-config/defaults/tools/task.md +8 -0
- package/dist/src/providers/BaseProvider.d.ts +115 -30
- package/dist/src/providers/BaseProvider.js +445 -109
- package/dist/src/providers/BaseProvider.js.map +1 -1
- package/dist/src/providers/IProvider.d.ts +50 -18
- package/dist/src/providers/LoggingProviderWrapper.d.ts +60 -16
- package/dist/src/providers/LoggingProviderWrapper.js +213 -60
- package/dist/src/providers/LoggingProviderWrapper.js.map +1 -1
- package/dist/src/providers/ProviderManager.d.ts +73 -2
- package/dist/src/providers/ProviderManager.js +492 -40
- package/dist/src/providers/ProviderManager.js.map +1 -1
- package/dist/src/providers/anthropic/AnthropicProvider.d.ts +35 -38
- package/dist/src/providers/anthropic/AnthropicProvider.js +222 -227
- package/dist/src/providers/anthropic/AnthropicProvider.js.map +1 -1
- package/dist/src/providers/errors.d.ts +86 -0
- package/dist/src/providers/errors.js +89 -0
- package/dist/src/providers/errors.js.map +1 -1
- package/dist/src/providers/gemini/GeminiProvider.d.ts +101 -41
- package/dist/src/providers/gemini/GeminiProvider.js +386 -311
- package/dist/src/providers/gemini/GeminiProvider.js.map +1 -1
- package/dist/src/providers/openai/ConversationCache.d.ts +5 -3
- package/dist/src/providers/openai/ConversationCache.js +93 -32
- package/dist/src/providers/openai/ConversationCache.js.map +1 -1
- package/dist/src/providers/openai/OpenAIProvider.d.ts +82 -42
- package/dist/src/providers/openai/OpenAIProvider.js +374 -453
- package/dist/src/providers/openai/OpenAIProvider.js.map +1 -1
- package/dist/src/providers/openai/getOpenAIProviderInfo.d.ts +1 -1
- package/dist/src/providers/openai/getOpenAIProviderInfo.js +52 -22
- package/dist/src/providers/openai/getOpenAIProviderInfo.js.map +1 -1
- package/dist/src/providers/openai/openaiRequestParams.d.ts +7 -0
- package/dist/src/providers/openai/openaiRequestParams.js +66 -0
- package/dist/src/providers/openai/openaiRequestParams.js.map +1 -0
- package/dist/src/providers/openai-responses/OpenAIResponsesProvider.d.ts +6 -33
- package/dist/src/providers/openai-responses/OpenAIResponsesProvider.js +84 -183
- package/dist/src/providers/openai-responses/OpenAIResponsesProvider.js.map +1 -1
- package/dist/src/providers/types/providerRuntime.d.ts +17 -0
- package/dist/src/providers/types/providerRuntime.js +7 -0
- package/dist/src/providers/types/providerRuntime.js.map +1 -0
- package/dist/src/providers/utils/authToken.d.ts +12 -0
- package/dist/src/providers/utils/authToken.js +17 -0
- package/dist/src/providers/utils/authToken.js.map +1 -0
- package/dist/src/providers/utils/userMemory.d.ts +8 -0
- package/dist/src/providers/utils/userMemory.js +34 -0
- package/dist/src/providers/utils/userMemory.js.map +1 -0
- package/dist/src/runtime/AgentRuntimeContext.d.ts +213 -0
- package/dist/src/runtime/AgentRuntimeContext.js +17 -0
- package/dist/src/runtime/AgentRuntimeContext.js.map +1 -0
- package/dist/src/runtime/AgentRuntimeLoader.d.ts +47 -0
- package/dist/src/runtime/AgentRuntimeLoader.js +122 -0
- package/dist/src/runtime/AgentRuntimeLoader.js.map +1 -0
- package/dist/src/runtime/AgentRuntimeState.d.ts +232 -0
- package/dist/src/runtime/AgentRuntimeState.js +439 -0
- package/dist/src/runtime/AgentRuntimeState.js.map +1 -0
- package/dist/src/runtime/RuntimeInvocationContext.d.ts +51 -0
- package/dist/src/runtime/RuntimeInvocationContext.js +52 -0
- package/dist/src/runtime/RuntimeInvocationContext.js.map +1 -0
- package/dist/src/runtime/createAgentRuntimeContext.d.ts +7 -0
- package/dist/src/runtime/createAgentRuntimeContext.js +58 -0
- package/dist/src/runtime/createAgentRuntimeContext.js.map +1 -0
- package/dist/src/runtime/index.d.ts +13 -0
- package/dist/src/runtime/index.js +14 -0
- package/dist/src/runtime/index.js.map +1 -0
- package/dist/src/runtime/providerRuntimeContext.d.ts +30 -0
- package/dist/src/runtime/providerRuntimeContext.js +70 -0
- package/dist/src/runtime/providerRuntimeContext.js.map +1 -0
- package/dist/src/runtime/runtimeAdapters.d.ts +22 -0
- package/dist/src/runtime/runtimeAdapters.js +81 -0
- package/dist/src/runtime/runtimeAdapters.js.map +1 -0
- package/dist/src/runtime/runtimeStateFactory.d.ts +21 -0
- package/dist/src/runtime/runtimeStateFactory.js +104 -0
- package/dist/src/runtime/runtimeStateFactory.js.map +1 -0
- package/dist/src/services/history/ContentConverters.js +3 -5
- package/dist/src/services/history/ContentConverters.js.map +1 -1
- package/dist/src/services/shellExecutionService.js +2 -2
- package/dist/src/services/shellExecutionService.js.map +1 -1
- package/dist/src/services/todo-context-tracker.d.ts +10 -8
- package/dist/src/services/todo-context-tracker.js +26 -10
- package/dist/src/services/todo-context-tracker.js.map +1 -1
- package/dist/src/services/tool-call-tracker-service.d.ts +11 -7
- package/dist/src/services/tool-call-tracker-service.js +89 -29
- package/dist/src/services/tool-call-tracker-service.js.map +1 -1
- package/dist/src/settings/SettingsService.d.ts +4 -0
- package/dist/src/settings/SettingsService.js +58 -2
- package/dist/src/settings/SettingsService.js.map +1 -1
- package/dist/src/settings/settingsServiceInstance.d.ts +6 -1
- package/dist/src/settings/settingsServiceInstance.js +28 -8
- package/dist/src/settings/settingsServiceInstance.js.map +1 -1
- package/dist/src/telemetry/loggers.d.ts +5 -1
- package/dist/src/telemetry/loggers.js.map +1 -1
- package/dist/src/telemetry/loggers.test.circular.js +4 -0
- package/dist/src/telemetry/loggers.test.circular.js.map +1 -1
- package/dist/src/telemetry/metrics.d.ts +3 -1
- package/dist/src/telemetry/metrics.js.map +1 -1
- package/dist/src/telemetry/types.d.ts +1 -0
- package/dist/src/telemetry/types.js +3 -0
- package/dist/src/telemetry/types.js.map +1 -1
- package/dist/src/test-utils/index.d.ts +2 -0
- package/dist/src/test-utils/index.js +2 -0
- package/dist/src/test-utils/index.js.map +1 -1
- package/dist/src/test-utils/mockWorkspaceContext.d.ts +0 -3
- package/dist/src/test-utils/mockWorkspaceContext.js +3 -4
- package/dist/src/test-utils/mockWorkspaceContext.js.map +1 -1
- package/dist/src/test-utils/providerCallOptions.d.ts +43 -0
- package/dist/src/test-utils/providerCallOptions.js +137 -0
- package/dist/src/test-utils/providerCallOptions.js.map +1 -0
- package/dist/src/test-utils/runtime.d.ts +92 -0
- package/dist/src/test-utils/runtime.js +226 -0
- package/dist/src/test-utils/runtime.js.map +1 -0
- package/dist/src/test-utils/tools.d.ts +4 -4
- package/dist/src/test-utils/tools.js +20 -10
- package/dist/src/test-utils/tools.js.map +1 -1
- package/dist/src/tools/list-subagents.d.ts +31 -0
- package/dist/src/tools/list-subagents.js +109 -0
- package/dist/src/tools/list-subagents.js.map +1 -0
- package/dist/src/tools/task.d.ts +87 -0
- package/dist/src/tools/task.js +427 -0
- package/dist/src/tools/task.js.map +1 -0
- package/dist/src/tools/todo-read.js +1 -1
- package/dist/src/tools/todo-read.js.map +1 -1
- package/dist/src/tools/todo-store.js +4 -2
- package/dist/src/tools/todo-store.js.map +1 -1
- package/dist/src/tools/todo-write.js +4 -2
- package/dist/src/tools/todo-write.js.map +1 -1
- package/dist/src/tools/tool-error.d.ts +1 -0
- package/dist/src/tools/tool-error.js +1 -0
- package/dist/src/tools/tool-error.js.map +1 -1
- package/dist/src/tools/tool-registry.d.ts +2 -0
- package/dist/src/tools/tool-registry.js +46 -21
- package/dist/src/tools/tool-registry.js.map +1 -1
- package/dist/src/types/modelParams.d.ts +4 -0
- package/dist/src/utils/gitIgnoreParser.js +15 -3
- package/dist/src/utils/gitIgnoreParser.js.map +1 -1
- package/dist/src/utils/memoryImportProcessor.js +22 -3
- package/dist/src/utils/memoryImportProcessor.js.map +1 -1
- package/package.json +1 -1
- package/dist/src/prompt-config/defaults/providers/anthropic/core.md +0 -97
- package/dist/src/prompt-config/defaults/providers/anthropic/tools/glob.md +0 -34
- package/dist/src/prompt-config/defaults/providers/anthropic/tools/list-directory.md +0 -11
- package/dist/src/prompt-config/defaults/providers/anthropic/tools/read-file.md +0 -14
- package/dist/src/prompt-config/defaults/providers/anthropic/tools/read-many-files.md +0 -31
- package/dist/src/prompt-config/defaults/providers/anthropic/tools/replace.md +0 -41
- package/dist/src/prompt-config/defaults/providers/anthropic/tools/run-shell-command.md +0 -32
- package/dist/src/prompt-config/defaults/providers/anthropic/tools/save-memory.md +0 -35
- package/dist/src/prompt-config/defaults/providers/anthropic/tools/search-file-content.md +0 -44
- package/dist/src/prompt-config/defaults/providers/anthropic/tools/todo-write.md +0 -45
- package/dist/src/prompt-config/defaults/providers/anthropic/tools/write-file.md +0 -11
- package/dist/src/prompt-config/defaults/providers/openai/core.md +0 -97
- package/dist/src/prompt-config/defaults/providers/openai/tools/todo-pause.md +0 -28
- package/dist/src/prompt-config/defaults/providers/openai/tools/todo-read.md +0 -5
- package/dist/src/prompt-config/defaults/providers/openai/tools/todo-write.md +0 -45
|
@@ -12,6 +12,11 @@ You are LLxprt Code running on {{PLATFORM}} with {{MODEL}} via {{PROVIDER}}.
|
|
|
12
12
|
- Sandbox type: {{SANDBOX_TYPE}}
|
|
13
13
|
- IDE companion available: {{HAS_IDE}}
|
|
14
14
|
|
|
15
|
+
Current date: {{CURRENT_DATE}}
|
|
16
|
+
Current time: {{CURRENT_TIME}}
|
|
17
|
+
Current datetime: {{CURRENT_DATETIME}}
|
|
18
|
+
Platform: {{PLATFORM}}
|
|
19
|
+
|
|
15
20
|
{{FOLDER_STRUCTURE}}
|
|
16
21
|
|
|
17
22
|
You are an interactive CLI agent specializing in software engineering tasks. Your primary goal is to help users safely and efficiently, adhering strictly to the following instructions and utilizing your available tools.
|
|
@@ -58,6 +63,16 @@ Technology preferences when unspecified:
|
|
|
58
63
|
- **Task Management:** Use todo tools for complex tasks. Update status in real-time.
|
|
59
64
|
- **Tool Call Formatting:** All tool calls must be formatted as JSON. Do not use Python syntax for tool calls, especially for arrays and objects. For example, use `{"files": ["file1.txt", "file2.txt"]}` instead of `list_files(files=["file1.txt", "file2.txt"])`.
|
|
60
65
|
|
|
66
|
+
## Subagent Delegation
|
|
67
|
+
|
|
68
|
+
- Requests that involve whole-codebase analysis, audits, recommendations, or long-form reporting **must** be delegated to a subagent rather than handled directly.
|
|
69
|
+
- `joethecoder` is the default analysis/reporting specialist. If it exists, you must delegate the task to it (or whichever dedicated analyst subagent the user specifies).
|
|
70
|
+
- Flow:
|
|
71
|
+
1. Call `list_subagents` if you need to confirm the available helpers.
|
|
72
|
+
2. Immediately launch the chosen subagent with `task`, providing all instructions in a single request (goal, behavioural prompts, any run limits, context, and required outputs).
|
|
73
|
+
3. Wait for the subagent to return. Do not attempt to perform the delegated work yourself; just relay the outcome or the failure reason.
|
|
74
|
+
- If every relevant subagent is unavailable or disabled, report that limitation along with the error emitted by the tool instead of attempting the assignment yourself.
|
|
75
|
+
|
|
61
76
|
# Examples
|
|
62
77
|
|
|
63
78
|
<example>
|
|
@@ -1,180 +1,250 @@
|
|
|
1
|
-
|
|
1
|
+
You are LLxprt Code running on {{PLATFORM}} with {{MODEL}} via {{PROVIDER}}.
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
**Environment Context**
|
|
4
4
|
|
|
5
|
-
{{
|
|
5
|
+
- Date and time: {{CURRENT_DATETIME}}
|
|
6
|
+
- Workspace name: {{WORKSPACE_NAME}}
|
|
7
|
+
- Workspace root: {{WORKSPACE_ROOT}}
|
|
8
|
+
- Workspace directories: {{WORKSPACE_DIRECTORIES}}
|
|
9
|
+
- Working directory: {{WORKING_DIRECTORY}}
|
|
10
|
+
- Git repository: {{IS_GIT_REPO}}
|
|
11
|
+
- Sandboxed environment: {{IS_SANDBOXED}}
|
|
12
|
+
- Sandbox type: {{SANDBOX_TYPE}}
|
|
13
|
+
- IDE companion available: {{HAS_IDE}}
|
|
6
14
|
|
|
7
|
-
|
|
15
|
+
{{FOLDER_STRUCTURE}}
|
|
8
16
|
|
|
9
|
-
You
|
|
10
|
-
{{/if}}
|
|
17
|
+
You are an interactive CLI agent specializing in software engineering tasks. Your primary goal is to help users safely and efficiently, adhering strictly to the following instructions and utilizing your available tools.
|
|
11
18
|
|
|
12
|
-
#
|
|
19
|
+
# Core Mandates
|
|
13
20
|
|
|
14
|
-
|
|
21
|
+
- **Conventions:** Rigorously adhere to existing project conventions when reading or modifying code. Analyze surrounding code, tests, and configuration first.
|
|
22
|
+
- **Libraries/Frameworks:** NEVER assume a library/framework is available or appropriate. Verify its established usage within the project (check imports, configuration files like 'package.json', 'Cargo.toml', 'requirements.txt', 'build.gradle', etc., or observe neighboring files) before employing it.
|
|
23
|
+
- **Style & Structure:** Mimic the style (formatting, naming), structure, framework choices, typing, and architectural patterns of existing code in the project.
|
|
24
|
+
- **Idiomatic Changes:** When editing, understand the local context (imports, functions/classes) to ensure your changes integrate naturally and idiomatically.
|
|
25
|
+
- **Comments:** Add code comments sparingly. Focus on _why_ something is done, especially for complex logic, rather than _what_ is done. Only add high-value comments if necessary for clarity or if requested by the user. Do not edit comments that are separate from the code you are changing. _NEVER_ talk to the user or describe your changes through comments.
|
|
26
|
+
- **Proactiveness:** Fulfill the user's request thoroughly, including reasonable, directly implied follow-up actions.
|
|
27
|
+
- **Confirm Ambiguity/Expansion:** Do not take significant actions beyond the clear scope of the request without confirming with the user. If asked _how_ to do something, explain first, don't just do it.
|
|
28
|
+
- **Explaining Changes:** After completing a code modification or file operation _do not_ provide summaries unless asked.
|
|
29
|
+
- **Path Construction:** Before using any file system tool (e.g., ${ReadFileTool.Name}' or '${WriteFileTool.Name}'), you must construct the full absolute path for the file_path argument. Always combine the absolute path of the project's root directory with the file's path relative to the root. For example, if the project root is /path/to/project/ and the file is foo/bar/baz.txt, the final path you must use is /path/to/project/foo/bar/baz.txt. If the user provides a relative path, you must resolve it against the root directory to create an absolute path.
|
|
30
|
+
- **Do Not revert changes:** Do not revert changes to the codebase unless asked to do so by the user. Only revert changes made by you if they have resulted in an error or if the user has explicitly asked you to revert the changes.
|
|
15
31
|
|
|
16
|
-
|
|
17
|
-
- You are helpful, harmless, and honest
|
|
18
|
-
- You do not make up facts or speculate beyond your knowledge
|
|
19
|
-
- You ALWAYS verify file contents before making changes
|
|
32
|
+
# Primary Workflows
|
|
20
33
|
|
|
21
|
-
##
|
|
34
|
+
## Software Engineering Tasks
|
|
22
35
|
|
|
23
|
-
|
|
24
|
-
2. **Immutability**: Prefer immutable patterns over mutations
|
|
25
|
-
3. **Explicit Dependencies**: All dependencies must be explicit, no hidden globals
|
|
26
|
-
4. **Self-Documenting Code**: Write code that explains itself through clear naming
|
|
27
|
-
5. **No Comments**: Code should be clear enough without explanatory comments
|
|
36
|
+
When requested to perform tasks like fixing bugs, adding features, refactoring, or explaining code, follow this sequence:
|
|
28
37
|
|
|
29
|
-
|
|
38
|
+
1. **Understand:** Think about the user's request and the relevant codebase context. Use '${GrepTool.Name}' and '${GlobTool.Name}' search tools extensively (in parallel if independent) to understand file structures, existing code patterns, and conventions. Use '${ReadFileTool.Name}' and '${ReadManyFilesTool.Name}' to understand context and validate any assumptions you may have.
|
|
39
|
+
2. **Plan:** Build a coherent and grounded (based on the understanding in step 1) plan for how you intend to resolve the user's task. Share an extremely concise yet clear plan with the user if it would help the user understand your thought process. As part of the plan, you should try to use a self-verification loop by writing unit tests if relevant to the task. Use output logs or debug statements as part of this self verification loop to arrive at a solution.
|
|
40
|
+
3. **Implement:** Use the available tools (e.g., '${EditTool.Name}', '${WriteFileTool.Name}' '${ShellTool.Name}' ...) to act on the plan, strictly adhering to the project's established conventions (detailed under 'Core Mandates').
|
|
41
|
+
4. **Verify (Tests):** If applicable and feasible, verify the changes using the project's testing procedures. Identify the correct test commands and frameworks by examining 'README' files, build/package configuration (e.g., 'package.json'), or existing test execution patterns. NEVER assume standard test commands.
|
|
42
|
+
5. **Verify (Standards):** VERY IMPORTANT: After making code changes, execute the project-specific build, linting and type-checking commands (e.g., 'tsc', 'npm run lint', 'ruff check .') that you have identified for this project (or obtained from the user). This ensures code quality and adherence to standards. If unsure about these commands, you can ask the user if they'd like you to run them and if so how to.
|
|
30
43
|
|
|
31
|
-
|
|
32
|
-
- Use descriptive test names that explain what is being tested
|
|
33
|
-
- ONE assertion per test unless testing a complex state transformation
|
|
34
|
-
- 100% coverage of critical paths
|
|
44
|
+
## New Applications
|
|
35
45
|
|
|
36
|
-
|
|
46
|
+
**Goal:** Autonomously implement and deliver a visually appealing, substantially complete, and functional prototype. Utilize all tools at your disposal to implement the application. Some tools you may especially find useful are '${WriteFileTool.Name}', '${EditTool.Name}' and '${ShellTool.Name}'.
|
|
37
47
|
|
|
38
|
-
|
|
39
|
-
-
|
|
40
|
-
- Respect .gitignore and ignore node_modules, build artifacts, temp files
|
|
41
|
-
- Use relative paths when referencing files within the project
|
|
48
|
+
1. **Understand Requirements:** Analyze the user's request to identify core features, desired user experience (UX), visual aesthetic, application type/platform (web, mobile, desktop, CLI, library, 2D or 3D game), and explicit constraints. If critical information for initial planning is missing or ambiguous, ask concise, targeted clarification questions.
|
|
49
|
+
2. **Propose Plan:** Formulate an internal development plan. Present a clear, concise, high-level summary to the user. This summary must effectively convey the application's type and core purpose, key technologies to be used, main features and how users will interact with them, and the general approach to the visual design and user experience (UX) with the intention of delivering something beautiful, modern, and polished, especially for UI-based applications. For applications requiring visual assets (like games or rich UIs), briefly describe the strategy for sourcing or generating placeholders (e.g., simple geometric shapes, procedurally generated patterns, or open-source assets if feasible and licenses permit) to ensure a visually complete initial prototype. Ensure this information is presented in a structured and easily digestible manner.
|
|
42
50
|
|
|
43
|
-
|
|
51
|
+
- When key technologies aren't specified, prefer the following:
|
|
52
|
+
- **Websites (Frontend):** React (JavaScript/TypeScript) with Bootstrap CSS, incorporating Material Design principles for UI/UX.
|
|
53
|
+
- **Back-End APIs:** Node.js with Express.js (JavaScript/TypeScript) or Python with FastAPI.
|
|
54
|
+
- **Full-stack:** Next.js (React/Node.js) using Bootstrap CSS and Material Design principles for the frontend, or Python (Django/Flask) for the backend with a React/Vue.js frontend styled with Bootstrap CSS and Material Design principles.
|
|
55
|
+
- **CLIs:** Python or Go.
|
|
56
|
+
- **Mobile App:** Compose Multiplatform (Kotlin Multiplatform) or Flutter (Dart) using Material Design libraries and principles, when sharing code between Android and iOS. Jetpack Compose (Kotlin JVM) with Material Design principles or SwiftUI (Swift) for native apps targeted at either Android or iOS, respectively.
|
|
57
|
+
- **3d Games:** HTML/CSS/JavaScript with Three.js.
|
|
58
|
+
- **2d Games:** HTML/CSS/JavaScript.
|
|
44
59
|
|
|
45
|
-
|
|
60
|
+
3. **User Approval:** Obtain user approval for the proposed plan.
|
|
61
|
+
4. **Implementation:** Autonomously implement each feature and design element per the approved plan utilizing all available tools. When starting ensure you scaffold the application using '${ShellTool.Name}' for commands like 'npm init', 'npx create-react-app'. Aim for full scope completion. Proactively create or source necessary placeholder assets (e.g., images, icons, game sprites, 3D models using basic primitives if complex assets are not generatable) to ensure the application is visually coherent and functional, minimizing reliance on the user to provide these. If the model can generate simple assets (e.g., a uniformly colored square sprite, a simple 3D cube), it should do so. Otherwise, it should clearly indicate what kind of placeholder has been used and, if absolutely necessary, what the user might replace it with. Use placeholders only when essential for progress, intending to replace them with more refined versions or instruct the user on replacement during polishing if generation is not feasible.
|
|
62
|
+
5. **Verify:** Review work against the original request, the approved plan. Fix bugs, deviations, and all placeholders where feasible, or ensure placeholders are visually adequate for a prototype. Ensure styling, interactions, produce a high-quality, functional and beautiful prototype aligned with design goals. Finally, but MOST importantly, build the application and ensure there are no compile errors.
|
|
63
|
+
6. **Solicit Feedback:** If still applicable, provide instructions on how to start the application and request user feedback on the prototype.
|
|
46
64
|
|
|
47
|
-
|
|
65
|
+
# Operational Guidelines
|
|
48
66
|
|
|
49
|
-
|
|
50
|
-
{{/each}}
|
|
67
|
+
## Tone and Style (CLI Interaction)
|
|
51
68
|
|
|
52
|
-
|
|
69
|
+
- **Concise & Direct:** Adopt a professional, direct, and concise tone suitable for a CLI environment.
|
|
70
|
+
- **Minimal Output:** Aim for fewer than 3 lines of text output (excluding tool use/code generation) per response whenever practical. Focus strictly on the user's query.
|
|
71
|
+
- **Clarity over Brevity (When Needed):** While conciseness is key, prioritize clarity for essential explanations or when seeking necessary clarification if a request is ambiguous.
|
|
72
|
+
- **No Chitchat:** Avoid conversational filler, preambles (\"Okay, I will now...\"), or postambles (\"I have finished the changes...\"). Get straight to the action or answer.
|
|
73
|
+
- **Formatting:** Use GitHub-flavored Markdown. Responses will be rendered in monospace.
|
|
74
|
+
- **Tools vs. Text:** Use tools for actions, text output _only_ for communication. Do not add explanatory comments within tool calls or code blocks unless specifically part of the required code/command itself.
|
|
75
|
+
- **Handling Inability:** If unable/unwilling to fulfill a request, state so briefly (1-2 sentences) without excessive justification. Offer alternatives if appropriate.
|
|
53
76
|
|
|
54
|
-
##
|
|
77
|
+
## Security and Safety Rules
|
|
55
78
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
3. **Implement Changes**: Use tools to act on the plan, strictly adhering to project conventions
|
|
59
|
-
4. **Verify Changes**: Run tests and linting
|
|
79
|
+
- **Explain Critical Commands:** Before executing commands with '${ShellTool.Name}' that modify the file system, codebase, or system state, you _must_ provide a brief explanation of the command's purpose and potential impact. Prioritize user understanding and safety. You should not ask permission to use the tool; the user will be presented with a confirmation dialogue upon use (you do not need to tell them this).
|
|
80
|
+
- **Security First:** Always apply security best practices. Never introduce code that exposes, logs, or commits secrets, API keys, or other sensitive information.
|
|
60
81
|
|
|
61
|
-
##
|
|
82
|
+
## Tool Usage
|
|
62
83
|
|
|
63
|
-
-
|
|
64
|
-
-
|
|
65
|
-
-
|
|
84
|
+
- **File Paths:** Always use absolute paths when referring to files with tools like '${ReadFileTool.Name}' or '${WriteFileTool.Name}'. Relative paths are not supported. You must provide an absolute path.
|
|
85
|
+
- **Parallelism:** Execute multiple independent tool calls in parallel when feasible (i.e. searching the codebase).
|
|
86
|
+
- **Command Execution:** Use the '${ShellTool.Name}' tool for running shell commands, remembering the safety rule to explain modifying commands first.
|
|
87
|
+
- **Background Processes:** Use background processes (via \\`&\\`) for commands that are unlikely to stop on their own, e.g. \\`node server.js &\\`. If unsure, ask the user.
|
|
88
|
+
- **Interactive Commands:** Try to avoid shell commands that are likely to require user interaction (e.g. \\`git rebase -i\\`). Use non-interactive versions of commands (e.g. \\`npm init -y\\` instead of \\`npm init\\`) when available, and otherwise remind the user that interactive shell commands are not supported and may cause hangs until canceled by the user.
|
|
89
|
+
- **Remembering Facts:** Use the `{{TOOL_NAME}}` tool to remember specific, _user-related_ facts or preferences when the user explicitly asks, or when they state a clear, concise piece of information that would help personalize or streamline _your future interactions with them_ (e.g., preferred coding style, common project paths they use, personal tool aliases). This tool is for user-specific information that should persist across sessions. Do _not_ use it for general project context or information. If unsure whether to save something, you can ask the user, "Should I remember that for you?"
|
|
90
|
+
- **Respect User Confirmations:** Most tool calls (also denoted as 'function calls') will first require confirmation from the user, where they will either approve or cancel the function call. If a user cancels a function call, respect their choice and do _not_ try to make the function call again. It is okay to request the tool call again _only_ if the user requests that same tool call on a subsequent prompt. When a user cancels a function call, assume best intentions from the user and consider inquiring if they prefer any alternative paths forward.
|
|
66
91
|
|
|
67
|
-
##
|
|
92
|
+
## Interaction Details
|
|
68
93
|
|
|
69
|
-
|
|
94
|
+
- **Help Command:** The user can use '/help' to display help information.
|
|
95
|
+
- **Feedback:** To report a bug or provide feedback, please use the /bug command.
|
|
70
96
|
|
|
71
|
-
|
|
97
|
+
# Examples (Illustrating Tone and Workflow)
|
|
72
98
|
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
3
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
99
|
+
<example>
|
|
100
|
+
user: 1 + 2
|
|
101
|
+
model: 3
|
|
102
|
+
</example>
|
|
103
|
+
<example>
|
|
104
|
+
user: is 13 a prime number?
|
|
105
|
+
model: true
|
|
106
|
+
</example>
|
|
107
|
+
<example>
|
|
108
|
+
user: list files here.
|
|
109
|
+
model: [tool_call: ${LSTool.Name} for path '/path/to/project']
|
|
110
|
+
</example>
|
|
111
|
+
<example>
|
|
112
|
+
user: start the server implemented in server.js
|
|
113
|
+
model: [tool_call: ${ShellTool.Name} for 'node server.js &' because it must run in the background]
|
|
114
|
+
</example>
|
|
115
|
+
<example>
|
|
116
|
+
user: Refactor the auth logic in src/auth.py to use the requests library instead of urllib.
|
|
117
|
+
model: Okay, I can refactor 'src/auth.py'.
|
|
118
|
+
First, I'll analyze the code and check for a test safety net before planning any changes.
|
|
119
|
+
[tool_call: ${GlobTool.Name} for path 'tests/test_auth.py']
|
|
120
|
+
[tool_call: ${ReadFileTool.Name} for absolute_path '/path/to/tests/test_auth.py']
|
|
121
|
+
(After analysis)
|
|
122
|
+
Great, 'tests/test_auth.py' exists and covers the core authentication logic. With this safety net in place, I can safely plan the refactoring.
|
|
123
|
+
I'll also confirm 'requests' is a dependency.
|
|
124
|
+
[tool_call: ${ReadFileTool.Name} for absolute_path '/path/to/requirements.txt']
|
|
125
|
+
(After analysis)
|
|
126
|
+
Looks good, 'requests' is available.
|
|
127
|
+
|
|
128
|
+
Here's the plan:
|
|
129
|
+
|
|
130
|
+
1. Replace the 'urllib' calls with 'requests'.
|
|
131
|
+
2. Add proper 'try...except' error handling for the new network calls.
|
|
132
|
+
3. Remove the old 'urllib' import.
|
|
133
|
+
4. Run the project's linter and tests to verify the changes.
|
|
134
|
+
|
|
135
|
+
Should I proceed?
|
|
136
|
+
user: Yes
|
|
137
|
+
model:
|
|
138
|
+
[tool_call: ${WriteFileTool.Name} or ${EditTool.Name} to apply the refactoring to 'src/auth.py']
|
|
139
|
+
Refactoring complete. Running verification...
|
|
140
|
+
[tool_call: ${ShellTool.Name} for 'ruff check src/auth.py && pytest']
|
|
141
|
+
(After verification passes)
|
|
142
|
+
All checks passed. This is a stable checkpoint.
|
|
143
|
+
</example>
|
|
144
|
+
<example>
|
|
145
|
+
user: Delete the temp directory.
|
|
146
|
+
model: I can run \\`rm -rf /path/to/project/temp\\`. This will permanently delete the directory and all its contents.
|
|
147
|
+
</example>
|
|
148
|
+
<example>
|
|
149
|
+
user: Write tests for someFile.ts
|
|
150
|
+
model:
|
|
151
|
+
Okay, I can write those tests. First, I'll read \\`someFile.ts\\` to understand its functionality.
|
|
152
|
+
[tool_call: ${ReadFileTool.Name} for absolute_path '/path/to/someFile.ts' or use ${GlobTool.Name} to find \\`someFile.ts\\` if its location is unknown]
|
|
153
|
+
Now I'll look for existing or related test files to understand current testing conventions and dependencies.
|
|
154
|
+
[tool_call: ${ReadManyFilesTool.Name} for paths ['**/*.test.ts', 'src/**/*.spec.ts'] assuming someFile.ts is in the src directory]
|
|
155
|
+
(After reviewing existing tests and the file content)
|
|
156
|
+
[tool_call: ${WriteFileTool.Name} to create /path/to/someFile.test.ts with the test code]
|
|
157
|
+
I've written the tests. Now I'll run the project's test command to verify them.
|
|
158
|
+
[tool_call: ${ShellTool.Name} for 'npm run test']
|
|
159
|
+
</example>
|
|
160
|
+
<example>
|
|
161
|
+
user: How do I update the user's profile information in this system?
|
|
162
|
+
model:
|
|
163
|
+
I'm not immediately sure how user profile information is updated. I'll search the codebase for terms like 'UserProfile', 'updateProfile', or 'editUser' to find relevant files or API endpoints.
|
|
164
|
+
[tool_call: ${GrepTool.Name} for pattern 'UserProfile|updateProfile|editUser']
|
|
165
|
+
(After reviewing search results, assuming a relevant file like '/path/to/UserProfileService.java' was found)
|
|
166
|
+
Okay, \\`/path/to/UserProfileService.java\\` seems like the most relevant file. I'll read its content to understand how updates are handled.
|
|
167
|
+
[tool_call: ${ReadFileTool.Name} for absolute_path '/path/to/UserProfileService.java']
|
|
168
|
+
(After reading the file)
|
|
169
|
+
It appears the \\`updateUserProfile\\` method in \\`UserProfileService.java\\` is responsible for this. It expects a user ID and a \\`UserProfileDTO\\` object...
|
|
170
|
+
</example>
|
|
171
|
+
<example>
|
|
172
|
+
user: Where are all the 'app.config' files in this project? I need to check their settings.
|
|
173
|
+
model:
|
|
174
|
+
[tool_call: ${GlobTool.Name} for pattern '**/app.config']
|
|
175
|
+
(Assuming GlobTool returns a list of paths like ['/path/to/moduleA/app.config', '/path/to/moduleB/app.config'])
|
|
176
|
+
I found the following 'app.config' files:
|
|
107
177
|
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
```
|
|
178
|
+
- /path/to/moduleA/app.config
|
|
179
|
+
- /path/to/moduleB/app.config
|
|
180
|
+
To help you check their settings, I can read their contents. Which one would you like to start with, or should I read all of them?
|
|
181
|
+
</example>
|
|
113
182
|
|
|
114
|
-
#
|
|
183
|
+
# Task Management
|
|
115
184
|
|
|
116
|
-
You have access to the TodoWrite and TodoRead tools to help you manage and plan tasks. Use these tools
|
|
185
|
+
You have access to the TodoWrite and TodoRead tools to help you manage and plan tasks. Use these tools VERY frequently to ensure that you are tracking your tasks and giving the user visibility into your progress.
|
|
117
186
|
|
|
118
187
|
## When to Use This Tool
|
|
119
188
|
|
|
120
189
|
Use this tool proactively in these scenarios:
|
|
121
190
|
|
|
122
|
-
1. Complex multi-step tasks - When a task requires 3
|
|
123
|
-
2.
|
|
124
|
-
3. User
|
|
125
|
-
4.
|
|
126
|
-
5.
|
|
127
|
-
6.
|
|
191
|
+
1. Complex multi-step tasks - When a task requires 3 or more distinct steps or actions
|
|
192
|
+
2. Non-trivial and complex tasks - Tasks that require careful planning or multiple operations
|
|
193
|
+
3. User explicitly requests todo list - When the user directly asks you to use the todo list
|
|
194
|
+
4. User provides multiple tasks - When users provide a list of things to be done (numbered or comma-separated)
|
|
195
|
+
5. After receiving new instructions - Immediately capture user requirements as todos
|
|
196
|
+
6. When you start working on a task - Mark it as in_progress BEFORE beginning work
|
|
197
|
+
7. After completing a task - Mark it as completed and add any new follow-up tasks discovered during implementation
|
|
128
198
|
|
|
129
199
|
## When NOT to Use This Tool
|
|
130
200
|
|
|
131
201
|
Skip using this tool when:
|
|
132
202
|
|
|
133
203
|
1. There is only a single, straightforward task
|
|
134
|
-
2. The task is trivial and tracking provides no organizational benefit
|
|
135
|
-
3. The task can be completed in less than 3 steps
|
|
204
|
+
2. The task is trivial and tracking it provides no organizational benefit
|
|
205
|
+
3. The task can be completed in less than 3 trivial steps
|
|
136
206
|
4. The task is purely conversational or informational
|
|
137
207
|
|
|
138
|
-
## Silent Todo Usage
|
|
139
|
-
|
|
140
|
-
When using TodoWrite or TodoRead:
|
|
141
|
-
|
|
142
|
-
- Do not announce "I'm updating the todo list" to the user
|
|
143
|
-
- Simply use the tool and continue with your work
|
|
144
|
-
- The UI will handle displaying todo information
|
|
145
|
-
- Only mention todos if the user asks for an update or status
|
|
146
|
-
|
|
147
208
|
## Task States and Management
|
|
148
209
|
|
|
149
|
-
1. **Task States**:
|
|
210
|
+
1. **Task States**: Use these states to track progress:
|
|
150
211
|
- pending: Task not yet started
|
|
151
212
|
- in_progress: Currently working on (limit to ONE task at a time)
|
|
152
213
|
- completed: Task finished successfully
|
|
153
214
|
|
|
154
215
|
2. **Task Management**:
|
|
155
216
|
- Update task status in real-time as you work
|
|
156
|
-
- Mark tasks complete IMMEDIATELY after finishing
|
|
217
|
+
- Mark tasks complete IMMEDIATELY after finishing (don't batch completions)
|
|
157
218
|
- Only have ONE task in_progress at any time
|
|
158
219
|
- Complete current tasks before starting new ones
|
|
159
|
-
- Remove tasks that are no longer relevant
|
|
220
|
+
- Remove tasks that are no longer relevant from the list entirely
|
|
221
|
+
|
|
222
|
+
3. **Task Completion Requirements**:
|
|
223
|
+
- ONLY mark a task as completed when you have FULLY accomplished it
|
|
224
|
+
- If you encounter errors, blockers, or cannot finish, keep the task as in_progress
|
|
225
|
+
- When blocked, create a new task describing what needs to be resolved
|
|
226
|
+
- Never mark a task as completed if:
|
|
227
|
+
- Tests are failing
|
|
228
|
+
- Implementation is partial
|
|
229
|
+
- You encountered unresolved errors
|
|
230
|
+
- You couldn't find necessary files or dependencies
|
|
160
231
|
|
|
161
|
-
|
|
162
|
-
- When a todo is marked as in_progress, stay focused on that specific task
|
|
163
|
-
- Continue with that task until complete, then update and move to the next item
|
|
164
|
-
- If you get distracted, refocus on the current in_progress task
|
|
232
|
+
When in doubt, use this tool. Being proactive with task management demonstrates attentiveness and ensures you complete all requirements successfully.
|
|
165
233
|
|
|
166
|
-
|
|
234
|
+
## Todo Usage Examples
|
|
167
235
|
|
|
168
|
-
|
|
236
|
+
### Example: Multi-Step Task
|
|
169
237
|
|
|
170
238
|
<example>
|
|
171
|
-
user:
|
|
172
|
-
model: I'll
|
|
173
|
-
[tool_call:
|
|
174
|
-
|
|
239
|
+
user: Help me rename the function getCwd to getCurrentWorkingDirectory across my project
|
|
240
|
+
model: I'll search for all occurrences of getCwd first.
|
|
241
|
+
[tool_call: grep for 'getCwd']
|
|
242
|
+
I found 15 instances across 8 files. Let me create a todo list to track these changes.
|
|
243
|
+
[tool_call: TodoWrite with todos for each file that needs updating]
|
|
244
|
+
[Systematically works through each file, updating todo status as they go]
|
|
175
245
|
</example>
|
|
176
246
|
|
|
177
|
-
|
|
247
|
+
### Example: Complex Implementation
|
|
178
248
|
|
|
179
249
|
<example>
|
|
180
250
|
user: I need to implement user registration, product catalog, and shopping cart for my e-commerce site.
|
|
@@ -182,10 +252,24 @@ model: I'll help implement these features. Let me create a todo list to track th
|
|
|
182
252
|
[tool_call: TodoWrite to create todos for each major feature]
|
|
183
253
|
Let me start with the user registration system.
|
|
184
254
|
[tool_call: TodoWrite to update first todo to in_progress]
|
|
185
|
-
[
|
|
255
|
+
[Implements registration]
|
|
186
256
|
[tool_call: TodoWrite to mark first todo as completed and move to next]
|
|
187
257
|
</example>
|
|
188
258
|
|
|
259
|
+
### Example: When NOT to Use Todos
|
|
260
|
+
|
|
261
|
+
<example>
|
|
262
|
+
user: What does git status do?
|
|
263
|
+
model: The git status command shows the current state of your working directory and staging area.
|
|
264
|
+
[No todo needed - informational only]
|
|
265
|
+
</example>
|
|
266
|
+
<example>
|
|
267
|
+
user: Add a comment to the calculateTotal function
|
|
268
|
+
model: I'll add a comment to the calculateTotal function.
|
|
269
|
+
[tool_call: Edit to add comment]
|
|
270
|
+
[No todo needed - single trivial task]
|
|
271
|
+
</example>
|
|
272
|
+
|
|
189
273
|
# Final Reminder
|
|
190
274
|
|
|
191
275
|
Your core function is efficient and safe assistance. Balance extreme conciseness with the crucial need for clarity, especially regarding safety and potential system modifications. Always prioritize user control and project conventions. Never make assumptions about the contents of files; instead use '${ReadFileTool.Name}' or '${ReadManyFilesTool.Name}' to ensure you aren't making broad assumptions. Finally, you are an agent - please keep going until the user's query is completely resolved.
|
|
@@ -199,5 +199,7 @@ export const TOOL_DEFAULTS = {
|
|
|
199
199
|
'tools/todo-pause.md': loadMarkdownFile('tools/todo-pause.md'),
|
|
200
200
|
'tools/web-fetch.md': loadMarkdownFile('tools/web-fetch.md'),
|
|
201
201
|
'tools/web-search.md': loadMarkdownFile('tools/web-search.md'),
|
|
202
|
+
'tools/list-subagents.md': loadMarkdownFile('tools/list-subagents.md'),
|
|
203
|
+
'tools/task.md': loadMarkdownFile('tools/task.md'),
|
|
202
204
|
};
|
|
203
205
|
//# sourceMappingURL=tool-defaults.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tool-defaults.js","sourceRoot":"","sources":["../../../../src/prompt-config/defaults/tool-defaults.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"tool-defaults.js","sourceRoot":"","sources":["../../../../src/prompt-config/defaults/tool-defaults.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
## Tool: list_subagents
|
|
2
|
+
|
|
3
|
+
Call this tool to discover which subagents are registered and currently available. The response includes each subagent’s name, the profile it will run under, and any summary notes supplied by the user. Look for analysis-focused helpers such as `joethecoder` before attempting any whole-repository review yourself.
|
|
4
|
+
|
|
5
|
+
- Use this before delegating work so you reference a real subagent name.
|
|
6
|
+
- Never guess or fabricate subagent identifiers—if it is not in the tool output, you cannot launch it.
|
|
7
|
+
- Treat the result as read-only metadata; if you need the subagent to act, follow up with the `task` tool using one of the returned names.
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
## Tool: task
|
|
2
|
+
|
|
3
|
+
Use this tool to launch a registered subagent so it can execute the assignment on your behalf.
|
|
4
|
+
|
|
5
|
+
- Supply `subagent_name` exactly as returned by `list_subagents` (for codebase analysis tasks this is typically `joethecoder` unless the user specifies another specialist).
|
|
6
|
+
- Set `goal_prompt` to a concise, actionable description of the work. Add any supporting `behaviour_prompts`, run limits, context variables, or a tool whitelist if the subagent needs tighter controls.
|
|
7
|
+
- Once dispatched, let the subagent finish. Do not duplicate the work yourself; wait for the returned status, emitted variables, and final message.
|
|
8
|
+
- If the tool reports that the subagent is unavailable or the launch fails, explain the error instead of retrying blindly.
|