@xn-intenton-z2a/agentic-lib 7.1.97 → 7.1.99

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
@@ -68,19 +68,19 @@ infinite-sessions = false # set to true for long sessions with compaction
68
68
  # [tuning] or [limits] to deviate from the active profile.
69
69
 
70
70
  [profiles.min]
71
- # Fast & cheap — CI testing, quick validation, budget-conscious iteration.
71
+ # ~10% of gpt-4.1 context (128K). Fast, cheap — CI testing, quick validation.
72
72
  reasoning-effort = "low" # low | medium | high | none
73
73
  infinite-sessions = false # enable session compaction for long runs
74
74
  transformation-budget = 16 # max code-changing cycles per run
75
75
  max-feature-files = 3 # max feature files included in prompts
76
76
  max-source-files = 3 # max source files included in prompts
77
- max-source-chars = 1000 # max chars of each source file's content included in prompts
78
- max-test-chars = 500 # max chars of each test file's content included in prompts
77
+ max-source-chars = 4000 # max chars of each source file's content included in prompts
78
+ max-test-chars = 2000 # max chars of each test file's content included in prompts
79
79
  max-issues = 5 # max open issues included in prompts
80
- issue-body-limit = 200 # max chars of each issue's body text included in prompts
80
+ issue-body-limit = 1000 # max chars of each issue's body text included in prompts
81
81
  stale-days = 14 # days since last activity before an issue is considered stale and excluded
82
- max-summary-chars = 500 # max chars of each document's summary included in prompts
83
- max-discussion-comments = 5 # max recent discussion comments (newest first) included in prompts
82
+ max-summary-chars = 2000 # max chars of each document's summary included in prompts
83
+ max-discussion-comments = 3 # max recent discussion comments (newest first) included in prompts
84
84
  max-feature-issues = 1 # max concurrent feature development issues
85
85
  max-maintenance-issues = 1 # max concurrent maintenance issues
86
86
  max-attempts-per-branch = 2 # max transform attempts before abandoning a branch
@@ -89,18 +89,18 @@ features-limit = 2 # max feature files in features/ director
89
89
  library-limit = 8 # max library entries in library/ directory
90
90
 
91
91
  [profiles.recommended]
92
- # Balanced — good results without excessive cost. Default for consumer repos.
92
+ # ~30% of claude-sonnet-4 context (216K). Balanced — good results, default for consumer repos.
93
93
  reasoning-effort = "medium" # low | medium | high | none
94
94
  infinite-sessions = true # enable session compaction for long runs
95
95
  transformation-budget = 32 # max code-changing cycles per run
96
96
  max-feature-files = 10 # max feature files included in prompts
97
97
  max-source-files = 10 # max source files included in prompts
98
- max-source-chars = 5000 # max chars of each source file's content included in prompts
99
- max-test-chars = 3000 # max chars of each test file's content included in prompts
100
- max-issues = 20 # max open issues included in prompts
101
- issue-body-limit = 500 # max chars of each issue's body text included in prompts
98
+ max-source-chars = 8000 # max chars of each source file's content included in prompts
99
+ max-test-chars = 5000 # max chars of each test file's content included in prompts
100
+ max-issues = 15 # max open issues included in prompts
101
+ issue-body-limit = 2000 # max chars of each issue's body text included in prompts
102
102
  stale-days = 30 # days since last activity before an issue is considered stale and excluded
103
- max-summary-chars = 2000 # max chars of each document's summary included in prompts
103
+ max-summary-chars = 5000 # max chars of each document's summary included in prompts
104
104
  max-discussion-comments = 10 # max recent discussion comments (newest first) included in prompts
105
105
  max-feature-issues = 2 # max concurrent feature development issues
106
106
  max-maintenance-issues = 1 # max concurrent maintenance issues
@@ -110,19 +110,19 @@ features-limit = 4 # max feature files in features/ director
110
110
  library-limit = 32 # max library entries in library/ directory
111
111
 
112
112
  [profiles.max]
113
- # Thorough — maximum context, highest quality. For complex missions.
113
+ # ~90% of gpt-5-mini context (264K). Thorough — maximum context for complex missions.
114
114
  reasoning-effort = "high" # low | medium | high | none
115
115
  infinite-sessions = true # enable session compaction for long runs
116
116
  transformation-budget = 128 # max code-changing cycles per run
117
- max-feature-files = 50 # max feature files included in prompts
118
- max-source-files = 50 # max source files included in prompts
119
- max-source-chars = 20000 # max chars of each source file's content included in prompts
120
- max-test-chars = 15000 # max chars of each test file's content included in prompts
121
- max-issues = 100 # max open issues included in prompts
122
- issue-body-limit = 2000 # max chars of each issue's body text included in prompts
117
+ max-feature-files = 20 # max feature files included in prompts
118
+ max-source-files = 25 # max source files included in prompts
119
+ max-source-chars = 12000 # max chars of each source file's content included in prompts
120
+ max-test-chars = 8000 # max chars of each test file's content included in prompts
121
+ max-issues = 30 # max open issues included in prompts
122
+ issue-body-limit = 3000 # max chars of each issue's body text included in prompts
123
123
  stale-days = 90 # days since last activity before an issue is considered stale and excluded
124
- max-summary-chars = 10000 # max chars of each document's summary included in prompts
125
- max-discussion-comments = 25 # max recent discussion comments (newest first) included in prompts
124
+ max-summary-chars = 8000 # max chars of each document's summary included in prompts
125
+ max-discussion-comments = 20 # max recent discussion comments (newest first) included in prompts
126
126
  max-feature-issues = 4 # max concurrent feature development issues
127
127
  max-maintenance-issues = 2 # max concurrent maintenance issues
128
128
  max-attempts-per-branch = 5 # max transform attempts before abandoning a branch
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xn-intenton-z2a/agentic-lib",
3
- "version": "7.1.97",
3
+ "version": "7.1.99",
4
4
  "description": "Agentic-lib Agentic Coding Systems SDK powering automated GitHub workflows.",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -716,7 +716,7 @@ export async function supervise(context) {
716
716
  if (ctx.initTimestamp && !ctx.missionComplete && !ctx.missionFailed) {
717
717
  // Check for any prior agentic-lib-workflow runs since init (count > 1 because current run is included)
718
718
  const supervisorRunCount = ctx.actionsSinceInit.filter(
719
- (a) => a.name === "agentic-lib-workflow",
719
+ (a) => a.name.startsWith("agentic-lib-workflow"),
720
720
  ).length;
721
721
  const hasPriorSupervisor = supervisorRunCount > 1 || ctx.recentActivity.includes("supervised:");
722
722
  if (!hasPriorSupervisor && ctx.mission && ctx.activeDiscussionUrl) {
@@ -17,7 +17,7 @@
17
17
  "author": "",
18
18
  "license": "MIT",
19
19
  "dependencies": {
20
- "@xn-intenton-z2a/agentic-lib": "^7.1.97"
20
+ "@xn-intenton-z2a/agentic-lib": "^7.1.99"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@playwright/test": "^1.58.0",