Skip to content

Commit f553384

Browse files
committed
revert testing changes
1 parent bf2dcff commit f553384

46 files changed

Lines changed: 53 additions & 50 deletions

Some content is hidden

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

.ci/scripts/generate_skills.sh

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,20 @@ SKILLS=(
2020
"data"
2121
"Use these skills when you need to explore the database structure, discover schema objects like views or stored procedures, and execute custom SQL queries to interact with your data."
2222

23+
"health"
24+
"Use these skills when you need to audit database health, identify storage bloat, find invalid indexes, analyze table statistics, and manage maintenance configurations like autovacuum."
25+
2326
"monitor"
24-
"Use these skills when you need to troubleshoot performance bottlenecks, analyze query execution plans, identify resource-heavy processes, and monitor system-level PromQL metrics. You can also use them to audit database health, identify storage bloat, find invalid indexes, analyze table statistics, and manage maintenance configurations like autovacuum."
27+
"Use these skills when you need to troubleshoot performance bottlenecks, analyze query execution plans, identify resource-heavy processes, and monitor system-level PromQL metrics."
2528

2629
"view-config"
2730
"Use these skills when you need to discover and manage PostgreSQL extensions or fine-tune engine-level settings such as memory allocation and server configuration parameters."
2831

29-
# "replication"
30-
# "Use these skills when you need to monitor replication health, manage sync states between nodes, and audit database roles and security settings to ensure environment integrity."
32+
"replication"
33+
"Use these skills when you need to monitor replication health, manage sync states between nodes, and audit database roles and security settings to ensure environment integrity."
3134

32-
# "vectorassist"
33-
# "Use these skills to set up and optimize production-ready vector workloads by simply expressing your intent and performance requirements"
35+
"vectorassist"
36+
"Use these skills to set up and optimize production-ready vector workloads by simply expressing your intent and performance requirements"
3437
)
3538

3639
echo "VALIDATING TOOLSETS BEFORE GENERATION"

