بنقرة واحدة
screenize-explorer
// Explore and debug .screenize project packages. Lists projects, reads project.json, summarizes event streams, displays timeline segments, and shows recording statistics.
// Explore and debug .screenize project packages. Lists projects, reads project.json, summarizes event streams, displays timeline segments, and shows recording statistics.
Fetch a GitHub issue and create a detailed implementation plan. Use when given a GitHub issue URL or number to analyze the issue, explore relevant codebase areas, and produce a step-by-step implementation plan with file changes, architecture considerations, and risk assessment.
SQLite vector DB for work log storage and semantic search. Use for indexing work logs, generating embeddings, semantic search, and DB maintenance.
Document completed work with vector database indexing. Use `/log-work` after completing any significant task (feature, bug fix, refactoring, configuration change) to record what was done, decisions made, and files changed.
| name | screenize-explorer |
| description | Explore and debug .screenize project packages. Lists projects, reads project.json, summarizes event streams, displays timeline segments, and shows recording statistics. |
| user-invocable | true |
| allowed-tools | ["Bash","Read","Glob","Grep","AskUserQuestion"] |
MyProject.screenize/
├── project.json # ScreenizeProject v5
└── recording/
├── recording.mp4 # Video file
├── metadata.json # PolyRecordingMetadata
├── mousemoves-0.json # [PolyMouseMoveEvent]
├── mouseclicks-0.json # [PolyMouseClickEvent]
├── keystrokes-0.json # [PolyKeystrokeEvent]
└── uistates-0.json # [PolyUIStateEvent]
Top-level fields:
id (UUID), version (int), name, createdAt, modifiedAt (ISO 8601)media: { videoPath, mouseDataPath, pixelSize: {width, height}, frameRate, duration }captureMeta: { displayID?, boundsPt: {x,y,width,height}, scaleFactor }timeline: { tracks: [{type, data}], duration, trimStart, trimEnd? }renderSettings: codec, quality, resolution, background, corners, shadow, padding, motionBlurinterop: { sourceKind, eventBundleVersion, recordingMetadataPath, streams: {mouseMoves, mouseClicks, keystrokes, uiStates}, primaryVideoPath }frameAnalysisCache (optional array), frameAnalysisVersionEach track is wrapped as { type: "transform"|"cursor"|"keystroke", data: {...} }:
Camera track (type: "transform"): segments with startTime, endTime, startTransform: {zoom, center: {x, y}}, endTransform, interpolation, mode ("manual"/"followCursor"), cursorFollow, transitionToNext
Cursor track (type: "cursor"): useSmoothCursor, segments with startTime, endTime, style, visible, scale, clickFeedback, transitionToNext
Keystroke track (type: "keystroke"): segments with startTime, endTime, displayText, position, fadeInDuration, fadeOutDuration
metadata.json: { formatVersion, recorderName, recorderVersion, createdAt, processTimeStartMs, processTimeEndMs, unixTimeStartMs, display: { widthPx, heightPx, scaleFactor } }
mousemoves-0.json: Array of { type, processTimeMs, unixTimeMs, x, y, cursorId?, activeModifiers, button? }. Coordinates: display-local pixels, top-left origin.
mouseclicks-0.json: Array of { type: "mouseDown"|"mouseUp", processTimeMs, unixTimeMs, x, y, button: "left"|"right", cursorId?, activeModifiers }.
keystrokes-0.json: Array of { type: "keyDown"|"keyUp", processTimeMs, unixTimeMs, character?, isARepeat, activeModifiers }.
uistates-0.json: Array of { processTimeMs, unixTimeMs, cursorX, cursorY, elementRole?, elementSubrole?, elementTitle?, elementAppName?, elementFrameX/Y/W/H?, elementIsClickable?, caretX/Y/W/H? }.
timelineSec = (event.processTimeMs - metadata.processTimeStartMs) / 1000.0
If the user provides a specific .screenize path as an argument, use it directly.
Otherwise, search for projects in these locations (in order):
./projects/ relative to the current working directory~/Movies/Screenize/Use Glob to find .screenize packages:
pattern: projects/**/*.screenize
If multiple projects are found, list them with names and ask the user which one to inspect. If only one is found, use it automatically. If none are found, inform the user.
Read project.json from the package root. Present:
### Project: [name]
- **Version**: [version] | **ID**: [id]
- **Created**: [date] | **Modified**: [date]
- **Video**: [width]x[height] @ [fps] fps, [MM:SS duration]
- **Capture**: Display [id], [w]x[h] pt, scale [factor]x
- **Export**: [codec] / [quality] / [resolution]
- **Background**: [enabled/disabled]
- **Trim**: [start] - [end] (or "None")
For each track in the timeline:
Table with columns: #, Time Range, Start Zoom, End Zoom, Center, Mode, Easing
Table with columns: #, Time Range, Style, Visible, Scale
Table with columns: #, Time Range, Text
Read recording/metadata.json first for processTimeStartMs.
For each event stream file that exists, read it (use Bash wc -l for very large files, or Read for moderate ones) and report:
After showing the summary, ask the user if they want to:
Only proceed if the user requests one of these.
- All output in English. - Format durations as MM:SS.mmm for precise values, MM:SS for summaries. - Format coordinates to 3 decimal places. - For large event files (>10000 events), show count only. For detail, show first 5 and last 5 with "..." between. - Mark missing files as "[missing]" rather than erroring. - Never modify any package files. This skill is read-only. - Use the Read tool for JSON files, not cat via Bash. - When reading JSON, use Bash `python3 -m json.tool` only if needed for formatting, otherwise Read directly.