feat(web-ui): agent creation studio — codegen, preview, skills, AgentKit & A/B#580
Merged
Conversation
zakahan
approved these changes
Jun 4, 2026
cf1eedf to
6031905
Compare
|
|
||
| function persist(list: RemoteConnection[]): void { | ||
| try { | ||
| localStorage.setItem(STORAGE_KEY, JSON.stringify(list)); |
87dea76 to
db56e6b
Compare
…w, skills, AgentKit & A/B Web UI "添加 Agent" flow and supporting backend: - Create modes: 智能模式 (conversational, backed by the dogfooding agent_builder that emits an agent-config JSON), 自定义 (scrollable form + scroll-spy rail: model config, built-in/custom/MCP tools, STM/LTM/KB backends, tracing exporters, sub-agents, Skill Hub picker), 从模板新建, 工作流. - Codegen: shared config -> runnable VeADK project (agent.py/__init__.py/ .env.example/requirements.txt) via create/codegen.ts + veadkCatalog.ts; both 智能/自定义 modes converge on it. Validated against the live runtime. - ProjectPreview: file tree + syntax-highlighted editor, ZIP export, and agent-structure YAML export/import. - Skill Hub integration (search + download + unzip into the project). - A/B compare: two builder apps (dogfooding + dogfooding_b) with selectable models, side-by-side preview, adopt-one. - Sidebar IA: single "添加 Agent" chooser (AgentKit / 从 0 快速创建); breadcrumb nav; remote AgentKit connections; agent search. - examples/dogfooding[_b] agent-builder examples; vite /skillhub proxy.
db56e6b to
f314bc1
Compare
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.
Overview
Adds an agent creation studio to the web UI ("添加 Agent" flow) plus the supporting backend, on top of the existing chat/SSO/upload UI.
Create modes
dogfoodingagent that emits an agent-config JSON (not raw code).Codegen (the core)
frontend/src/create/codegen.ts+veadkCatalog.ts: turn a shared config (AgentDraft) into a runnable VeADK project (agent.py,__init__.py,.env.example,requirements.txt,README.md). Both 智能 / 自定义 modes converge on the same generator.Project preview & exchange
ProjectPreview: file tree + syntax-highlighted editor, ZIP export, and agent-structure YAML export / import (import pre-fills the custom wizard).Skills
skills.volces.com): search → download → unzip the selected skill into the generated project. Dev proxy via vite/skillhub.A/B compare
dogfooding+dogfooding_b) with selectable models (AGENT_BUILDER_MODEL_A/B); side-by-side preview; adopt one to continue editing.Sidebar / navigation
Backend / examples
examples/dogfooding+examples/dogfooding_bagent-builder examples.All local agent discovery follows ADK rules (
/list-appsviaget_fast_api_app(agents_dir=...)).🤖 Generated with Claude Code