footprint-explainable-ui 0.28.0 → 0.29.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.
- package/README.md +26 -0
- package/dist/index.cjs +1355 -650
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +158 -2
- package/dist/index.d.ts +158 -2
- package/dist/index.js +1305 -603
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -138,6 +138,32 @@ The all-in-one orchestrator. Handles time-travel, subflow drill-down, memory/nar
|
|
|
138
138
|
| `size` | `"compact" \| "default" \| "detailed"` | `"default"` | Size variant |
|
|
139
139
|
| `unstyled` | `boolean` | `false` | Strip styles, render `data-fp` attributes |
|
|
140
140
|
|
|
141
|
+
### Tracing a value — walk the timeline backward through its causes
|
|
142
|
+
|
|
143
|
+

|
|
144
|
+
|
|
145
|
+
Open **Inspector → Data Trace** and click one of the "Trace a value" chips.
|
|
146
|
+
The time slider stays the same rail — the stages that made that value light
|
|
147
|
+
up as **stops**, everything else fades to unlandable ticks, and the buttons
|
|
148
|
+
become **◀ earlier cause / toward result ▶**. This works because every
|
|
149
|
+
ingredient of a value was always written *earlier in the run* than the value
|
|
150
|
+
it fed, so the dependency chain is a sub-sequence of the timeline you already
|
|
151
|
+
have. One cursor, no new axis.
|
|
152
|
+
|
|
153
|
+
- A value made from **two ingredients** shows both as colored chips —
|
|
154
|
+
pressing "earlier cause" visits both (most recent first); nothing is ever
|
|
155
|
+
silently skipped. Click a chip to **follow** just that ingredient (the
|
|
156
|
+
breadcrumb shows `key ▸ via ingredient · show all`).
|
|
157
|
+
- Every stop shows the world **as it was at that moment** — the state panel
|
|
158
|
+
time-travels with the walk for free.
|
|
159
|
+
- **Honest absence**: a value nobody wrote gets a truthful card ("never
|
|
160
|
+
written in this run — it arrived with the run's inputs"), and a value not
|
|
161
|
+
written *yet* at the cursor's moment says exactly that, naming where its
|
|
162
|
+
first write happens. Reads-off runs say "unknowable, not absent".
|
|
163
|
+
- **[Copy story]** emits the same text an LLM backtrack tool returns — the
|
|
164
|
+
human's board and the agent's answer are one artifact.
|
|
165
|
+
- Tracing lives on the root rail: drilling into a subflow exits it honestly.
|
|
166
|
+
|
|
141
167
|
### Panel Labels
|
|
142
168
|
|
|
143
169
|
Customize the text on collapsible pill buttons. Semantic keys — not tied to position:
|