Add autonomous planner agent with safety rules and PROACTIVE auto-triggering

- Created autonomous-planner.md agent file with context-aware workflow suggestions
- Implemented safety-rules.json for safe/risky operation classification
- Updated all installers (auto-installer.sh, interactive-install-claude.sh) to include autonomous planner
- Updated agent counts: 40→41 total agents, 8→9 PROACTIVELY coordinators, 4→5 Bonus agents
- Updated documentation (README.md, MASTER-PROMPT.md, extra-tools/README.md)
- Added test-autonomous-planner.sh TDD test suite
- Auto-triggers on: code changes, tests passing, deployments, safe task execution
This commit is contained in:
Gemini AI
2026-01-18 03:04:06 +04:00
Unverified
parent 63218683d4
commit 61e5713549
8 changed files with 799 additions and 24 deletions

View File

@@ -129,7 +129,7 @@ show_welcome() {
echo "This installer will guide you through setting up a customized"
echo "Claude Code environment with:"
echo ""
echo " • 40 specialized agents for development, marketing, and operations"
echo " • 41 specialized agents for development, marketing, and operations"
echo " • MCP tools for vision analysis, web search, and GitHub integration"
echo " • Custom skills and plugins"
echo " • Optimized workflows for rapid 6-day development cycles"
@@ -243,9 +243,9 @@ select_agents() {
INSTALL_DESIGN=false
fi
if confirm "Install Bonus agents? (Studio coach, agent updater, superpowers agent, joker)" "Y"; then
if confirm "Install Bonus agents? (Studio coach, agent updater, superpowers agent, autonomous planner, joker)" "Y"; then
INSTALL_BONUS=true
SELECTED_AGENTS=$((SELECTED_AGENTS + 4))
SELECTED_AGENTS=$((SELECTED_AGENTS + 5))
else
INSTALL_BONUS=false
fi