techunter 0.1.3 → 0.1.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.
- package/README.md +1 -1
- package/dist/index.js +3 -3
- package/dist/mcp.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -1005,7 +1005,7 @@ async function runSubAgentLoop(config, systemPrompt, userMessage, toolNames) {
|
|
|
1005
1005
|
{ role: "system", content: systemPrompt },
|
|
1006
1006
|
{ role: "user", content: userMessage }
|
|
1007
1007
|
];
|
|
1008
|
-
const MAX_ITERATIONS =
|
|
1008
|
+
const MAX_ITERATIONS = 100;
|
|
1009
1009
|
let iterations = 0;
|
|
1010
1010
|
for (; ; ) {
|
|
1011
1011
|
if (++iterations > MAX_ITERATIONS) {
|
|
@@ -1551,7 +1551,7 @@ List each file path with CREATE/MODIFY, and one sentence describing what changes
|
|
|
1551
1551
|
What the feature/fix receives as input and what it produces or affects.
|
|
1552
1552
|
|
|
1553
1553
|
### \u9A8C\u6536\u6807\u51C6
|
|
1554
|
-
Checkbox list of testable conditions.
|
|
1554
|
+
Checkbox list of only the most essential testable conditions. Maximum 3 items \u2014 include only what is strictly necessary to verify the task is done.
|
|
1555
1555
|
`.trim();
|
|
1556
1556
|
|
|
1557
1557
|
// src/tools/new-task/guide-generator.ts
|
|
@@ -2801,7 +2801,7 @@ async function runAgentLoop(config, messages) {
|
|
|
2801
2801
|
"5. To reject: write a structured rejection comment and call reject."
|
|
2802
2802
|
].join("\n")
|
|
2803
2803
|
};
|
|
2804
|
-
const MAX_ITERATIONS =
|
|
2804
|
+
const MAX_ITERATIONS = 100;
|
|
2805
2805
|
let iterations = 0;
|
|
2806
2806
|
for (; ; ) {
|
|
2807
2807
|
if (++iterations > MAX_ITERATIONS) {
|
package/dist/mcp.js
CHANGED
|
@@ -721,7 +721,7 @@ async function runSubAgentLoop(config, systemPrompt, userMessage, toolNames) {
|
|
|
721
721
|
{ role: "system", content: systemPrompt },
|
|
722
722
|
{ role: "user", content: userMessage }
|
|
723
723
|
];
|
|
724
|
-
const MAX_ITERATIONS =
|
|
724
|
+
const MAX_ITERATIONS = 100;
|
|
725
725
|
let iterations = 0;
|
|
726
726
|
for (; ; ) {
|
|
727
727
|
if (++iterations > MAX_ITERATIONS) {
|
|
@@ -1267,7 +1267,7 @@ List each file path with CREATE/MODIFY, and one sentence describing what changes
|
|
|
1267
1267
|
What the feature/fix receives as input and what it produces or affects.
|
|
1268
1268
|
|
|
1269
1269
|
### \u9A8C\u6536\u6807\u51C6
|
|
1270
|
-
Checkbox list of testable conditions.
|
|
1270
|
+
Checkbox list of only the most essential testable conditions. Maximum 3 items \u2014 include only what is strictly necessary to verify the task is done.
|
|
1271
1271
|
`.trim();
|
|
1272
1272
|
|
|
1273
1273
|
// src/tools/new-task/guide-generator.ts
|