features/llm-understandings - VS Code extension, REST API, core value types and refactors - #79
Merged
Merged
Conversation
- Implemented a new React component for the messages webview that displays messages with priority and allows marking them as processed. - Created shared protocol types for communication between the extension host and webview. - Added a VSCode API wrapper for acquiring the VSCode API in the webview. - Configured TypeScript settings for the webview project. feat: implement SignalR hub for project state changes - Added ProjectStateHub to broadcast project state changes to connected clients. - Implemented ProjectStateRelayService to forward project state notifications to SignalR clients. feat: create API routes for agents, messages, and decisions - Developed RESTful API routes for managing agents, messages, and decisions within a project. - Implemented logic for listing, starting, stopping agents, processing messages, and resolving decisions. chore: setup project configuration and launch settings - Created launch settings for development environment. - Added project configuration files for managing workspace settings. docs: add Ubiquitous Language and VS Code Extension publishing guide - Documented the ubiquitous language used in the project for clarity and consistency. - Provided a guide for building and publishing the VS Code extension, including prerequisites and steps for sideloading and publishing to the Marketplace.
auleewilliams
approved these changes
May 14, 2026
- Introduced ActiveWorkspaceHolder to manage the active project's workspace paths. - Updated ProjectDetail model to remove the CodebasePath property. - Modified PromptEnhancerService to derive codebase path from workspace paths. - Refactored WorkspacePaths to resolve paths based on the active project. - Adjusted App.xaml.cs to activate the last-used project before service configuration. - Simplified CodebaseViewModel by removing unnecessary properties and methods related to codebase initialization. - Updated ProjectSettingsViewModel to remove codebase path handling. - Enhanced NewProjectDialog to clarify codebase directory input. - Removed unused UI elements and bindings related to codebase initialization in CodebasePage. - Added CLAUDE.md for developer guidance and project architecture overview. - Implemented unit tests for ActiveWorkspaceHolder to ensure correct behavior. - Created GlobalPaths to manage global application data paths.
…Dev-Studio/ai-dev into features/llm-understandings
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.
Description
New Feature: VS Code Extension (
ai-dev-vscode)BackendProcessManagerto launch and manage the backend process from within VS Code.StudioApiClient(REST) andStudioSignalRClient(real-time) for communicating with the backend API.WorkspaceDetectorto identify the active project workspace from within the editor.scripts/bundle-backend.mjs; includes esbuild config and full test suite.New Feature: REST API & SignalR Hub (
ai-dev.api)ai-dev.apiproject with Minimal API routes for Agents, Messages, and Decisions (list, start/stop, process, resolve).ProjectStateHub(SignalR) andProjectStateRelayServiceto broadcast real-time project state changes to connected clients.Program.cswith CORS, SignalR, and route registration.Core: Value Types, XML Docs, and Refactors (
ai-dev.core)SessionStatus,SessionSizeRating,TaskClassification,TestOutcome,AgentStatus,MessageItem,DecisionItem,AgentActivityItem,AgentFailure,AgentFailover.JsonConverterand full unit test coverage.AgentInfoto an immutable record; updated all dependent services and view models.[LoggerMessage]source-generated logging across core services; replacedstring.Formatlog calls.Converters.csin WinUI into individual converter files.Docs & Tooling
UBIQUITOUS_LANGUAGE.mdand VS Code extension publishing guide todocs/..vscode/launch.json,tasks.json, andsettings.jsonfor local dev workflow.nuget.configandDirectory.Build.propsfor solution-wide build configuration.Files changed: 250 | Insertions: +16443 | Deletions: -1211