golem-add-mysql-ts

Connect TypeScript Golem agents to MySQL databases and execute queries.

1|Updated Oct 9, 2025
One-click install
npx skills add https://github.com/justcoon/golem-shopping-ts --skill golem-add-mysql-ts
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: golem-add-mysql-ts
Source: https://github.com/justcoon/golem-shopping-ts/tree/main/.agents/skills/golem-add-mysql-ts
Command: npx skills add https://github.com/justcoon/golem-shopping-ts --skill golem-add-mysql-ts

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Facilitates connecting to and executing SQL commands in MySQL databases from TypeScript Golem agents, enabling database operations within agent workflows.

Core Features & Use Cases

  • Open and manage MySQL connections: Establish connections using connection strings for data manipulation.
  • Run queries and execute statements: Perform SELECT, INSERT, UPDATE, and DELETE operations directly within agent code.
  • Use case: Automate data insertion into a database or retrieve latest records directly from a Golem agent during a deployment process.

Quick Start

Connect to a MySQL database using a connection URL and run a SELECT query to retrieve data for further processing.

Frequently Asked Questions about golem-add-mysql-ts

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I connect to a MySQL database from a TypeScript Golem agent?

To connect to MySQL from a TypeScript Golem agent, use a connection URL or connection string to establish a connection for data manipulation. This enables direct SQL command execution within agent workflows.

Can I manage database transactions within Golem agents?

Yes, you can manage transactions within Golem agents. The integration provides built-in SDK support to handle MySQL transactions, streamlining database-driven workflows directly from agent code.

What types of SQL queries can I execute using this integration?

You can execute standard SQL queries including SELECT, INSERT, UPDATE, and DELETE operations. This allows you to perform data manipulation and retrieve latest records directly within agent code.

Does this require any external dependencies to run MySQL queries in TypeScript?

No external dependencies are required to run MySQL queries. The integration provides built-in SDK support for TypeScript Golem agents, streamlining database operations without additional package requirements.

What is the best way to automate data insertion into a database during agent deployment?

The best way to automate data insertion is by executing INSERT statements directly from a Golem agent during the deployment process. This streamlines database-driven workflows using built-in SDK support.

Why use Golem agents for database operations instead of direct application code?

Using Golem agents for database operations enables automated data retrieval and insertion within deployment workflows. This streamlines database-driven tasks and manages transactions directly inside agent logic.