feat: Enhance status command with project and transport info#11
Closed
feat: Enhance status command with project and transport info#11
Conversation
069189d to
44fe232
Compare
6735778 to
5ce013f
Compare
Implements story 5.1.
The 'status' MCP command has been updated to provide more comprehensive information:
- Adds `wigai_version`, `project_name`, and `audio_engine_active` to the root of the response.
- Adds a nested `transport` object containing:
- `playing` (boolean)
- `recording` (boolean)
- `repeat_active` (boolean)
- `metronome_active` (boolean)
- `current_tempo` (float)
- `time_signature` (string)
- `current_beat_str` (string)
- `current_time_str` (string)
Modifications were made to `StatusTool.java` to fetch this information from the Bitwig API.
The `docs/api-reference.md` has been updated to reflect these changes in the command's response.
Unit tests have been added in `StatusToolTest.java` to cover the new functionality.
The story file `docs/stories/5.1.story.md` has been updated to 'Review' status and tasks marked complete.
A DoD checklist `docs/checklists/story-dod-checklist-5.1.txt` has been created.
44fe232 to
503544d
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implements story 5.1.
The 'status' MCP command has been updated to provide more comprehensive information:
wigai_version,project_name, andaudio_engine_activeto the root of the response.transportobject containing:playing(boolean)recording(boolean)repeat_active(boolean)metronome_active(boolean)current_tempo(float)time_signature(string)current_beat_str(string)current_time_str(string)Modifications were made to
StatusTool.javato fetch this information from the Bitwig API. Thedocs/api-reference.mdhas been updated to reflect these changes in the command's response. Unit tests have been added inStatusToolTest.javato cover the new functionality. The story filedocs/stories/5.1.story.mdhas been updated to 'Review' status and tasks marked complete. A DoD checklistdocs/checklists/story-dod-checklist-5.1.txthas been created.