From oh-my-auggie
Evidence-driven tracing and execution tracking. Use for "trace this", "execution trace", and "track progress".
npx claudepluginhub r3dlex/oh-my-auggie --plugin oh-my-auggieThis skill uses the workspace's default tool permissions.
Track and document execution flow with evidence.
Verifies tests pass on completed feature branch, presents options to merge locally, create GitHub PR, keep as-is or discard; executes choice and cleans up worktree.
Guides root cause investigation for bugs, test failures, unexpected behavior, performance issues, and build failures before proposing fixes.
Writes implementation plans from specs for multi-step tasks, mapping files and breaking into TDD bite-sized steps before coding.
Share bugs, ideas, or general feedback.
Track and document execution flow with evidence.
Where execution begins.
Individual operations.
Transfers between components.
Branching points.
Where execution ends.
Full detail, all operations.
Key operations only.
Warnings and errors.
Failures only.
Fast, temporary.
Persistent.
traces/ directoryFor distributed systems.
/oma:trace start {name}
/oma:trace event {type} {description}
/oma:trace span {name} {duration}
/oma:trace end
/oma:trace list
/oma:trace view {trace-id}
## Trace: {name}
### Summary
**Started:** {timestamp}
**Duration:** {duration}
**Status:** {running|complete|error}
### Timeline
{time} Entry: {component}::{function}() {time} ├── Event: {event} {time} ├── Span: {span} ({duration}) {time} └── Exit: {result}
### Spans
| Name | Duration | Start | End |
|------|----------|-------|-----|
| {span} | {dur} | {time} | {time} |
### Events
| Time | Type | Description |
|------|------|-------------|
| {time} | {type} | {desc} |
### Handoffs
| From | To | Data |
|------|----|------|
| {src} | {dst} | {data} |
### Errors
- **{error}** at {location}
### Attachments
- {file/link}