@xn-intenton-z2a/agentic-lib 7.4.46 → 7.4.47
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 +9 -12
- package/package.json +1 -1
- package/src/seeds/zero-package.json +1 -1
package/agentic-lib.toml
CHANGED
|
@@ -70,7 +70,6 @@ infinite-sessions = false # set to true for long sessions with compaction
|
|
|
70
70
|
# [tuning] or [limits] to deviate from the active profile.
|
|
71
71
|
|
|
72
72
|
[profiles.min]
|
|
73
|
-
# Fast, cheap — CI testing, quick validation.
|
|
74
73
|
reasoning-effort = "low" # low | medium | high | none
|
|
75
74
|
infinite-sessions = false # enable session compaction for long runs
|
|
76
75
|
transformation-budget = 16 # max code-changing cycles per run
|
|
@@ -93,12 +92,11 @@ max-fix-test-output = 8000 # max chars of failed run log in fix-code
|
|
|
93
92
|
review-issues-cap = 2 # max issues reviewed per batch (conservative for 10 min timeout)
|
|
94
93
|
min-resolved-issues = 1 # mission-complete: minimum closed-as-RESOLVED issues
|
|
95
94
|
min-cumulative-transforms = 1 # mission-complete: minimum transform cycles
|
|
96
|
-
max-source-todos =
|
|
97
|
-
acceptance-criteria-threshold =
|
|
95
|
+
max-source-todos = 1 # mission-complete: max TODO comments in src
|
|
96
|
+
acceptance-criteria-threshold = 80 # mission-complete: % acceptance criteria required
|
|
98
97
|
|
|
99
98
|
[profiles.med]
|
|
100
|
-
#
|
|
101
|
-
reasoning-effort = "medium" # low | medium | high | none
|
|
99
|
+
reasoning-effort = "high" # low | medium | high | none
|
|
102
100
|
infinite-sessions = true # enable session compaction for long runs
|
|
103
101
|
transformation-budget = 32 # max code-changing cycles per run
|
|
104
102
|
max-issues = 15 # max open issues fetched from GitHub
|
|
@@ -118,13 +116,12 @@ max-file-listing = 100 # max files in directory listings (0 = un
|
|
|
118
116
|
max-library-index = 5000 # max chars for library index in prompts
|
|
119
117
|
max-fix-test-output = 15000 # max chars of failed run log in fix-code
|
|
120
118
|
review-issues-cap = 3 # max issues reviewed per batch
|
|
121
|
-
min-resolved-issues =
|
|
119
|
+
min-resolved-issues = 1 # mission-complete: minimum closed-as-RESOLVED issues
|
|
122
120
|
min-cumulative-transforms = 1 # mission-complete: minimum transform cycles
|
|
123
121
|
max-source-todos = 1 # mission-complete: max TODO comments in src
|
|
124
|
-
acceptance-criteria-threshold =
|
|
122
|
+
acceptance-criteria-threshold = 80 # mission-complete: % acceptance criteria required
|
|
125
123
|
|
|
126
124
|
[profiles.max]
|
|
127
|
-
# Thorough — maximum context for complex missions.
|
|
128
125
|
reasoning-effort = "high" # low | medium | high | none
|
|
129
126
|
infinite-sessions = true # enable session compaction for long runs
|
|
130
127
|
transformation-budget = 128 # max code-changing cycles per run
|
|
@@ -145,10 +142,10 @@ max-file-listing = 0 # max files in directory listings (0 = un
|
|
|
145
142
|
max-library-index = 10000 # max chars for library index in prompts
|
|
146
143
|
max-fix-test-output = 30000 # max chars of failed run log in fix-code
|
|
147
144
|
review-issues-cap = 4 # max issues reviewed per batch (may need step timeout awareness)
|
|
148
|
-
min-resolved-issues =
|
|
149
|
-
min-cumulative-transforms =
|
|
145
|
+
min-resolved-issues = 1 # mission-complete: minimum closed-as-RESOLVED issues
|
|
146
|
+
min-cumulative-transforms = 1 # mission-complete: minimum transform cycles
|
|
150
147
|
max-source-todos = 0 # mission-complete: max TODO comments in src
|
|
151
|
-
acceptance-criteria-threshold =
|
|
148
|
+
acceptance-criteria-threshold = 80 # mission-complete: % acceptance criteria required
|
|
152
149
|
|
|
153
150
|
[goals]
|
|
154
151
|
# W12/W13: Code coverage thresholds — stated in all code-changing prompts
|
|
@@ -160,7 +157,7 @@ min-branch-coverage = 30 # minimum % branch coverage required
|
|
|
160
157
|
# All conditions must be met simultaneously.
|
|
161
158
|
min-resolved-issues = 1 # minimum closed-as-RESOLVED issues since init
|
|
162
159
|
max-source-todos = 0 # max TODO comments allowed in ./src (0 = none)
|
|
163
|
-
acceptance-criteria-threshold =
|
|
160
|
+
acceptance-criteria-threshold = 80 # percentage of acceptance criteria that must be met (0-100)
|
|
164
161
|
min-cumulative-transforms = 1 # minimum transform cycles completed
|
|
165
162
|
require-no-open-issues = true # all issues must be closed
|
|
166
163
|
require-no-open-prs = true # all PRs must be merged/closed
|
package/package.json
CHANGED