-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathclaude_dataset.json
More file actions
72 lines (72 loc) · 2.65 KB
/
claude_dataset.json
File metadata and controls
72 lines (72 loc) · 2.65 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
{
"scenarios": [
{
"id": "cloud-sql-debug-instance",
"starting_prompt": "Check on my databases in project ${GOOGLE_CLOUD_PROJECT}.",
"conversation_plan": "Ask the agent to list all Cloud SQL instances in the project. Once all instances are listed, if '${CLOUD_SQL_POSTGRES_INSTANCE}' exists, get its details and validate it is RUNNABLE.",
"expected_trajectory": [
"list_instances.js",
"get_instance.js"
],
"expected_skills": [
"cloud-sql-postgres-admin"
],
"env": {
"GOOGLE_CLOUD_PROJECT": "${GOOGLE_CLOUD_PROJECT}"
},
"kind": "tools",
"max_turns": 3
},
{
"id": "cloud-sql-schema-tables-explore",
"starting_prompt": "I want to understand the structure of my database.",
"conversation_plan": "First, ask the agent to list the schemas in the database. After the agent provides the schemas, ask it to list the tables specifically for the 'public' schema.",
"expected_trajectory": [
"list_schemas.js",
"list_tables.js"
],
"expected_skills": [
"cloud-sql-postgres-data"
],
"env": {
"GOOGLE_CLOUD_PROJECT": "${GOOGLE_CLOUD_PROJECT}"
},
"kind": "tools",
"max_turns": 3
},
{
"id": "cloud-sql-performance-check",
"starting_prompt": "Our database performance seems degraded.",
"conversation_plan": "Start by asking the agent to check for any active queries that are running for a long time (e.g., more than 10 seconds). After the agent responds, follow up by asking if there are any database locks that might be causing issues.",
"expected_trajectory": [
"list_active_queries.js",
"list_locks.js"
],
"expected_skills": [
"cloud-sql-postgres-monitor"
],
"env": {
"GOOGLE_CLOUD_PROJECT": "${GOOGLE_CLOUD_PROJECT}"
},
"kind": "tools",
"max_turns": 3
},
{
"id": "cloud-sql-metrics-cpu-investigation",
"starting_prompt": "I'm worried about the database load for ${CLOUD_SQL_POSTGRES_INSTANCE}.",
"conversation_plan": "First, ask the agent to check the CPU utilization for the instance '${CLOUD_SQL_POSTGRES_INSTANCE}' for the last 5 minutes. After the agent provides the CPU data, ask it to check the overall database stats to see connection counts or transaction volume.",
"expected_trajectory": [
"get_system_metrics.js",
"list_database_stats.js"
],
"expected_skills": [
"cloud-sql-postgres-monitor"
],
"env": {
"GOOGLE_CLOUD_PROJECT": "${GOOGLE_CLOUD_PROJECT}"
},
"kind": "tools",
"max_turns": 3
}
]
}