feat: add bridge script for Claude Code → LM Studio execution (v3.12.1)

Bridge script enables local execution of Claude Code plans via LM Studio:
- Python CLI with 5 components (DoobidooReader, LMStudioClient, Validator, StepExecutor, PlanExecutor)
- JSON Schema for plan validation (bridge-plan-schema.json)
- Cost optimization: Plan with Opus (~$0.50-2), execute free locally (80-90% savings)
- 4 validation types: json, syntax_check, contains_keys, non_empty
- CLI: --health, --list, --plan ID, -v verbose mode

Documentation:
- New section "Local Execution Bridge" in ultimate-guide.md §11.2
- scripts/README.md with full usage documentation
- machine-readable/reference.yaml entries for discoverability

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Florian BRUNIAUX 2026-01-25 18:43:05 +01:00
parent 2ace737018
commit 96da6ebd7e
10 changed files with 1223 additions and 10 deletions

6
.gitignore vendored
View file

@ -17,6 +17,10 @@ Thumbs.db
node_modules/
npm-debug.log*
# Python
__pycache__/
*.pyc
# Misc
*.log
*.tmp
@ -33,4 +37,4 @@ claudedocs/
.mcp.json
# Multi-provider (will be moved to dedicated repo)
examples/multi-provider/
examples/multi-provider/