evdboom_Bindery/.vscode/launch.json
Erik van der Boom 0937d8c4b9 feat: update AI setup version to 5 and add chapter status tools
- Incremented AI_SETUP_VERSION in ai-setup.ts to 5 to reflect changes.
- Added new tools for chapter status management in index.ts:
  - chapter_status_get: retrieves current chapter progress from .bindery/chapter-status.json.
  - chapter_status_update: upserts chapter progress entries in .bindery/chapter-status.json.
- Updated templates.ts to include new tools in the status snapshot.
- Enhanced tools.ts with chapter status data structures and logic for managing chapter status.
- Updated manifest.json to include descriptions for new chapter status tools.
- Added launch and task configurations for vscode-ext to facilitate development.
- Updated package.json in vscode-ext to include tool reference names for new tools.
- Adjusted mcp.ts to integrate chapter status tools into the MCP interface.
2026-04-03 15:09:27 +02:00

16 lines
474 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Run Extension",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}/vscode-ext",
"--disable-extension=option-a.bindery"
],
"outFiles": ["${workspaceFolder}/vscode-ext/out/**/*.js"],
"preLaunchTask": "compile-vscode-ext"
}
]
}