-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
115 lines (115 loc) · 2.94 KB
/
plugin.json
File metadata and controls
115 lines (115 loc) · 2.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "maestro",
"description": "Unified spec-driven development framework with track-based development, automatic agent selection, TDD enforcement, integrated memory system, and Critical Think metacognitive analysis.",
"version": "2.5.0",
"author": {
"name": "scooter-lacroix"
},
"license": "MIT",
"repository": "https://github.com/scooter-lacroix/Maestro",
"homepage": "https://github.com/scooter-lacroix/Maestro#readme",
"keywords": [
"development",
"framework",
"spec-driven",
"tdd",
"testing",
"agent",
"memory",
"critical-thinking",
"workflow",
"productivity",
"cli",
"automation",
"tui",
"dashboard"
],
"commands": [
"maestro:setup",
"maestro:newTrack",
"maestro:implement",
"maestro:status",
"maestro:revert",
"maestro:configure",
"maestro:memory",
"maestro:tui",
"maestro:leindex",
"maestro:orchestrate",
"maestro:tldr"
],
"skills": {
"path": "maestro/skills",
"count": 109,
"categories": [
"meta",
"workflows",
"context",
"analysis",
"research",
"quality",
"planning",
"math",
"math_topics",
"tools",
"architecture",
"onboarding"
]
},
"agents": {
"path": "maestro/agents",
"count": 32,
"categories": [
"orchestrators",
"planners",
"explorers",
"implementers",
"debuggers",
"validators",
"reviewers",
"specialized"
]
},
"hooks": {
"path": "maestro/hooks",
"count": 16,
"phases": [
"session-start",
"pre-tool-use",
"post-tool-use",
"pre-compact",
"user-prompt-submit",
"subagent-stop",
"session-end"
]
},
"cli": {
"binary": "maestro",
"description": "Maestro CLI - Rust-native command-line interface for Maestro framework",
"install_path": "~/.cargo/bin/maestro (via cargo) or ~/.local/bin/maestro (via make)",
"commands": {
"maestro tui": "Launch the Maestro Cockpit TUI (Rust ratatui Terminal UI) for session management",
"maestro analyze": "Analyze source code using LeIndex 5-phase framework",
"maestro implement": "Initiate a track implementation in tmux",
"maestro memory serve": "Start the Maestro Memory Dashboard web server (default: http://127.0.0.1:18765)",
"maestro memory status": "Show Maestro memory system statistics and health",
"maestro memory scan": "Scan directories for Maestro projects",
"maestro mcp serve": "Start pooled MCP servers",
"maestro mcp proxy": "Bridge stdio MCP to pooled server"
},
"dependencies": {
"rust": ">=1.70",
"cargo": ">=1.70",
"tmux": ">=3.2 (for implement command)"
}
},
"memory": {
"database_path": "~/.maestro/memory.db",
"handoffs_path": "~/.maestro/handoffs",
"ledgers_path": "~/.maestro/ledgers"
},
"dashboard": {
"enabled": true,
"host": "127.0.0.1",
"port": 18765
}
}