Skip to content

Commit 60f7b6a

Browse files
committed
chore: sync frontend changes for runtime 0.0.33
1 parent 9c0b8be commit 60f7b6a

57 files changed

Lines changed: 484 additions & 173 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
- 'mcp-server/**'
1111
- 'packages/**'
1212
- 'resources/runtime/**'
13+
- '.runtime-download/**'
1314
- 'runtime.lock.json'
1415
- 'test/**'
1516
- '.github/workflows/**'
@@ -29,6 +30,7 @@ on:
2930
- 'mcp-server/**'
3031
- 'packages/**'
3132
- 'resources/runtime/**'
33+
- '.runtime-download/**'
3234
- 'runtime.lock.json'
3335
- 'test/**'
3436
- '.github/workflows/**'
@@ -49,6 +51,9 @@ jobs:
4951
- name: Checkout
5052
uses: actions/checkout@v6
5153

54+
- name: Guard runtime artifacts
55+
run: node ./scripts/ci/forbid-runtime-artifacts.cjs
56+
5257
- name: Setup pnpm
5358
uses: pnpm/action-setup@v6
5459
with:

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ out/
99
release/
1010
coverage/
1111

12+
# Runtime release artifacts are downloaded during dev/release builds.
13+
# Keep only the placeholder directory in git.
14+
.runtime-download/
15+
resources/runtime/*
16+
!resources/runtime/.gitkeep
17+
1218
# IDE
1319
.vscode/
1420
.idea/
-27.4 MB
Binary file not shown.

.runtime-download/runtime/COMMIT_SHA

Lines changed: 0 additions & 1 deletion
This file was deleted.

.runtime-download/runtime/VERSION

Lines changed: 0 additions & 1 deletion
This file was deleted.
-82.2 MB
Binary file not shown.

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Key capabilities:
1616
- **MCP integration** — built-in mcp-server for external tools and agent plugins
1717
- **Post-compact context recovery** — restores team-management instructions after context compaction
1818
- **Notification system** — alerts on task completion, agent attention needed, errors
19-
- **Zero-setup onboarding** — built-in Claude Code installation and authentication
19+
- **Zero-setup onboarding** — built-in runtime detection and provider authentication for Claude, Codex, and OpenCode
2020

2121
100% free, open source, and local-first. The app uses available Claude/Codex/OpenCode provider access instead of forcing a single app-level API-key setup.
2222

docs/team-management/debugging-agent-teams.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -196,9 +196,9 @@ Before changing launch or runtime logic:
196196
Recommended verification:
197197

198198
```bash
199-
pnpm vitest run test/main/services/team/TeamProvisioningService.test.ts
200-
pnpm vitest run test/main/services/team/TeamAgentLaunchMatrix.safe-e2e.test.ts
201-
pnpm typecheck --pretty false
199+
pnpm test -- test/main/services/team/TeamProvisioningService.test.ts
200+
pnpm test -- test/main/services/team/TeamAgentLaunchMatrix.safe-e2e.test.ts
201+
pnpm typecheck
202202
git diff --check
203203
```
204204

landing/product-docs/.vitepress/config.ts

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ const rootGuide: DefaultTheme.SidebarItem[] = [
3939
text: "Start",
4040
items: [
4141
{ text: "Quickstart", link: "/guide/quickstart" },
42-
{ text: "Installation", link: "/guide/installation" },
43-
{ text: "Create a team", link: "/guide/create-team" }
42+
{ text: "Installation", link: "/guide/installation" }
4443
]
4544
},
4645
{
@@ -49,9 +48,15 @@ const rootGuide: DefaultTheme.SidebarItem[] = [
4948
{ text: "Runtime setup", link: "/guide/runtime-setup" },
5049
{ text: "Agent workflow", link: "/guide/agent-workflow" },
5150
{ text: "MCP integration", link: "/guide/mcp-integration" },
51+
{ text: "Code review", link: "/guide/code-review" }
52+
]
53+
},
54+
{
55+
text: "Team Management",
56+
items: [
57+
{ text: "Create a team", link: "/guide/create-team" },
5258
{ text: "Team brief examples", link: "/guide/team-brief-examples" },
5359
{ text: "Git and worktree strategy", link: "/guide/git-worktree-strategy" },
54-
{ text: "Code review", link: "/guide/code-review" },
5560
{ text: "Troubleshooting", link: "/guide/troubleshooting" }
5661
]
5762
},
@@ -77,8 +82,7 @@ const ruGuide: DefaultTheme.SidebarItem[] = [
7782
text: "Старт",
7883
items: [
7984
{ text: "Быстрый старт", link: "/ru/guide/quickstart" },
80-
{ text: "Установка", link: "/ru/guide/installation" },
81-
{ text: "Создание команды", link: "/ru/guide/create-team" }
85+
{ text: "Установка", link: "/ru/guide/installation" }
8286
]
8387
},
8488
{
@@ -87,9 +91,15 @@ const ruGuide: DefaultTheme.SidebarItem[] = [
8791
{ text: "Настройка рантайма", link: "/ru/guide/runtime-setup" },
8892
{ text: "Работа агентов", link: "/ru/guide/agent-workflow" },
8993
{ text: "MCP integration", link: "/ru/guide/mcp-integration" },
94+
{ text: "Код-ревью", link: "/ru/guide/code-review" }
95+
]
96+
},
97+
{
98+
text: "Управление командами",
99+
items: [
100+
{ text: "Создание команды", link: "/ru/guide/create-team" },
90101
{ text: "Team brief examples", link: "/ru/guide/team-brief-examples" },
91102
{ text: "Git and worktree strategy", link: "/ru/guide/git-worktree-strategy" },
92-
{ text: "Код-ревью", link: "/ru/guide/code-review" },
93103
{ text: "Диагностика", link: "/ru/guide/troubleshooting" }
94104
]
95105
},

landing/product-docs/developers/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Developers - Agent Teams Docs
2+
title: Developers Agent Teams Docs
33
description: Contributor and developer entry point for Agent Teams architecture, guardrails, debugging, and MCP extension paths.
44
---
55

0 commit comments

Comments
 (0)