Add interactive front-end shell menu to notes_app CLI#39
Draft
ShockaHolmes with Copilot wants to merge 2 commits into
Draft
Add interactive front-end shell menu to notes_app CLI#39ShockaHolmes with Copilot wants to merge 2 commits into
ShockaHolmes with Copilot wants to merge 2 commits into
Conversation
Agent-Logs-Url: https://github.com/ShockaHolmes/NoteForge/sessions/3d7019f2-b35b-4f23-a7e1-2946e175f52f Co-authored-by: ShockaHolmes <78627489+ShockaHolmes@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add front end menu to operate app more proficiently
Add interactive front-end shell menu to notes_app CLI
Apr 30, 2026
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.
The notes_app CLI lacked an interactive REPL-style interface — users had to invoke each command as a separate subprocess call. This adds a persistent interactive shell exposing all available commands in a single session.
Changes
python/src/notes_app/cli/shell.py(new)notes>prompt loop backed by the fullNoteService/BackupServicestackhelp,list,create,search,read,update,delete,backup,restore,quitshlex.split()for correct quoted-argument parsingKeyboardInterrupt(Ctrl+C) gracefullypython -m notes_app.cli.shellpython/tests/test_shell.py(new)Example