Skip to content

Commit e085dd7

Browse files
committed
feat(autoagents): enable experimental feature in cloud installation script
Update install-codegraph-cloud.sh to include autoagents-experimental: - Add autoagents-experimental to FEATURE_FLAGS - Update feature flag documentation comment - Add AutoAgents to success message features list Cloud installations will now include: - AutoAgents ReAct framework integration - All 7 agentic MCP tools using AutoAgents - Tier-aware prompting with AutoAgents - Experimental status clearly marked (🔬 EXPERIMENTAL) Users can verify AutoAgents is active by checking server logs for "🎯 AutoAgents" instead of "🎯 Agentic" when running agentic tools. Completes AutoAgents integration for cloud deployment path.
1 parent 7ca5d14 commit e085dd7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

install-codegraph-cloud.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@ echo ""
8888
# - codegraph-graph/surrealdb: SurrealDB backend support
8989
# - codegraph-ai/all-cloud-providers: Anthropic, OpenAI, x.AI and OpenAI-compatible providers
9090
# - server-http: HTTP transport with SSE streaming for MCP server
91-
FEATURE_FLAGS="ai-enhanced,codegraph-vector/jina,codegraph-graph/surrealdb,codegraph-ai/all-cloud-providers,server-http"
91+
# - autoagents-experimental: EXPERIMENTAL AutoAgents framework for improved agentic orchestration
92+
FEATURE_FLAGS="ai-enhanced,codegraph-vector/jina,codegraph-graph/surrealdb,codegraph-ai/all-cloud-providers,server-http,autoagents-experimental"
9293
INSTALL_DIR="${CODEGRAPH_INSTALL_DIR:-$HOME/.local/bin}"
9394

9495
echo -e "${BLUE}🚀 Building CodeGraph with Cloud Features...${NC}"
@@ -123,6 +124,7 @@ if [ $? -eq 0 ]; then
123124
echo " 🤖 Cloud LLM: Anthropic (Claude), OpenAI, and compatible providers"
124125
echo " 💾 Database: SurrealDB backend for scalable graph storage"
125126
echo " 🌐 MCP Transports: STDIO, HTTP (with SSE streaming), and Dual mode"
127+
echo " 🔬 EXPERIMENTAL: AutoAgents framework for improved agentic orchestration"
126128
echo ""
127129
echo -e "${BLUE}🗄️ SurrealDB Setup:${NC}"
128130
echo " Before using CodeGraph, you need to start SurrealDB:"

0 commit comments

Comments
 (0)