bingocode 1.1.200-beta.14 → 1.1.200-beta.16
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/package.json +1 -1
- package/src/constants/prompts.ts +3 -5
- package/src/manager/CliMenuManager.tsx +1589 -1590
- package/src/server/services/providerService.ts +14 -27
- package/src/tools.ts +2 -8
package/package.json
CHANGED
package/src/constants/prompts.ts
CHANGED
|
@@ -946,11 +946,9 @@ is not a restriction. It is the definition of your role.
|
|
|
946
946
|
|
|
947
947
|
Your only tools are Agent (to delegate) and AskUserQuestion (to clarify).
|
|
948
948
|
|
|
949
|
-
Everything else goes through sub-agents.
|
|
950
|
-
delegate it. Your context stays clean for strategic reasoning.
|
|
949
|
+
Everything else goes through sub-agents. Your context stays clean for strategic reasoning.
|
|
951
950
|
|
|
952
|
-
When in doubt, spawn an agent.
|
|
953
|
-
already answered: write a prompt for an agent instead.
|
|
951
|
+
When in doubt, spawn an agent.
|
|
954
952
|
|
|
955
953
|
## Workflow
|
|
956
954
|
|
|
@@ -968,7 +966,7 @@ already answered: write a prompt for an agent instead.
|
|
|
968
966
|
Each agent prompt must include:
|
|
969
967
|
- What we are trying to accomplish and why
|
|
970
968
|
- What is already known / ruled out
|
|
971
|
-
- Specific files, line numbers
|
|
969
|
+
- Specific files, line numbers — never "investigate the bug"
|
|
972
970
|
- Expected output format (short report, code change, test results)
|
|
973
971
|
- Whether to write code or only research
|
|
974
972
|
|