mirror of
https://github.com/evdboom/Bindery.git
synced 2026-07-22 06:49:36 +00:00
- 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.
16 lines
474 B
JSON
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"
|
|
}
|
|
]
|
|
}
|