@xn-intenton-z2a/agentic-lib 7.4.51 → 7.4.53
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/agentic-lib.toml +3 -3
- package/bin/agentic-lib.js +3 -4
- package/package.json +1 -1
- package/src/seeds/zero-package.json +1 -1
package/agentic-lib.toml
CHANGED
|
@@ -93,7 +93,7 @@ review-issues-cap = 2 # max issues reviewed per batch (conserva
|
|
|
93
93
|
min-resolved-issues = 1 # mission-complete: minimum closed-as-RESOLVED issues
|
|
94
94
|
min-cumulative-transforms = 1 # mission-complete: minimum transform cycles
|
|
95
95
|
max-source-todos = 1 # mission-complete: max TODO comments in src
|
|
96
|
-
acceptance-criteria-threshold =
|
|
96
|
+
acceptance-criteria-threshold = 90 # mission-complete: % acceptance criteria required
|
|
97
97
|
|
|
98
98
|
[profiles.med]
|
|
99
99
|
reasoning-effort = "high" # low | medium | high | none
|
|
@@ -119,7 +119,7 @@ review-issues-cap = 3 # max issues reviewed per batch
|
|
|
119
119
|
min-resolved-issues = 1 # mission-complete: minimum closed-as-RESOLVED issues
|
|
120
120
|
min-cumulative-transforms = 1 # mission-complete: minimum transform cycles
|
|
121
121
|
max-source-todos = 1 # mission-complete: max TODO comments in src
|
|
122
|
-
acceptance-criteria-threshold =
|
|
122
|
+
acceptance-criteria-threshold = 90 # mission-complete: % acceptance criteria required
|
|
123
123
|
|
|
124
124
|
[profiles.max]
|
|
125
125
|
reasoning-effort = "high" # low | medium | high | none
|
|
@@ -145,7 +145,7 @@ review-issues-cap = 4 # max issues reviewed per batch (may need
|
|
|
145
145
|
min-resolved-issues = 1 # mission-complete: minimum closed-as-RESOLVED issues
|
|
146
146
|
min-cumulative-transforms = 1 # mission-complete: minimum transform cycles
|
|
147
147
|
max-source-todos = 0 # mission-complete: max TODO comments in src
|
|
148
|
-
acceptance-criteria-threshold =
|
|
148
|
+
acceptance-criteria-threshold = 90 # mission-complete: % acceptance criteria required
|
|
149
149
|
|
|
150
150
|
[goals]
|
|
151
151
|
# W12/W13: Code coverage thresholds — stated in all code-changing prompts
|
package/bin/agentic-lib.js
CHANGED
|
@@ -888,12 +888,11 @@ async function initPurge(seedsDir, missionName, initTimestamp) {
|
|
|
888
888
|
"Write the mission to MISSION.md using the write_file tool.",
|
|
889
889
|
].join("\n");
|
|
890
890
|
await runCopilotSession({
|
|
891
|
-
|
|
891
|
+
workspacePath: target,
|
|
892
892
|
model,
|
|
893
|
-
|
|
894
|
-
prompt,
|
|
893
|
+
userPrompt: prompt,
|
|
895
894
|
timeoutMs: 120000,
|
|
896
|
-
|
|
895
|
+
writablePaths: [resolve(target, "MISSION.md")],
|
|
897
896
|
});
|
|
898
897
|
resolvedMission = "generated";
|
|
899
898
|
console.log(" GENERATE: Mission written to MISSION.md");
|
package/package.json
CHANGED