Loading...
Loading...
Create standalone debugging interfaces that reveal the internal workings of complex systems through interactive visualization. Use when the user wants to understand how something works, debug internal state, visualize data flow, see what happens when they interact with the system, or build a debug panel for any complex mechanism. Triggers on requests like "I don't understand how this works", "show me what's happening", "visualize the state machine", "build a debug view for this", "help me see the data flow", "make this transparent", or any request to understand, debug, or visualize internal system behavior. Applies to state machines, rendering systems, event flows, algorithms, animations, data pipelines, CSS calculations, database queries, or any system with non-obvious internal workings.
npx skill4agent add petekp/claude-code-setup transparent-ui| System Type | Primary Visualization | Key Elements |
|---|---|---|
| State machines | Node-edge graph | States as nodes, transitions as edges, current state highlighted |
| Data flow | Directed graph or Sankey | Sources, transformations, sinks with data flowing between |
| Event systems | Timeline or sequence diagram | Events on time axis, handlers, propagation paths |
| Algorithms | Step-by-step animation | Data structure state at each step, highlighting active elements |
| Render/update cycles | Tree with diff overlay | Component tree, what re-rendered, why |
| Animations | Timeline scrubber | Keyframes, easing curves, current progress |
| CSS/Layout | Box model overlay | Computed values, constraint sources |
// Event emitter pattern - add to existing code
const debugEmitter = new EventEmitter();
function transition(from: State, to: State, event: string) {
debugEmitter.emit('transition', { from, to, event, timestamp: Date.now() });
// ... existing logic
}
// Proxy pattern - wrap without modifying
function createObservableStore<T>(store: T): T & { subscribe: (fn: Listener) => void } {
const listeners: Listener[] = [];
return new Proxy(store, {
set(target, prop, value) {
const oldValue = target[prop];
target[prop] = value;
listeners.forEach(fn => fn({ prop, oldValue, newValue: value }));
return true;
}
});
}process.env.NODE_ENV === 'development'app/
__dev/
transparent/
[system]/
page.tsx # Dynamic route for different systemsapp/
__dev/
state-machine/
page.tsx/**
* TRANSPARENT-UI DEBUG TOOL
*
* Temporary debugging visualization. Remove when no longer needed:
* 1. Delete this file: app/__dev/[name]/page.tsx
* 2. Delete instrumentation: src/lib/[system]-debug.ts
* 3. Remove debug hooks from: src/lib/[system].ts (lines XX-YY)
*
* Created for: [description of what this helps debug]
*/__dev/debugEmitterTRANSPARENT-UI