Add retrieval-grounded sudo flow and execution feedback loop

This commit is contained in:
Claude Code
2026-03-17 19:53:32 -04:00
parent f4ce19db6d
commit 40b4da345a
6 changed files with 705 additions and 15 deletions
+24 -1
View File
@@ -5,5 +5,28 @@
"tool_model": "qwen2.5:1.5b",
"session_ttl_seconds": 21600,
"session_persistence_enabled": true,
"session_db_path": "/var/lib/mc-langgraph-gateway/sessions.db"
"session_db_path": "/var/lib/mc-langgraph-gateway/sessions.db",
"knowledge_base_dir": "/var/lib/mc-langgraph-gateway/knowledge",
"knowledge_index_file": "/var/lib/mc-langgraph-gateway/knowledge/index.json",
"knowledge_auto_index_on_start": true,
"knowledge_bootstrap_on_start": true,
"knowledge_max_doc_bytes": 200000,
"knowledge_allowed_hosts": [
"minecraft.wiki",
"www.minecraft.wiki",
"docs.papermc.io",
"intellectualsites.github.io",
"enginehub.org",
"worldedit.enginehub.org"
],
"knowledge_bootstrap_urls": [
"https://minecraft.wiki/w/Commands/fill",
"https://minecraft.wiki/w/Commands/setblock",
"https://minecraft.wiki/w/Commands/clone",
"https://minecraft.wiki/w/Commands/summon",
"https://minecraft.wiki/w/Commands/execute",
"https://minecraft.wiki/w/TNT",
"https://minecraft.wiki/w/Explosion",
"https://minecraft.wiki/w/Tutorial:Worldedit"
]
}