chore: release 0.6.0 (#1723)
* chore: release 0.6.0 * test(agent-codex): bump version pin to 0.6.0 --------- Co-authored-by: Prateek <karnalprateek@gmail.com>
This commit is contained in:
parent
a2afccc69a
commit
b9b20e19d1
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"@aoagents/ao-core": minor
|
||||
---
|
||||
|
||||
Add optional per-project `env` block to `ProjectConfig` that forwards string-to-string env vars into worker session runtimes (e.g. pin `GH_TOKEN` per project). AO-internal vars (`AO_SESSION`, `AO_PROJECT_ID`, etc.) always take precedence.
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"@aoagents/ao-cli": patch
|
||||
---
|
||||
|
||||
Fix dashboard 404 after adding a project from the "AO is already running" menu. The CLI now notifies the running daemon to reload its cached config so the new project's page is reachable immediately.
|
||||
|
|
@ -1,5 +1,12 @@
|
|||
# @aoagents/ao
|
||||
|
||||
## 0.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [0f539a3]
|
||||
- @aoagents/ao-cli@0.6.0
|
||||
|
||||
## 0.5.0
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@aoagents/ao",
|
||||
"version": "0.5.0",
|
||||
"version": "0.6.0",
|
||||
"description": "Orchestrate parallel AI coding agents — global CLI wrapper",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,41 @@
|
|||
# @aoagents/ao-cli
|
||||
|
||||
## 0.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 0f539a3: Fix dashboard 404 after adding a project from the "AO is already running" menu. The CLI now notifies the running daemon to reload its cached config so the new project's page is reachable immediately.
|
||||
- Updated dependencies
|
||||
- Updated dependencies
|
||||
- Updated dependencies [40aeb78]
|
||||
- Updated dependencies
|
||||
- Updated dependencies
|
||||
- Updated dependencies
|
||||
- Updated dependencies
|
||||
- @aoagents/ao-core@0.6.0
|
||||
- @aoagents/ao-web@0.6.0
|
||||
- @aoagents/ao-plugin-runtime-tmux@0.6.0
|
||||
- @aoagents/ao-plugin-agent-aider@0.6.0
|
||||
- @aoagents/ao-plugin-agent-claude-code@0.6.0
|
||||
- @aoagents/ao-plugin-agent-codex@0.6.0
|
||||
- @aoagents/ao-plugin-agent-cursor@0.1.4
|
||||
- @aoagents/ao-plugin-agent-kimicode@0.1.3
|
||||
- @aoagents/ao-plugin-agent-opencode@0.6.0
|
||||
- @aoagents/ao-plugin-notifier-composio@0.6.0
|
||||
- @aoagents/ao-plugin-notifier-desktop@0.6.0
|
||||
- @aoagents/ao-plugin-notifier-discord@0.2.9
|
||||
- @aoagents/ao-plugin-notifier-openclaw@0.2.9
|
||||
- @aoagents/ao-plugin-notifier-slack@0.6.0
|
||||
- @aoagents/ao-plugin-notifier-webhook@0.6.0
|
||||
- @aoagents/ao-plugin-runtime-process@0.6.0
|
||||
- @aoagents/ao-plugin-scm-github@0.6.0
|
||||
- @aoagents/ao-plugin-terminal-iterm2@0.6.0
|
||||
- @aoagents/ao-plugin-terminal-web@0.6.0
|
||||
- @aoagents/ao-plugin-tracker-github@0.6.0
|
||||
- @aoagents/ao-plugin-tracker-linear@0.6.0
|
||||
- @aoagents/ao-plugin-workspace-clone@0.6.0
|
||||
- @aoagents/ao-plugin-workspace-worktree@0.6.0
|
||||
|
||||
## 0.5.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@aoagents/ao-cli",
|
||||
"version": "0.5.0",
|
||||
"version": "0.6.0",
|
||||
"description": "CLI for agent-orchestrator — the `ao` command",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,17 @@
|
|||
# @aoagents/ao-core
|
||||
|
||||
## 0.6.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- Wire activity events into `lifecycle-manager` failure paths so failures surface as activity entries for downstream consumers (#1620).
|
||||
- 40aeb78: Add optional per-project `env` block to `ProjectConfig` that forwards string-to-string env vars into worker session runtimes (e.g. pin `GH_TOKEN` per project). AO-internal vars (`AO_SESSION`, `AO_PROJECT_ID`, etc.) always take precedence.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Disable the tmux status bar in the runtime-tmux plugin and clean up dead code in core (#1711).
|
||||
- Disable tmux status bar at session creation (#1683). The change touched dead code; the actual user-visible fix landed in #1711.
|
||||
|
||||
## 0.5.0
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@aoagents/ao-core",
|
||||
"version": "0.5.0",
|
||||
"version": "0.6.0",
|
||||
"description": "Core library — types, config, session manager, lifecycle manager, event bus",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,15 @@
|
|||
# @aoagents/ao-plugin-agent-aider
|
||||
|
||||
## 0.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- Updated dependencies [40aeb78]
|
||||
- Updated dependencies
|
||||
- Updated dependencies
|
||||
- @aoagents/ao-core@0.6.0
|
||||
|
||||
## 0.5.0
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@aoagents/ao-plugin-agent-aider",
|
||||
"version": "0.5.0",
|
||||
"version": "0.6.0",
|
||||
"description": "Agent plugin: Aider",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,15 @@
|
|||
# @aoagents/ao-plugin-agent-claude-code
|
||||
|
||||
## 0.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- Updated dependencies [40aeb78]
|
||||
- Updated dependencies
|
||||
- Updated dependencies
|
||||
- @aoagents/ao-core@0.6.0
|
||||
|
||||
## 0.5.0
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@aoagents/ao-plugin-agent-claude-code",
|
||||
"version": "0.5.0",
|
||||
"version": "0.6.0",
|
||||
"description": "Agent plugin: Claude Code",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,15 @@
|
|||
# @aoagents/ao-plugin-agent-codex
|
||||
|
||||
## 0.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- Updated dependencies [40aeb78]
|
||||
- Updated dependencies
|
||||
- Updated dependencies
|
||||
- @aoagents/ao-core@0.6.0
|
||||
|
||||
## 0.5.0
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@aoagents/ao-plugin-agent-codex",
|
||||
"version": "0.5.0",
|
||||
"version": "0.6.0",
|
||||
"description": "Agent plugin: OpenAI Codex CLI",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -2,10 +2,10 @@ import { describe, expect, it } from "vitest";
|
|||
import { readFileSync } from "node:fs";
|
||||
|
||||
describe("package manifest version", () => {
|
||||
it("is bumped to 0.5.0", () => {
|
||||
it("is bumped to 0.6.0", () => {
|
||||
const packageJsonUrl = new URL("../package.json", import.meta.url);
|
||||
const packageJson = JSON.parse(readFileSync(packageJsonUrl, "utf8")) as { version?: string };
|
||||
|
||||
expect(packageJson.version).toBe("0.5.0");
|
||||
expect(packageJson.version).toBe("0.6.0");
|
||||
});
|
||||
});
|
||||
|
|
|
|||
|
|
@ -1,5 +1,15 @@
|
|||
# @aoagents/ao-plugin-agent-cursor
|
||||
|
||||
## 0.1.4
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- Updated dependencies [40aeb78]
|
||||
- Updated dependencies
|
||||
- Updated dependencies
|
||||
- @aoagents/ao-core@0.6.0
|
||||
|
||||
## 0.1.3
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@aoagents/ao-plugin-agent-cursor",
|
||||
"version": "0.1.3",
|
||||
"version": "0.1.4",
|
||||
"description": "Agent plugin: Cursor CLI",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,15 @@
|
|||
# @aoagents/ao-plugin-agent-kimicode
|
||||
|
||||
## 0.1.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- Updated dependencies [40aeb78]
|
||||
- Updated dependencies
|
||||
- Updated dependencies
|
||||
- @aoagents/ao-core@0.6.0
|
||||
|
||||
## 0.1.2
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@aoagents/ao-plugin-agent-kimicode",
|
||||
"version": "0.1.2",
|
||||
"version": "0.1.3",
|
||||
"description": "Agent plugin: Kimi Code CLI (MoonshotAI)",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,15 @@
|
|||
# @aoagents/ao-plugin-agent-opencode
|
||||
|
||||
## 0.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- Updated dependencies [40aeb78]
|
||||
- Updated dependencies
|
||||
- Updated dependencies
|
||||
- @aoagents/ao-core@0.6.0
|
||||
|
||||
## 0.5.0
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@aoagents/ao-plugin-agent-opencode",
|
||||
"version": "0.5.0",
|
||||
"version": "0.6.0",
|
||||
"description": "Agent plugin: OpenCode",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,15 @@
|
|||
# @aoagents/ao-plugin-notifier-composio
|
||||
|
||||
## 0.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- Updated dependencies [40aeb78]
|
||||
- Updated dependencies
|
||||
- Updated dependencies
|
||||
- @aoagents/ao-core@0.6.0
|
||||
|
||||
## 0.5.0
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@aoagents/ao-plugin-notifier-composio",
|
||||
"version": "0.5.0",
|
||||
"version": "0.6.0",
|
||||
"description": "Notifier plugin: Composio unified notifications (Slack, Discord, email)",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,15 @@
|
|||
# @aoagents/ao-plugin-notifier-desktop
|
||||
|
||||
## 0.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- Updated dependencies [40aeb78]
|
||||
- Updated dependencies
|
||||
- Updated dependencies
|
||||
- @aoagents/ao-core@0.6.0
|
||||
|
||||
## 0.5.0
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@aoagents/ao-plugin-notifier-desktop",
|
||||
"version": "0.5.0",
|
||||
"version": "0.6.0",
|
||||
"description": "Notifier plugin: OS desktop notifications",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,15 @@
|
|||
# @aoagents/ao-plugin-notifier-discord
|
||||
|
||||
## 0.2.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- Updated dependencies [40aeb78]
|
||||
- Updated dependencies
|
||||
- Updated dependencies
|
||||
- @aoagents/ao-core@0.6.0
|
||||
|
||||
## 0.2.8
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@aoagents/ao-plugin-notifier-discord",
|
||||
"version": "0.2.8",
|
||||
"version": "0.2.9",
|
||||
"description": "Notifier plugin: Discord webhook notifications",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,15 @@
|
|||
# @aoagents/ao-plugin-notifier-openclaw
|
||||
|
||||
## 0.2.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- Updated dependencies [40aeb78]
|
||||
- Updated dependencies
|
||||
- Updated dependencies
|
||||
- @aoagents/ao-core@0.6.0
|
||||
|
||||
## 0.2.8
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@aoagents/ao-plugin-notifier-openclaw",
|
||||
"version": "0.2.8",
|
||||
"version": "0.2.9",
|
||||
"description": "Notifier plugin: OpenClaw webhook notifications",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,15 @@
|
|||
# @aoagents/ao-plugin-notifier-slack
|
||||
|
||||
## 0.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- Updated dependencies [40aeb78]
|
||||
- Updated dependencies
|
||||
- Updated dependencies
|
||||
- @aoagents/ao-core@0.6.0
|
||||
|
||||
## 0.5.0
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@aoagents/ao-plugin-notifier-slack",
|
||||
"version": "0.5.0",
|
||||
"version": "0.6.0",
|
||||
"description": "Notifier plugin: Slack",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,15 @@
|
|||
# @aoagents/ao-plugin-notifier-webhook
|
||||
|
||||
## 0.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- Updated dependencies [40aeb78]
|
||||
- Updated dependencies
|
||||
- Updated dependencies
|
||||
- @aoagents/ao-core@0.6.0
|
||||
|
||||
## 0.5.0
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@aoagents/ao-plugin-notifier-webhook",
|
||||
"version": "0.5.0",
|
||||
"version": "0.6.0",
|
||||
"description": "Notifier plugin: generic webhook",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,15 @@
|
|||
# @aoagents/ao-plugin-runtime-process
|
||||
|
||||
## 0.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- Updated dependencies [40aeb78]
|
||||
- Updated dependencies
|
||||
- Updated dependencies
|
||||
- @aoagents/ao-core@0.6.0
|
||||
|
||||
## 0.5.0
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@aoagents/ao-plugin-runtime-process",
|
||||
"version": "0.5.0",
|
||||
"version": "0.6.0",
|
||||
"description": "Runtime plugin: child processes",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,16 @@
|
|||
# @aoagents/ao-plugin-runtime-tmux
|
||||
|
||||
## 0.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Disable the tmux status bar in the runtime-tmux plugin and clean up dead code in core (#1711).
|
||||
- Updated dependencies
|
||||
- Updated dependencies [40aeb78]
|
||||
- Updated dependencies
|
||||
- Updated dependencies
|
||||
- @aoagents/ao-core@0.6.0
|
||||
|
||||
## 0.5.0
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@aoagents/ao-plugin-runtime-tmux",
|
||||
"version": "0.5.0",
|
||||
"version": "0.6.0",
|
||||
"description": "Runtime plugin: tmux sessions",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,15 @@
|
|||
# @aoagents/ao-plugin-scm-github
|
||||
|
||||
## 0.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- Updated dependencies [40aeb78]
|
||||
- Updated dependencies
|
||||
- Updated dependencies
|
||||
- @aoagents/ao-core@0.6.0
|
||||
|
||||
## 0.5.0
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@aoagents/ao-plugin-scm-github",
|
||||
"version": "0.5.0",
|
||||
"version": "0.6.0",
|
||||
"description": "SCM plugin: GitHub (PRs, CI, reviews)",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,15 @@
|
|||
# @aoagents/ao-plugin-scm-gitlab
|
||||
|
||||
## 0.2.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- Updated dependencies [40aeb78]
|
||||
- Updated dependencies
|
||||
- Updated dependencies
|
||||
- @aoagents/ao-core@0.6.0
|
||||
|
||||
## 0.2.8
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@aoagents/ao-plugin-scm-gitlab",
|
||||
"version": "0.2.8",
|
||||
"version": "0.2.9",
|
||||
"description": "SCM plugin: GitLab (MRs, CI, reviews)",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,15 @@
|
|||
# @aoagents/ao-plugin-terminal-iterm2
|
||||
|
||||
## 0.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- Updated dependencies [40aeb78]
|
||||
- Updated dependencies
|
||||
- Updated dependencies
|
||||
- @aoagents/ao-core@0.6.0
|
||||
|
||||
## 0.5.0
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@aoagents/ao-plugin-terminal-iterm2",
|
||||
"version": "0.5.0",
|
||||
"version": "0.6.0",
|
||||
"description": "Terminal plugin: macOS iTerm2",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,15 @@
|
|||
# @aoagents/ao-plugin-terminal-web
|
||||
|
||||
## 0.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- Updated dependencies [40aeb78]
|
||||
- Updated dependencies
|
||||
- Updated dependencies
|
||||
- @aoagents/ao-core@0.6.0
|
||||
|
||||
## 0.5.0
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@aoagents/ao-plugin-terminal-web",
|
||||
"version": "0.5.0",
|
||||
"version": "0.6.0",
|
||||
"description": "Terminal plugin: xterm.js web terminal",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,15 @@
|
|||
# @aoagents/ao-plugin-tracker-github
|
||||
|
||||
## 0.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- Updated dependencies [40aeb78]
|
||||
- Updated dependencies
|
||||
- Updated dependencies
|
||||
- @aoagents/ao-core@0.6.0
|
||||
|
||||
## 0.5.0
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@aoagents/ao-plugin-tracker-github",
|
||||
"version": "0.5.0",
|
||||
"version": "0.6.0",
|
||||
"description": "Tracker plugin: GitHub Issues",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,16 @@
|
|||
# @aoagents/ao-plugin-tracker-gitlab
|
||||
|
||||
## 0.2.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- Updated dependencies [40aeb78]
|
||||
- Updated dependencies
|
||||
- Updated dependencies
|
||||
- @aoagents/ao-core@0.6.0
|
||||
- @aoagents/ao-plugin-scm-gitlab@0.2.9
|
||||
|
||||
## 0.2.8
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@aoagents/ao-plugin-tracker-gitlab",
|
||||
"version": "0.2.8",
|
||||
"version": "0.2.9",
|
||||
"description": "Tracker plugin: GitLab Issues",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,15 @@
|
|||
# @aoagents/ao-plugin-tracker-linear
|
||||
|
||||
## 0.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- Updated dependencies [40aeb78]
|
||||
- Updated dependencies
|
||||
- Updated dependencies
|
||||
- @aoagents/ao-core@0.6.0
|
||||
|
||||
## 0.5.0
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@aoagents/ao-plugin-tracker-linear",
|
||||
"version": "0.5.0",
|
||||
"version": "0.6.0",
|
||||
"description": "Tracker plugin: Linear",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,15 @@
|
|||
# @aoagents/ao-plugin-workspace-clone
|
||||
|
||||
## 0.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- Updated dependencies [40aeb78]
|
||||
- Updated dependencies
|
||||
- Updated dependencies
|
||||
- @aoagents/ao-core@0.6.0
|
||||
|
||||
## 0.5.0
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@aoagents/ao-plugin-workspace-clone",
|
||||
"version": "0.5.0",
|
||||
"version": "0.6.0",
|
||||
"description": "Workspace plugin: git clone",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,15 @@
|
|||
# @aoagents/ao-plugin-workspace-worktree
|
||||
|
||||
## 0.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- Updated dependencies [40aeb78]
|
||||
- Updated dependencies
|
||||
- Updated dependencies
|
||||
- @aoagents/ao-core@0.6.0
|
||||
|
||||
## 0.5.0
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@aoagents/ao-plugin-workspace-worktree",
|
||||
"version": "0.5.0",
|
||||
"version": "0.6.0",
|
||||
"description": "Workspace plugin: git worktrees",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,28 @@
|
|||
# @aoagents/ao-web
|
||||
|
||||
## 0.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Drop `=` prefix from `set-option` invocation in `mux-websocket` so tmux accepts the option without erroring out (#1715).
|
||||
- Bound the PTY re-attach loop with a grace-period counter reset to prevent runaway reconnect attempts (#1640).
|
||||
- Disable xterm scrollback to prevent terminal right-side clipping (#1678).
|
||||
- Updated dependencies
|
||||
- Updated dependencies [40aeb78]
|
||||
- Updated dependencies
|
||||
- Updated dependencies
|
||||
- @aoagents/ao-core@0.6.0
|
||||
- @aoagents/ao-plugin-runtime-tmux@0.6.0
|
||||
- @aoagents/ao-plugin-agent-claude-code@0.6.0
|
||||
- @aoagents/ao-plugin-agent-codex@0.6.0
|
||||
- @aoagents/ao-plugin-agent-cursor@0.1.4
|
||||
- @aoagents/ao-plugin-agent-kimicode@0.1.3
|
||||
- @aoagents/ao-plugin-agent-opencode@0.6.0
|
||||
- @aoagents/ao-plugin-scm-github@0.6.0
|
||||
- @aoagents/ao-plugin-tracker-github@0.6.0
|
||||
- @aoagents/ao-plugin-tracker-linear@0.6.0
|
||||
- @aoagents/ao-plugin-workspace-worktree@0.6.0
|
||||
|
||||
## 0.5.0
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@aoagents/ao-web",
|
||||
"version": "0.5.0",
|
||||
"version": "0.6.0",
|
||||
"description": "Web dashboard for agent-orchestrator",
|
||||
"type": "module",
|
||||
"files": [
|
||||
|
|
|
|||
Loading…
Reference in New Issue