소스 정보
- 저장소
- ReinaMacCredy/Maestro-CLI
- 최근 소스 활동
- 2026년 3월 24일 14:07
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/ReinaMacCredy/Maestro-CLI --skill maestrovisual명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Use when bootstrapping, updating, or reviewing AGENTS.md — teaches what makes effective agent memory, how to structure sections, signal vs noise filtering, and when to prune stale entries
Use before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes
SOC 직업 분류 기준
SKILL.md 표시 중
| name | maestro:visual |
| description | Create interactive HTML visualizations of maestro state and debug data |
| argument-hint | <visualization type or description> |
| stage | execution |
| audience | both |
Render maestro state or debug data as self-contained interactive HTML files. All visualizations support dark/light mode, open in any browser, and require no build step.
maestro_visual -- Maestro State VisualizationsRenders data gathered from maestro services. Requires an active feature.
maestro_visual({ type: "plan-graph", feature: "my-feature" })
maestro_visual({ type: "status-dashboard" }) // uses active feature
| Type | What it shows |
|---|---|
plan-graph | Mermaid flowchart of task dependencies. Node shapes encode status (pending/claimed/done/blocked/review/revision). |
status-dashboard | KPI cards (task counts per status), progress bar, runnable/blocked lists, memory + doctrine stats. |
memory-map | Grid of memory cards color-coded by category, sized by priority. Mermaid pie chart for category distribution. |
execution-timeline | Timeline of completed tasks with execution insights. Knowledge flow graph. Doctrine effectiveness table. |
doctrine-network | Mermaid graph of doctrine items connected by shared tags. Effectiveness metrics table. |
maestro_debug_visual -- Debug VisualizationsRenders agent-provided structured data. No feature context needed.
maestro_debug_visual({
type: "component-tree",
data: { nodes: [...] },
title: "React Component Hierarchy"
})
| Type | What it shows |
|---|---|
component-tree | Recursive tree with expand/collapse. Error boundaries highlighted. Props viewable. |
state-flow | Timeline of state mutations with inline JSON diff. Filterable by action. |
error-cascade | Error tree with caught/uncaught distinction. Collapsible stack traces. |
network-waterfall | Chrome DevTools-style waterfall of HTTP requests. Color-coded by status. |
dom-diff | Side-by-side panels with line-by-line diff highlighting. |
console-timeline | Log entries with severity coloring. Level filter controls. |
maestro visual plan-graph --feature my-feature
maestro visual status-dashboard
maestro debug-visual component-tree --data '{"nodes":[...]}'
maestro debug-visual network-waterfall --data /path/to/data.json --no-open
plan-graph shows task dependencies at a glancestatus-dashboard gives a quick KPI overviewmemory-map shows what the project remembersexecution-timeline traces what happened across tasksdoctrine-network shows which rules are effectivecomponent-tree + error-cascade for React/Vue issuesstate-flow for tracking down mutation bugsnetwork-waterfall for API timing issuesdom-diff for expected vs actual markupconsole-timeline for filtering through log noiseAll files are written to ~/.maestro/visuals/ with descriptive filenames. Files auto-rotate at 100 (oldest are pruned). Browser opens automatically unless --no-open or autoOpen: false.
The visual system uses CSS custom properties for theming. For advanced customization, load the visual-explainer skill which documents the full CSS pattern library (section cards, grid layouts, animations, depth tiers).