Releases: egdev6/agent-teams-docs
Agent Teams v1.1.3
[1.1.3] - 2026-03-19
Patch Changes
-
be7ccbf: ### Engram integration updated to support v1.9.9+
- Agents now call
mem_session_endat the end of every session to ensure memories are properly consolidated before closing — this applies to all roles: worker, orchestrator, router and aggregator. - When a recall result appears truncated, agents are now instructed to follow up with
mem_get_observationto retrieve the full entry. - Setup now detects the installed Engram version and warns if it's below the minimum required (1.9.9), with a direct link to download the latest release.
Agent Manager and Team Manager now show local-only entries
Previously, agents and teams that existed on disk (in
.agent-teams/agents/and.agent-teams/teams/) but hadn't been registered in the catalog were invisible in the UI until you explicitly ran a catalog capture. Now they appear immediately — no capture step needed.- "Local only" badge: any agent or team that lives on disk but is not yet in the catalog is tagged with an amber Local only badge directly on its card, so you always know which entries still need to be saved to the catalog.
- The existing "Unregistered files detected" alert on the dashboard continues to work as before — clicking Import to catalog removes the badge and registers the entries.
- No behaviour changes for entries already in the catalog.
Dashboard UI/UX improvements
The dashboard has been tidied up so it feels less cluttered, especially once teams, agents, and pending changes start accumulating.
- Collapsible notification details: the "Unregistered files detected" and sync status alerts now show only a summary line by default. Tap See details to expand the full list of files or pending changes — the noise is gone until you actually need it.
- Compact stats row: the six status indicators (Profile, Team, Engram, Skills, Teams, Agents) now render as a tight single-line row on smaller panels instead of wrapping into a two-column grid that pushed everything else down.
- Quick actions menu: the Quick Actions card has been replaced by a small ☰ menu button sitting on the right side of the Dashboard header. All the same shortcuts are one click away without occupying a full card on the page.
- @agent-teams/core@1.1.3
- @agent-teams/webviews@1.1.3
- Agents now call
Agent Teams v1.1.2
[1.1.2] - 2026-03-18
Patch Changes
-
8c38b37: ### Fix: editing an agent now loads all its settings correctly
Opening an agent for editing from the Manage Agents page now correctly pre-fills every field — role, domain, intents, skills, context packs, targets, scope, and workflow steps. Previously those would appear empty or reset to defaults, forcing users to re-enter their configuration from scratch.
This also covers agents that were imported from the registry rather than created locally: the wizard now loads their data from the catalog and, on save, creates a local spec file automatically so edits are persisted.
Fix: agent cards in Manage Agents now show description, intents, and teams
Agent cards were showing only the agent name and role. Description, intent tags, and team membership badges are now visible immediately when the page loads, without needing to open the agent first.
The dashboard footer also now shows the actual installed extension version instead of a hardcoded placeholder.
Fix: workflow steps are now editable for all agent types
The "Workflow Steps" editor in the wizard was only shown for orchestrator and router agents. Worker agents use workflow steps too (they are included in the generated prompt), but the section was hidden. All roles can now view and edit their workflow steps.
Permissions and tools stay in sync automatically
The wizard now keeps permissions and tools consistent as you configure an agent:
- Enabling can edit files or can create files automatically adds the
edit/editFilestool. Disabling both removes it. - The Delegates to field is now greyed out when
can_delegateis off, making it clear it has no effect. - Workers and routers have their key permissions locked on by default since removing them would break core functionality.
Improved empty state for the Skills section
When an agent has no skills assigned yet, both the Create and Edit agent pages now show a proper empty state with an icon, a short description, and a Browse registry button, instead of a plain text hint.
MCP Servers section in the agent wizard
A new collapsible MCP Servers section in the Workflow & Tools step lets you declare which MCP servers an agent depends on (id, command, args, and env vars). On sync, those servers are automatically merged into your workspace MCP config file and listed in the generated agent prompt.
Smaller VSIX and faster webview load times
- The packaged extension is lighter: source maps are only generated during development, and pre-compressed asset files that VS Code cannot serve are no longer produced.
- The webview now splits its JavaScript into separate vendor chunks (React, Radix UI, icons), so the browser can cache dependencies independently and pages load faster after the first visit.
Fix: agent version is preserved when editing
Saving an edited agent no longer resets the
versionfield to1.0.0. The wizard now loads the existing version from the spec and writes it back unchanged.Fix: deleting an agent now waits for confirmation before navigating
Clicking Delete Agent previously sent the delete request and immediately navigated back to the agent list, so if the user cancelled the confirmation dialog they were left on the list with no feedback. The UI now waits for the extension to confirm (or cancel) before navigating, and shows any deletion error inline.
Fix: Save button explains why it is disabled
When the Save Changes (or Create Agent) button is greyed out, hovering it now shows a concise tooltip explaining which field needs to be filled — e.g. "Add at least one workflow step". This is especially noticeable when editing agents imported from the registry that arrive without workflow steps.
Fix: editing an imported agent pre-fills default tools when none are declared
Opening an agent imported from the registry that has no
toolsentries now pre-populates the Tools section with the role-appropriate defaults (the same ones the Create wizard would add), so users start from a sensible baseline instead of a blank list.Fix: invalid MCP server env JSON is caught before saving
Entering malformed JSON in the Env field of an MCP server entry and clicking Save used to silently discard the value. It now shows an inline error and blocks the save until the JSON is corrected.
- Enabling can edit files or can create files automatically adds the
-
Updated dependencies [8c38b37]
- @agent-teams/webviews@1.1.2
- @agent-teams/core@1.1.2
Agent Teams v1.1.1
[1.1.1] - 2026-03-16
Patch Changes
-
dec9bc1: ### Engram autonomous mode for worker agents
Adds a new
engram.mode: autonomousoption for worker agents. In this mode the worker can be dispatched directly — without a router or orchestrator — and handles its own task lifecycle: it recalls task context from Engram at session start (supporting both[Handoff:{taskId}]and[Parallel:{taskId}]prefixes), persists its result, and callscomplete_subtaskto notify the aggregator when done.- Schema & types: new
engramproperty (mode: default | autonomous) added to the agent spec schema and TypeScript types. - Memory instructions:
buildMemorySectionnow accepts theengramModeand generates expanded recall/dispatch instructions when in autonomous mode. - Team manager: autonomous workers automatically receive the
complete-subtasktool and get a dedicated task-context block injected into their prompt. - Extension:
engramfield is correctly read and written in the create-agent and save-agent flows, clearing the field when unset during edits. - Wizard UI: a new "Engram — Autonomous task context" checkbox appears in the Rules step for worker agents when Engram is configured, wired through both the Create Agent and Edit Agent pages.
MCP servers per agent
Adds an optional
mcpServersarray to agent specs. Declared servers are merged (byid, never overwriting) into the project MCP config files on every team sync:.vscode/mcp.json(serverskey) for Copilot targets and.mcp.jsonat project root (mcpServerskey) for Claude targets.- Schema & types: new
mcpServersproperty (id,command,args?,env?) added toagent.schema.jsonandAgentSpecTypeScript types (AgentMcpServerinterface). - Team manager:
syncMcpServers()merges agent-declared servers into the target MCP config file; an## MCP Serverstable is also appended to the generated agent prompt. - Extension:
mcpServersfield is read and written in the create-agent and save-agent flows, clearing the field when unset during edits. - Wizard UI: a collapsible "MCP Servers" section in the Workflow & Tools step lets users add/remove servers with id, command, args (one per line) and env (JSON object) fields, wired through both the Create Agent and Edit Agent pages.
- Schema & types: new
-
Updated dependencies [dec9bc1]
- @agent-teams/webviews@1.1.1
- @agent-teams/core@1.1.1
Agent Teams v1.1.0
[1.1.0] - 2026-03-13
Minor Changes
-
fd81a16: ## Parallel dispatch, aggregator role, and LM tools
New features
Parallel dispatch infrastructure
- Added
agent-teams-dispatch-parallelLM tool — fans out a task to multiple orchestrators simultaneously, each in its own chat session - Added
agent-teams-complete-subtaskLM tool — called by worker/orchestrator agents to signal subtask completion after persisting results to Engram - Added
TaskCoordinator— file-system observer that watches for subtask completions and auto-opens the aggregator chat once all parallel subtasks finish - Added
agent-teams-handoffLM tool — opens a new chat targeted at a specific orchestrator with full task context passed via Engram
MCP dispatch server
- Added
packages/cli/src/mcp/dispatch-server.ts— stdio MCP server that exposes dispatch tools for use outside VS Code - Added
mcp:startCLI command to start the MCP server - Extension packaging now writes
dist/mcp/package.jsonwithtype: moduleso the bundled MCP server runs correctly when started by VS Code from the extension package
New
aggregatorrole- Added
aggregatoras a first-class agent role in@agent-teams/core - Aggregator agents receive a structured Engram recall pattern to load all subtask results, detect file-path conflicts across orchestrators, and produce a unified outcome
Improvements
Memory instructions overhaul
- Orchestrator: detailed mandatory Engram key patterns for both single handoff (
handoff:{taskId}) and parallel dispatch (task:{taskId}:subtask:{agentId}) - Router: structured routing decision logging (
routing:patterns) + decision guide for choosing betweenagent-teams-handoffandagent-teams-dispatch-parallel - Worker: mandatory recall/remember patterns with explicit trigger conditions
- All roles: instructions are now marked as mandatory to prevent agents from skipping persistence steps
Claude target generation
- Claude-target agents now receive Engram + MCP delegation instructions tailored to Claude Code instead of Copilot LM tool guidance
- Root
AGENTS.mdnow includes a Claude-specificDelegation via Engramprotocol and lists synced Claude agents - Codex keeps the generic root context behavior while Claude gets target-specific coordination guidance
- When
claude_codeandcodexare both enabled, the shared rootAGENTS.mdnow preserves the Claude protocol instead of being overwritten by an empty Codex context file
Agent wizard — role-aware steps
- Router role now hides the Scope and Skills steps (not applicable to routers)
OutputContextStep: max-items and never-include fields hidden for router roleRulesStep: permissions and constraints sections hidden for router roleIdentityStep: subdomain field hidden for router and orchestrator roles
Agent spec format compatibility
- Dashboard and team manager now support both legacy (
_metadata.id/_metadata.role) and current (rootid/role) spec formats when importing, listing, and validating agent specs
teamManager
- Added VS Code built-in tool alias normalization (
codebase→search/codebase,editFiles→edit/editFiles) to survive VS Code tool renames - Added
delegates_toreference validation: warns when a Copilot-target agent delegates to an agent ID that does not exist for that target - Root build task now uses the correct extension package filter (
agent-teams) soDev: Build Onceactually compiles the extension
Validation
- Verified generated Claude sync output (
AGENTS.md+.claude/agents/*) contains the new Engram delegation protocol - Verified the bundled MCP server responds to
dispatch_taskandcomplete_subtaskafter the module packaging fix - Deferred full end-to-end Claude release validation to the release cycle
CLI
init-agent- Router agents now include
agent-teams-handoffas a default frontmatter tool - Added default delegation instruction to router system prompts
- Added
Patch Changes
- Updated dependencies [fd81a16]
- @agent-teams/webviews@1.1.0
- @agent-teams/core@1.1.0
Agent Teams v1.0.9
[1.0.9] - 2026-03-12
Patch Changes
- 4eae697: Fix error in rules when import agent from yml
Detects not sincronized team/agent in the project show notification to import
Fix catalog agents list in manage agents
Add total teams in catalog stats in dashboard
Fix total agents in catalog stats in dashboard
Add version notes to releases page
Agents roles empty list in tabs - Updated dependencies [4eae697]
- @agent-teams/webviews@1.0.9
- @agent-teams/core@1.0.9
Agent Teams v1.0.8
Merge branch 'main' of https://github.com/egdev6/agent-teams-docs
Agent Teams v1.0.7
fix: image heights normalized
Agent Teams v1.0.6
Update agent creation and editing screenshots
Agent Teams v1.0.5
docs: sync CHANGELOG for v1.0.5 [skip ci]
Agent Teams v1.0.4
docs: sync CHANGELOG for v1.0.3 [skip ci]