agent-army-vscode
v0.0.5
Published
Manage git worktrees from VS Code
Downloads
6
Readme
Agent Forge VS Code Extension
VS Code extension for the Agent Orchestrator system. Provides a dashboard and tree views for managing workers.
Features
- Dashboard Panel: Overview of all workers and recent events
- Workers Tree View: File changes organized by worker with git status
- Worktrees Tree View: All git worktrees in the project
Development
After making changes to the extension:
# Build, package, and install to VS Code
pnpm deploy
# Or from the repo root:
pnpm deploy --filter=@agent-army/vscodeThen reload VS Code (Cmd+Shift+P → "Developer: Reload Window") to pick up the changes.
Individual Commands
pnpm build # Compile TypeScript
pnpm package # Build + create .vsix file
pnpm install-ext # Install .vsix to VS Code
pnpm deploy # All of the aboveArchitecture
extension.ts- Entry point, registers commands and viewsdashboardPanel.ts- Webview panel with HTML dashboardworkersView.ts- Tree view for workers and their file changesworktreesView.ts- Tree view for git worktreesutils.ts- Shared utilities (git operations, file detection)types.ts- TypeScript type definitions
