This guide shows all the ways to start MindX for autonomous agentic development from mastermind orchestration, including blueprint_agent.py integration. Augmentic represents the action of autonomous agentic development - the continuous self-improvement and evolution of AI agents.
# Basic augmentic development with default directive
python3 augmentic.py
Augmentic development with custom directive
python3 augmentic.py "Improve the system's error handling and resilience"
python3 augmentic.py "Enhance the learning capabilities of the strategic evolution agent"
python3 augmentic.py "Optimize the blueprint generation process"
# Start continuous autonomous augmentic development
python3 start_autonomous_evolution.py --daemon
Single augmentic cycle with directive
python3 start_autonomous_evolution.py --directive "Your augmentic directive here"
With custom config
python3 start_autonomous_evolution.py --config custom_config.json --daemon
# Start interactive MindX CLI
python3 scripts/run_mindx.py
Then use commands:
evolve "Your augmentic directive here"
analyze_codebase /path/to/code "focus area"
mastermind_status
# Start API server
python3 mindx_backend_service/main_service.py
Then make API calls:
POST /commands/evolve
POST /agents/{agent_id}/evolve
POST /coordinator/analyze
User Directive → MastermindAgent → StrategicEvolutionAgent → BlueprintAgent
↓
AutonomousAuditCoordinator ← CoordinatorAgent ← BDI Agent ← Mistral AI
from orchestration.mastermind_agent import MastermindAgent
Initialize mastermind
mastermind = await MastermindAgent.get_instance(...)
Start augmentic development
result = await mastermind.command_augmentic_intelligence("Your directive")
from learning.strategic_evolution_agent import StrategicEvolutionAgent
Initialize SEA
sea = StrategicEvolutionAgent(...)
Run augmentic campaign
result = await sea.run_evolution_campaign("Your directive")
from evolution.blueprint_agent import BlueprintAgent
Initialize blueprint agent
blueprint_agent = BlueprintAgent(...)
Generate augmentic blueprint
blueprint = await blueprint_agent.generate_next_evolution_blueprint()
from orchestration.autonomous_audit_coordinator import AutonomousAuditCoordinator
Initialize audit coordinator
audit_coord = AutonomousAuditCoordinator(...)
Start autonomous audits
audit_coord.start_autonomous_audit_loop()
cd /home/hacker/mindxTheta/minded
python3 augmentic.py "Improve error handling across all agents"
cd /home/hacker/mindxTheta/minded
python3 start_autonomous_evolution.py --daemon
cd /home/hacker/mindxTheta/minded
python3 scripts/run_mindx.py
Then type: evolve "Enhance the blueprint generation process"
cd /home/hacker/mindxTheta/minded
python3 mindx_backend_service/main_service.py &
Then: curl -X POST "http://localhost:8000/commands/evolve" -H "Content-Type: application/json" -d '{"directive": "Your directive here"}'
# Check mastermind status
python3 scripts/run_mindx.py
Then type: mastermind_status
Check agent registry
Then type: show_agent_registry
Check coordinator backlog
Then type: show_coordinator_backlog
data/agent_workspaces/mastermind_prime/mastermind_campaigns_history.jsondata/agent_workspaces/autonomous_audit_coordinator/data/logs/The MindX system is now ready for autonomous agentic development with a single call. Choose your preferred method and start the augmentic development process!
Recommended: Start with python3 augmentic.py for a quick augmentic development cycle, then move to python3 start_autonomous_evolution.py --daemon for continuous autonomous augmentic development.