-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagents.yaml
More file actions
73 lines (66 loc) · 1.74 KB
/
Copy pathagents.yaml
File metadata and controls
73 lines (66 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
version: "1"
providers:
bailian:
api_key: ${DASHSCOPE_API_KEY}
workspace_id: ${BAILIAN_WORKSPACE_ID}
defaults:
provider: bailian
environments:
dev:
description: "Development environment with full network access"
config:
type: cloud
networking:
type: unrestricted
metadata:
team: platform
staging:
description: "Staging environment with package preloads"
config:
type: cloud
networking:
type: unrestricted
packages:
apt: [git, curl]
pip: [requests]
metadata:
team: platform
skills:
code-review:
source: ./skills/code-review/
description: "Structured code review with severity levels"
agents:
researcher:
description: "Gathers information from the codebase and web"
model: qwen3.7-max
instructions: |
You are a research agent. Search the codebase and use the bailian_web_search MCP
tool to gather relevant information, then summarize with sources.
environment: dev
tools:
builtin: [bash, read, glob, grep]
mcp:
- type: mcp_toolkit
mcpServerName: WebSearch
defaultConfig:
enabled: false
configs:
- name: bailian_web_search
enabled: true
mcp_servers:
- type: official
name: WebSearch
metadata:
role: research
reviewer:
description: "Reviews code for quality and correctness"
model: qwen3.7-max
instructions: |
You are a code reviewer. Analyze code changes for correctness, security,
and performance. Apply the code-review skill to structure findings.
environment: staging
tools:
builtin: [read, glob, grep]
skills: [code-review]
metadata:
role: review