skills/cloud-sql-postgres-admin/scripts/clone_instance.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function main() {
8787

8888
const command = os.platform() === 'win32' ? 'npx.cmd' : 'npx';
8989
const processedArgs = os.platform() === 'win32' ? args.map(arg => arg.includes('"') ? '"' + arg.replace(/"/g, '""') + '"' : arg) : args;
90-
const npxArgs = ["--yes", "@toolbox-sdk/server@1.0.0", "--log-level", "error", ...configArgs, "invoke", toolName, "--user-agent-metadata", userAgent, ...processedArgs];
90+
const npxArgs = ["--yes", "@toolbox-sdk/server@1.1.0", "--log-level", "error", ...configArgs, "invoke", toolName, "--user-agent-metadata", userAgent, ...processedArgs];
9191

9292
const child = spawn(command, npxArgs, { shell: os.platform() === 'win32', stdio: 'inherit', env });
9393

skills/cloud-sql-postgres-admin/scripts/create_database.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function main() {
8787

8888
const command = os.platform() === 'win32' ? 'npx.cmd' : 'npx';
8989
const processedArgs = os.platform() === 'win32' ? args.map(arg => arg.includes('"') ? '"' + arg.replace(/"/g, '""') + '"' : arg) : args;
90-
const npxArgs = ["--yes", "@toolbox-sdk/server@1.0.0", "--log-level", "error", ...configArgs, "invoke", toolName, "--user-agent-metadata", userAgent, ...processedArgs];
90+
const npxArgs = ["--yes", "@toolbox-sdk/server@1.1.0", "--log-level", "error", ...configArgs, "invoke", toolName, "--user-agent-metadata", userAgent, ...processedArgs];
9191

9292
const child = spawn(command, npxArgs, { shell: os.platform() === 'win32', stdio: 'inherit', env });
9393

skills/cloud-sql-postgres-admin/scripts/create_instance.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function main() {
8787

8888
const command = os.platform() === 'win32' ? 'npx.cmd' : 'npx';
8989
const processedArgs = os.platform() === 'win32' ? args.map(arg => arg.includes('"') ? '"' + arg.replace(/"/g, '""') + '"' : arg) : args;
90-
const npxArgs = ["--yes", "@toolbox-sdk/server@1.0.0", "--log-level", "error", ...configArgs, "invoke", toolName, "--user-agent-metadata", userAgent, ...processedArgs];
90+
const npxArgs = ["--yes", "@toolbox-sdk/server@1.1.0", "--log-level", "error", ...configArgs, "invoke", toolName, "--user-agent-metadata", userAgent, ...processedArgs];
9191

9292
const child = spawn(command, npxArgs, { shell: os.platform() === 'win32', stdio: 'inherit', env });
9393

skills/cloud-sql-postgres-admin/scripts/create_user.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function main() {
8787

8888
const command = os.platform() === 'win32' ? 'npx.cmd' : 'npx';
8989
const processedArgs = os.platform() === 'win32' ? args.map(arg => arg.includes('"') ? '"' + arg.replace(/"/g, '""') + '"' : arg) : args;
90-
const npxArgs = ["--yes", "@toolbox-sdk/server@1.0.0", "--log-level", "error", ...configArgs, "invoke", toolName, "--user-agent-metadata", userAgent, ...processedArgs];
90+
const npxArgs = ["--yes", "@toolbox-sdk/server@1.1.0", "--log-level", "error", ...configArgs, "invoke", toolName, "--user-agent-metadata", userAgent, ...processedArgs];
9191

9292
const child = spawn(command, npxArgs, { shell: os.platform() === 'win32', stdio: 'inherit', env });
9393

skills/cloud-sql-postgres-admin/scripts/get_instance.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function main() {
8787

8888
const command = os.platform() === 'win32' ? 'npx.cmd' : 'npx';
8989
const processedArgs = os.platform() === 'win32' ? args.map(arg => arg.includes('"') ? '"' + arg.replace(/"/g, '""') + '"' : arg) : args;
90-
const npxArgs = ["--yes", "@toolbox-sdk/server@1.0.0", "--log-level", "error", ...configArgs, "invoke", toolName, "--user-agent-metadata", userAgent, ...processedArgs];
90+
const npxArgs = ["--yes", "@toolbox-sdk/server@1.1.0", "--log-level", "error", ...configArgs, "invoke", toolName, "--user-agent-metadata", userAgent, ...processedArgs];
9191

9292
const child = spawn(command, npxArgs, { shell: os.platform() === 'win32', stdio: 'inherit', env });
9393

skills/cloud-sql-postgres-admin/scripts/list_databases.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function main() {
8787

8888
const command = os.platform() === 'win32' ? 'npx.cmd' : 'npx';
8989
const processedArgs = os.platform() === 'win32' ? args.map(arg => arg.includes('"') ? '"' + arg.replace(/"/g, '""') + '"' : arg) : args;
90-
const npxArgs = ["--yes", "@toolbox-sdk/server@1.0.0", "--log-level", "error", ...configArgs, "invoke", toolName, "--user-agent-metadata", userAgent, ...processedArgs];
90+
const npxArgs = ["--yes", "@toolbox-sdk/server@1.1.0", "--log-level", "error", ...configArgs, "invoke", toolName, "--user-agent-metadata", userAgent, ...processedArgs];
9191

9292
const child = spawn(command, npxArgs, { shell: os.platform() === 'win32', stdio: 'inherit', env });
9393

skills/cloud-sql-postgres-admin/scripts/list_instances.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function main() {
8787

8888
const command = os.platform() === 'win32' ? 'npx.cmd' : 'npx';
8989
const processedArgs = os.platform() === 'win32' ? args.map(arg => arg.includes('"') ? '"' + arg.replace(/"/g, '""') + '"' : arg) : args;
90-
const npxArgs = ["--yes", "@toolbox-sdk/server@1.0.0", "--log-level", "error", ...configArgs, "invoke", toolName, "--user-agent-metadata", userAgent, ...processedArgs];
90+
const npxArgs = ["--yes", "@toolbox-sdk/server@1.1.0", "--log-level", "error", ...configArgs, "invoke", toolName, "--user-agent-metadata", userAgent, ...processedArgs];
9191

9292
const child = spawn(command, npxArgs, { shell: os.platform() === 'win32', stdio: 'inherit', env });
9393

skills/cloud-sql-postgres-admin/scripts/wait_for_operation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function main() {
8787

8888
const command = os.platform() === 'win32' ? 'npx.cmd' : 'npx';
8989
const processedArgs = os.platform() === 'win32' ? args.map(arg => arg.includes('"') ? '"' + arg.replace(/"/g, '""') + '"' : arg) : args;
90-
const npxArgs = ["--yes", "@toolbox-sdk/server@1.0.0", "--log-level", "error", ...configArgs, "invoke", toolName, "--user-agent-metadata", userAgent, ...processedArgs];
90+
const npxArgs = ["--yes", "@toolbox-sdk/server@1.1.0", "--log-level", "error", ...configArgs, "invoke", toolName, "--user-agent-metadata", userAgent, ...processedArgs];
9191

9292
const child = spawn(command, npxArgs, { shell: os.platform() === 'win32', stdio: 'inherit', env });
9393

skills/cloud-sql-postgres-data/scripts/execute_sql.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function main() {
8787

8888
const command = os.platform() === 'win32' ? 'npx.cmd' : 'npx';
8989
const processedArgs = os.platform() === 'win32' ? args.map(arg => arg.includes('"') ? '"' + arg.replace(/"/g, '""') + '"' : arg) : args;
90-
const npxArgs = ["--yes", "@toolbox-sdk/server@1.0.0", "--log-level", "error", ...configArgs, "invoke", toolName, "--user-agent-metadata", userAgent, ...processedArgs];
90+
const npxArgs = ["--yes", "@toolbox-sdk/server@1.1.0", "--log-level", "error", ...configArgs, "invoke", toolName, "--user-agent-metadata", userAgent, ...processedArgs];
9191

9292
const child = spawn(command, npxArgs, { shell: os.platform() === 'win32', stdio: 'inherit', env });
9393

0 commit comments

Comments
 (0)