@lazyingart/agintiflow 0.20.298 → 0.20.299

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lazyingart/agintiflow",
3
- "version": "0.20.298",
3
+ "version": "0.20.299",
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",
@@ -309,6 +309,11 @@ try {
309
309
  String(explanation.state.messages.find((message) => message.role === "system")?.content || "").length < 10_000,
310
310
  "focused runtime prompt did not use progressive disclosure"
311
311
  );
312
+ assert.match(
313
+ String(explanation.state.messages.find((message) => message.role === "system")?.content || ""),
314
+ /run that command unchanged before probing --help, alternate wrappers/i,
315
+ "focused runtime did not prioritize exact established routine commands"
316
+ );
312
317
  assert(
313
318
  Math.max(
314
319
  ...explanation.state.messages
@@ -2801,6 +2801,7 @@ function focusedCapabilityContext(config = {}) {
2801
2801
  ? `Advisory wrapper: ${normalizeWrapperName(config.preferredWrapper)} (${wrapperStatusText()}).`
2802
2802
  : "Advisory wrappers: disabled.",
2803
2803
  config.allowAuxiliaryTools ? "Auxiliary generation tools: enabled when the requested artifact needs them." : "Auxiliary tools: disabled.",
2804
+ "When the current request, project instructions, or routine contract names an exact established command, run that command unchanged before probing --help, alternate wrappers, process lists, or implementation source. If its result answers the request, stop discovery and finish.",
2804
2805
  "Discovery must be bounded: after a blocked path or search, change method once; never use recursive grep. Prefer exact manifests, workspace search, or targeted rg with an explicit path, globs, and result limit.",
2805
2806
  isRetainedWorkspaceProfile(config)
2806
2807
  ? isRetainedVisionWorkspaceProfile(config)