@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 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 = 80 # mission-complete: % acceptance criteria required
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 = 80 # mission-complete: % acceptance criteria required
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 = 80 # mission-complete: % acceptance criteria required
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
@@ -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
- task: "generate-mission",
891
+ workspacePath: target,
892
892
  model,
893
- target,
894
- prompt,
893
+ userPrompt: prompt,
895
894
  timeoutMs: 120000,
896
- dryRun,
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xn-intenton-z2a/agentic-lib",
3
- "version": "7.4.51",
3
+ "version": "7.4.53",
4
4
  "description": "Agentic-lib Agentic Coding Systems SDK powering automated GitHub workflows.",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -17,7 +17,7 @@
17
17
  "author": "",
18
18
  "license": "MIT",
19
19
  "dependencies": {
20
- "@xn-intenton-z2a/agentic-lib": "^7.4.51"
20
+ "@xn-intenton-z2a/agentic-lib": "^7.4.53"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@playwright/test": "^1.58.0",