feat: expand VS Code extension with 12 new chat commands#33
Closed
bilersan wants to merge 1 commit intoActiveMemory:mainfrom
Closed
feat: expand VS Code extension with 12 new chat commands#33bilersan wants to merge 1 commit intoActiveMemory:mainfrom
bilersan wants to merge 1 commit intoActiveMemory:mainfrom
Conversation
Add comprehensive chat participant command coverage: - changes: show what changed since last session - config: manage runtime configuration profiles - doctor: structural health check - guide: quick-reference cheat sheet - why: read the philosophy behind ctx - memory: bridge Claude Code auto memory into .context/ - prompt: manage reusable prompt templates - decisions: manage DECISIONS.md file - learnings: manage LEARNINGS.md file - deps: show package dependency graph - journal: analyze exported AI sessions - reindex: regenerate indices for DECISIONS.md and LEARNINGS.md Also includes: - splitArgs helper for quoted argument parsing - Activation event for chat participant - LICENSE file (Apache-2.0) - 830+ lines of new tests (53 -> 131 total) - Windows shell support in execFile calls Signed-off-by: ersan bilik <ersanbilik@gmail.com>
Contributor
Author
|
Superseded by consolidated VS Code extension PR with full CLI parity (45 commands + Command Palette). |
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.
Summary
Fixes #32 — Expands the VS Code chat participant with 12 new command handlers, bringing total coverage from 16 to 28 commands.
New Commands (12)
/changeshandleChanges/confighandleConfig/doctorhandleDoctor/guidehandleGuide/whyhandleWhy/memoryhandleMemory/prompthandlePrompt/decisionshandleDecisions/learningshandleLearnings/depshandleDeps/journalhandleJournal/reindexhandleReindexOther Changes
splitArgshelper — Parses quoted arguments ("multi word arg") correctly for commands likeadd task "my task title"onChatParticipant:ctx.participantto ensure the extension activates when users invoke the chat participantexecFilecalls now useshell: trueon Windows for proper PATH resolutionFiles Changed
editors/vscode/src/extension.tseditors/vscode/src/extension.test.tseditors/vscode/package.jsoneditors/vscode/README.mdeditors/vscode/LICENSETesting