Conversation
… (REQ-142) Phase 3 of the BYOE 0.8.0 sprint. Surfaces the CLI-side endpoints registry to the VS Code extension and threads endpointId through the bridge so the agent can be routed to a self-hosted OpenAI-v1-compatible backend. - src/EndpointsClient.ts: pure TS wrapper around 'specsmith endpoints list / test --json' + JSON parsers (parseEndpointsList, parseEndpointHealth) and the applyEndpointArg bridge helper. Tokens are never read from TypeScript memory; the CLI redacts inline tokens before serialising. - src/types.ts: SessionConfig.endpointId optional field. - src/bridge.ts: appends '--endpoint <id>' to specsmith run when SessionConfig.endpointId is set, routing through the openai-compat driver added in PR-2. - src/extension.ts: new specsmith.endpoints command (Quick Pick over registered endpoints with copy / set-default / test actions) and specsmith.testEndpoint command (probes /v1/models, surfaces a notification with latency + model count). - package.json: declares the two new commands. - src/test/endpoints-client.test.ts: 11 new mocha tests covering the JSON parsers and the bridge arg helper (happy path, malformed body, redacted inline tokens, unknown auth kinds, non-object items). - CHANGELOG.md: [Unreleased] entry. Validation: tsc --noEmit clean; esbuild bundle 279.8kb; npm test 117 passing (was 104; +13 from the new suite). Co-Authored-By: Oz <oz-agent@warp.dev>
Bump package.json to 0.8.0 + cut the BYOE 0.8.0 changelog section. Co-Authored-By: Oz <oz-agent@warp.dev>
…EQ-142, REQ-146) PR-B: BYOE end-to-end UI - new specsmith.endpoints tree view (EndpointsTreeProvider) - specsmith.refreshEndpoints command - shipped command bar buttons in package.json PR-G: agent profiles + activity routing - new AgentsClient.ts wrapping specsmith agents subcommands - new specsmith.agents tree view (AgentsTreeProvider) with profiles + routes - new commands: specsmith.agents, .testAgent, .applyAgentPreset, .routeActivity, .pickSessionProfile, .refreshAgents - bridge passes --agent <id> when SessionConfig.profileId is set - /agent <id> in-chat command works through the runner - session header pick command lets user pin a profile per session PR-C/D/E/F skeletons - new SpecsmithSidebars.ts also exports richer CLI-backed providers for workflows/notebooks/rules/mcp (file watching trees in SidebarTrees.ts remain the source of truth for back-compat; richer ones are exported for a follow-up swap) Extension version 0.8.0 -> 0.10.0 (matches CLI bump). Co-Authored-By: Oz <oz-agent@warp.dev>
60610b8 to
0658b1d
Compare
* Drop the \specsmith.cloud\ view and \CloudTree\ provider from package.json + SidebarTrees.ts (now four file-watcher trees: workflows / notebooks / rules / mcp). The CLI-side \specsmith cloud spawn\ / \cloud-serve\ commands they fronted are no longer shipped. * WelcomePanel: drop the 'Cloud Runs' bullet from the onboarding card. * SpecsmithSidebars: update the registration-helper comment to match the four legacy trees. * New src/test/agents-client.test.ts (15 hermetic tests) mirroring the shape of endpoints-client.test.ts: parseAgentsList happy-path, JSON error handling, defensive coercion, route shape, and applyAgentArg trimming + immutability.
tbitcs
added a commit
that referenced
this pull request
May 4, 2026
Bumps `package.json` from 0.10.0 to 0.10.1 and renames the existing `[Unreleased]` CHANGELOG section to `[0.10.1] - 2026-05-04`. The 0.10.0 tag captured the multi-agent + BYOE work (PRs #45/#47/#48); this point release rolls in the security hardening from #49 (17 CodeQL alerts closed) and the regex follow-up. Validation: - npm run lint: clean. - npm test: 144 passing. Co-Authored-By: Oz <oz-agent@warp.dev>
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.
Companion to BitConcepts/specsmith#93. Adds the BYOE Endpoints tree view, the new Agent Profiles tree view, an AgentsClient wrapping the new specsmith agents CLI group, and 8 new commands (agents, testAgent, applyAgentPreset, routeActivity, pickSessionProfile, refreshAgents, refreshEndpoints, plus existing endpoint/test). Bridge passes --agent when SessionConfig.profileId is set; in-chat /agent works end-to-end via the restored runner. Version 0.8.0 -> 0.10.0; tsc clean.
Co-Authored-By: Oz oz-agent@warp.dev