mirror of
https://github.com/aeitroc/Droid-CLI-Orchestrator.git
synced 2026-04-26 06:55:54 +03:00
[PR #3] refactor: implement prompt-first orchestrator approach #4
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Droid-CLI-Orchestrator#4
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/aeitroc/Droid-CLI-Orchestrator/pull/3
Author: @vforvaick
Created: 11/22/2025
Status: 🔄 Open
Base:
main← Head:claude/brainstorm-droid-cli-014VvoKohRnyHuefJpQoNER4📝 Commits (7)
bfc2848refactor: implement prompt-first orchestrator approach25338bffix: address CodeRabbit review feedback8d7b056docs: add comprehensive documentation to init-orchestratorad86480feat: add interactive installer and health check tools0a027adrefactor: rename tools to droidos-* prefix for claritybaed9edfix: address CodeRabbit review feedbacke663814docs: add comprehensive changelog and clarify orchestrator modes📊 Changes
6 files changed (+1774 additions, -618 deletions)
View changed files
📝
README.md(+211 -129)➕
bin/droidos-doctor(+393 -0)➕
bin/droidos-init(+491 -0)➕
commands/init-orchestrator.md(+370 -0)📝
commands/orchestrator.md(+28 -205)📝
droids/orchestrator.md(+281 -284)📄 Description
BREAKING CHANGE: Orchestrator behavior significantly changed
Changes:
New Orchestrator Philosophy:
✅ PROMPT IS THE TRUTH - execute exactly what user asks ✅ Minimal scanning - only read files mentioned in prompt + dependencies ✅ No overengineering - don't add unrequested features ✅ Clarify ambiguity - suggest assumptions and ask for confirmation ✅ Smart delegation - use appropriate specialists for the task only
Forbidden Behaviors:
❌ Full codebase scanning unless explicitly needed
❌ Building features not mentioned in prompt
❌ Overengineering with unnecessary abstractions
❌ Comprehensive project analysis for simple tasks
Use Cases:
Why this change?
Previous orchestrator would scan entire codebase and build comprehensive solutions even for simple requests like "add X to module Y". New approach focuses on executing the specific prompt without scope creep.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.