portable-agent-layer 0.56.0 β 0.57.0
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.
|
@@ -180,6 +180,15 @@ No criterion may rest on an unverified premise. If a premise can't be verified n
|
|
|
180
180
|
|
|
181
181
|
Output: `π§ GROUNDING: [premises verified, or assumptions flagged]`
|
|
182
182
|
|
|
183
|
+
**Blast-radius & prior-art recon β for shared-code or multi-file changes.**
|
|
184
|
+
|
|
185
|
+
Before changing a shared symbol, prop, or signature β or building a feature that may already partially exist:
|
|
186
|
+
- **Grep every consumer/reference FIRST**, here in PLAN, not reactively via type-check in EXECUTE. A prop or signature change is a tracing task before it is an edit.
|
|
187
|
+
- **Check what already exists** before writing new infrastructure β reuse beats rebuild. "Does this already partially exist?" is the cheapest scope error to catch.
|
|
188
|
+
- **"Broken after rename"** β trace what external systems reference the old name (configs, imports, generated files, docs).
|
|
189
|
+
|
|
190
|
+
Output: `πΊοΈ BLAST RADIUS: [consumers traced + prior art found, or "N/A β isolated change"]`
|
|
191
|
+
|
|
183
192
|
### βββ β‘ EXECUTE βββ 3/5
|
|
184
193
|
|
|
185
194
|
Do the work. Invoke selected capabilities via tool calls.
|
|
@@ -363,6 +372,7 @@ Only write if the insight is **genuine and reusable** β not every session prod
|
|
|
363
372
|
π§ RISKS: [risks]
|
|
364
373
|
π§ PREMORTEM: [failure modes]
|
|
365
374
|
π§ GROUNDING: [premises verified, or assumptions flagged]
|
|
375
|
+
πΊοΈ BLAST RADIUS: [consumers traced + prior art found, or N/A]
|
|
366
376
|
π APPROACH: [execution plan]
|
|
367
377
|
|
|
368
378
|
βββ β‘ EXECUTE βββ 3/5
|