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>
40 lines
No EOL
459 B
Text
40 lines
No EOL
459 B
Text
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Claude Code (ignore personal config, but keep shared commands)
|
|
.claude/
|
|
!.claude/commands/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Node (if any tooling added later)
|
|
node_modules/
|
|
npm-debug.log*
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# Misc
|
|
*.log
|
|
*.tmp
|
|
*.bak
|
|
*.wav
|
|
*.mp3
|
|
*.onnx
|
|
|
|
# Personal notes & temp files
|
|
to-ignore/
|
|
.grepai/
|
|
whitepapers/
|
|
claudedocs/
|
|
.mcp.json
|
|
|
|
# Multi-provider (will be moved to dedicated repo)
|
|
examples/multi-provider/ |