feat(vscode): land skill-backed chat participant (45 commands) - #1
Open
bilersan wants to merge 1 commit into
Open
feat(vscode): land skill-backed chat participant (45 commands)#1bilersan wants to merge 1 commit into
bilersan wants to merge 1 commit into
Conversation
Replace the shipped extension.ts (a thin CLI wrapper exposing 31 slash- commands) with the completed implementation that adds the ctx skill/workflow layer as chat slash-commands (/brainstorm, /implement, /reflect, /remember, /next, /spec, /audit, /blog, /changelog, /consolidate, /map, /verify, /worktree, /wrapup, /check-links), dedicated /decisions and /learnings, and two new subsystems: a reminder status bar and violation guardrails. The tracked test suite already targeted this API (handleComplete, handleTasks, new runCtx behavior), but the implementation was stranded as an untracked file (extension_pr.ts) -- main shipped with 28/53 vscode tests failing. This lands the missing half: vitest is now 53/53. package.json chatParticipants commands are reconciled to exactly the 45 the code dispatches (was 31): +21 new, 4 renamed to plurals (change->changes, dep->deps, task->tasks, permission->permissions). Drops /loop and /diag as slash-commands; folds /site into /journal and /doctor into inline handling. Verified: esbuild build clean, tsc typecheck clean, vitest 53/53, command parity (package.json <-> dispatch) exact. Go suite untouched (0 Go files changed). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Signed-off-by: ersan bilik <ersanbilik@gmail.com>
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
Lands the completed VS Code chat-participant implementation that was stranded as an untracked file (
extension_pr.ts), replacing the shipped thin-wrapperextension.ts. Reconcilespackage.jsonto the 45 slash-commands the code actually dispatches, and correctsCHANGELOG.md.Why
The tracked test suite (
extension.test.ts) already targeted the new API (handleComplete,handleTasks, the updatedrunCtxbehavior), but the matching implementation was never committed —mainshipped with 28 / 53 vscode tests failing. This lands the missing half.What changed
extension.ts: thin CLI wrapper (31 slash-commands) → skill-backed participant (45). Adds/brainstorm,/implement,/reflect,/remember,/next,/spec,/audit,/blog,/changelog,/consolidate,/map,/verify,/worktree,/wrapup,/check-links, dedicated/decisions+/learnings, plus a reminder status bar and violation guardrails.package.json:contributes.chatParticipantscommands reconciled to exactly the 45 dispatched (was 31): +21 new, 4 renamed to plurals (change→changes,dep→deps,task→tasks,permission→permissions). Dropped/loopand/diag; folded/siteinto/journaland/doctorinto inline handling.CHANGELOG.md: removed the inaccurate/diagentry; documented the renames, removals, and folds.Verification
main)package.json↔ dispatch): exact, 45 = 45Notes
ActiveMemory/mainhas since diverged (stabilized the wrapper + added eslint/CI). An upstream contribution is tracked separately.🤖 Generated with Claude Code