dougbot/.claude/settings.local.json
roberts b609d4c896 Phase 3: Task queue, behavior engine, trait-driven decisions
- TaskQueue with 6 priority levels (IDLE → CRITICAL)
- BehaviorEngine generates tasks based on persona traits:
  - Survival: flee (bravery-weighted), eat, seek shelter (anxiety)
  - Combat: attack hostiles (bravery threshold)
  - Social: follow players (sociability), approach for interaction
  - Exploration: read signs, check containers, wander (curiosity range)
  - Organization: inventory management (OCD quirk)
  - Idle: look around, unprompted chat (chatty_cathy)
- Brain rewritten to use scan → generate → execute loop
- New bridge actions: open_chest, close_container, transfer_item,
  scan_surroundings, find_blocks, attack_nearest_hostile,
  list_recipes, craft_item, use_block, drop_item
- Traits influence: flee distance, wander range, combat willingness,
  social approach frequency, container curiosity
- Brain passes persona traits from database to behavior engine
- Unprompted AI chat via wants_ai_chat signal

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-30 12:48:15 -05:00

36 lines
2.3 KiB
JSON

{
"permissions": {
"allow": [
"Bash(npm install:*)",
"Bash(npm rebuild:*)",
"Bash(cmake --version)",
"Bash(node -e \"const bp = require\\(''./node_modules/bedrock-protocol''\\); console.log\\(''bedrock-protocol loaded OK''\\)\")",
"Bash(node -e \"const bp = require\\(''bedrock-protocol''\\); console.log\\(''bedrock-protocol loaded OK, version:'', bp.version || ''unknown''\\)\")",
"Bash(brew install:*)",
"Bash(node -e \"const bp = require\\(''bedrock-protocol''\\); console.log\\(''bedrock-protocol loaded OK''\\)\")",
"Bash(npx tsc:*)",
"Bash(node -e \":*)",
"Bash(python3 -c \"import PySide6; print\\(''''PySide6 version:'''', PySide6.__version__\\)\")",
"Bash(pip3 install:*)",
"Bash(grep -r realm /Users/roberts/development/doug-minecraft/bridge/node_modules/bedrock-protocol/src/*.js)",
"Bash(python3 -c \":*)",
"Bash(python3 -c \"from dougbot.gui.main_window import MainWindow; print\\(''OK''\\)\")",
"Bash(python3 -c \"from dougbot.gui.create_doug import CreateDougScreen; print\\(''OK''\\)\")",
"Bash(curl -s -o /dev/null -w \"HTTP %{http_code} — %{time_total}s\" --max-time 10 https://pocket.realms.minecraft.net)",
"Bash(curl -s -o /dev/null -w \"HTTP %{http_code} — %{time_total}s\\\\n\" --max-time 15 https://pocket.realms.minecraft.net)",
"Bash(npm view:*)",
"WebSearch",
"WebFetch(domain:wiki.bedrock.dev)",
"WebFetch(domain:github.com)",
"Bash(node -e \"const bp = require\\(''bedrock-protocol''\\); console.log\\(''bedrock-protocol loaded''\\)\")",
"Bash(node -e \"const o = require\\(''''bedrock-protocol/src/options''''\\); console.log\\(''''Latest supported:'''', o.CURRENT_VERSION\\); console.log\\(''''All versions:'''', Object.keys\\(o.Versions\\).slice\\(-5\\)\\)\")",
"Bash(node -e \"const o = require\\(''bedrock-protocol/src/options''\\); console.log\\(''CURRENT_VERSION:'', o.CURRENT_VERSION\\); const keys = Object.keys\\(o.Versions\\); console.log\\(''First 5:'', keys.slice\\(0,5\\)\\); console.log\\(''Last 5:'', keys.slice\\(-5\\)\\)\")",
"Bash(node dist/index.js --host 192.168.1.90 --port 19140 --username Doug-Offline --offline --ws-port 9999)",
"Bash(echo \"Exit: $?\")",
"Bash(npm ls:*)",
"Bash(git add:*)",
"Bash(git commit:*)",
"Bash(git push:*)"
]
}
}