@lazyingart/agintiflow 0.20.287 → 0.20.288
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/docs/state-of-the-art-agent-runtime.md +10 -0
- package/package.json +1 -1
- package/scripts/smoke-dynamic-step-budget.js +1252 -16
- package/scripts/smoke-local-failure-recovery.js +171 -3
- package/scripts/smoke-progressive-tool-selection.js +474 -30
- package/src/agent-runner.js +1382 -98
- package/src/local-failure-recovery.js +162 -9
- package/src/progressive-tool-selection.js +197 -23
- package/src/provider-handoff.js +86 -0
- package/src/scs-evidence.js +79 -11
|
@@ -161,6 +161,16 @@ existing routine owned by the relevant project:
|
|
|
161
161
|
The agent selects, invokes, monitors, and verifies those routines. It does not
|
|
162
162
|
replace them with prompt-specific shell fragments.
|
|
163
163
|
|
|
164
|
+
## Verification Recovery
|
|
165
|
+
|
|
166
|
+
Failed project tests are authoritative evidence unless the current request
|
|
167
|
+
explicitly asks to change them. AgInTiFlow keeps the failing command and source
|
|
168
|
+
lineage, constrains repair writes to evidence-linked production files, and
|
|
169
|
+
rejects repeated attempts to weaken the test specification. If bounded
|
|
170
|
+
LocalLLM recovery exhausts its authenticated strong routes without producing a
|
|
171
|
+
passing verification, the same session can rebound once to its original
|
|
172
|
+
provider while preserving the goal, source context, and verifier evidence.
|
|
173
|
+
|
|
164
174
|
## Acceptance Gates
|
|
165
175
|
|
|
166
176
|
A primary-backend release is accepted only after all of these pass:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lazyingart/agintiflow",
|
|
3
|
-
"version": "0.20.
|
|
3
|
+
"version": "0.20.288",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "AgInTiFlow is a project-aware agent workspace for hybrid wet-dry R&D, hardware-aware intelligence, software automation, and industrial workflows.",
|
|
6
6
|
"license": "Apache-2.0",
|