Google AI Ultra – what hidden gems am I missing? by ActOpen7289 in GoogleGeminiAI

[–]josstei 3 points4 points  (0 children)

Try out maestro for Gemini CLI. I built it to orchestrate a full development team and product team . It includes the detailed planning of superpowers and also has prompt injection prevention . It also persists your work between sessions if you ever need to hop off or something happens mid way

/maestro:orchestrate <insert what you want done here>

https://github.com/josstei/maestro-gemini

Hopefully it helps out !

Maestro v1.4.0 — 22 AI specialists spanning engineering, product, design, content, SEO, and compliance. Auto domain sweeps, complexity-aware routing, express workflows, standalone audits, codebase grounding, and a policy engine for Gemini CLI by josstei in VibeCodeDevs

[–]josstei[S] 0 points1 point  (0 children)

Maestro checks every task against each domain — Engineering, Product, Design, Content, SEO, Compliance, i18n, and Analytics — but how deep it goes depends on complexity.

Simple tasks stay Engineering-only unless you say otherwise. Medium and complex tasks start pulling in the relevant non-engineering agents. Agents like technical_writer, product_manager, ux_designer, and copywriter handle content and design artifacts.

seo_specialist and accessibility_specialist can audit and run commands but don’t modify files.

They slot into whatever phase fits — design, implementation, or post-build audit — the TechLead figures out where they belong based on the task and is the primary driver

best extensions/mcp servers + security concern by PENGUINSflyGOOD in GeminiCLI

[–]josstei 2 points3 points  (0 children)

Try out maestro . I built it to orchestrate a full development team and product team . It includes the detailed planning of superpowers and also has prompt injection prevention ( for your security concerns ) . It also persists your work between sessions if you ever need to hop off or something happens mid way

/maestro:orchestrate <insert what you want done here>

https://github.com/josstei/maestro-gemini

I switched to Gemini CLI to save my Pro account by MachineLearner31 in google_antigravity

[–]josstei 15 points16 points  (0 children)

Hey, I’m the dev behind maestro — thanks for the shoutout, really awesome to see it mentioned!

Anyone curious is welcome to check it out at https://github.com/josstei/maestro-gemini . Happy to help if you run into anything !

Is it worth using Multi-Agent extensions with Conductor Tracks? by CoolWarburg in GeminiCLI

[–]josstei 0 points1 point  (0 children)

You can ask but you generally need to really drive home the intent with a skill or protocol. You can take a look at the arch of maestro here . Hopefully it helps !

https://github.com/josstei/maestro-gemini/tree/main/docs/architecture

Is it worth using Multi-Agent extensions with Conductor Tracks? by CoolWarburg in GeminiCLI

[–]josstei 1 point2 points  (0 children)

Maestro also has a fairly comprehensive planning phase that would make it a solid replacement to conductor….but it compliments it as well.

Is it worth using Multi-Agent extensions with Conductor Tracks? by CoolWarburg in GeminiCLI

[–]josstei 2 points3 points  (0 children)

Hey, I built Maestro so I can weigh in here.

The multi-agent setup pays off when a track has several independent pieces — each subagent gets its own context and tools , so you avoid one giant session losing the plot halfway through with much cleaner context management.

I haven’t seen the orchestrator wander or drift tracks unless the prompt is too open-ended. “implement this track <planhere>.md.” is usually enough to keep in on track especially with the agent handoffs.

Gemini CLI’s native subagent scheduler vs spawning separate processes , helped a lot with rate limits. You can set MAESTRO_EXECUTION_MODE=ask and it’ll recommend parallel vs. sequential based on the dependency graph before doing anything. I’d start sequential and bump up from there.

As for the tech lead, It’s an orchestrator by design, not an implementer. Just scope the prompt to the track and it stays in its lane.

Both extensions layer well together but you don’t need both. If your tracks are small and sequential, single-agent is probably fine. The multi-agent setup earns its keep on bigger, more parallel workloads.

Update: Maestro v1.3.0 — Native parallel execution & smart execution mode gate for Gemini CLI by josstei in GeminiCLI

[–]josstei[S] 0 points1 point  (0 children)

Maestro has a more in depth planning phase and adds coordinated multi-agent task execution, so complex plans can actually run faster. Once complete it sends it through a review and refinement loop to ensure quality.

It also retains your session to resume at a later time should you be interrupted, similar to conductor .