@xn-intenton-z2a/agentic-lib 7.4.47 → 7.4.49
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.
|
@@ -28,7 +28,7 @@ on:
|
|
|
28
28
|
profile:
|
|
29
29
|
type: string
|
|
30
30
|
required: false
|
|
31
|
-
default: "
|
|
31
|
+
default: ""
|
|
32
32
|
workflow-runs:
|
|
33
33
|
type: string
|
|
34
34
|
required: false
|
|
@@ -116,11 +116,12 @@ on:
|
|
|
116
116
|
- claude-sonnet-4
|
|
117
117
|
- gpt-4.1
|
|
118
118
|
profile:
|
|
119
|
-
description: "Tuning profile"
|
|
119
|
+
description: "Tuning profile (empty = read from agentic-lib.toml)"
|
|
120
120
|
type: choice
|
|
121
121
|
required: false
|
|
122
|
-
default: "
|
|
122
|
+
default: ""
|
|
123
123
|
options:
|
|
124
|
+
- ""
|
|
124
125
|
- min
|
|
125
126
|
- med
|
|
126
127
|
- max
|
|
@@ -151,16 +152,16 @@ on:
|
|
|
151
152
|
type: boolean
|
|
152
153
|
required: false
|
|
153
154
|
default: false
|
|
154
|
-
|
|
155
|
-
description: "
|
|
156
|
-
type:
|
|
155
|
+
skipMaintain:
|
|
156
|
+
description: "Skip maintain job in workflow runs"
|
|
157
|
+
type: boolean
|
|
157
158
|
required: false
|
|
158
|
-
default:
|
|
159
|
-
|
|
160
|
-
description: "
|
|
161
|
-
type:
|
|
159
|
+
default: false
|
|
160
|
+
create-seed-issues:
|
|
161
|
+
description: "Create initial seed issues after purge"
|
|
162
|
+
type: boolean
|
|
162
163
|
required: false
|
|
163
|
-
default:
|
|
164
|
+
default: false
|
|
164
165
|
generate-report:
|
|
165
166
|
description: "Generate enriched benchmark report after flow"
|
|
166
167
|
type: boolean
|
|
@@ -240,7 +241,7 @@ jobs:
|
|
|
240
241
|
resolve('mission-seed', process.env.INPUT_MISSION_SEED, null, '7-kyu-understand-fizz-buzz');
|
|
241
242
|
resolve('mission-text', process.env.INPUT_MISSION_TEXT, null, '');
|
|
242
243
|
resolve('model', process.env.INPUT_MODEL, 'model', 'gpt-5-mini');
|
|
243
|
-
resolve('profile', process.env.INPUT_PROFILE, 'profile', '
|
|
244
|
+
resolve('profile', process.env.INPUT_PROFILE, 'profile', '');
|
|
244
245
|
resolve('workflow-runs', process.env.INPUT_WORKFLOW_RUNS, null, '4');
|
|
245
246
|
resolve('schedule', process.env.INPUT_SCHEDULE, null, 'off');
|
|
246
247
|
resolve('dry-run', process.env.INPUT_DRY_RUN, null, 'false');
|
package/package.json
CHANGED