Weather
一个面向 Data & APIs 场景的 Agent 技能。原始说明:Get current weather and forecasts (no API key required).
一个面向 Data & APIs 场景的 Agent 技能。原始说明:Prisma PostgreSQL → SQLite/Turso migration pattern for AI workspaces — converts production Postgres schemas to edge-compatible SQLite with Turso replication....
name: sqlite-turso-migration
version: 0.1.0
status: draft
description: >
Prisma PostgreSQL → SQLite/Turso migration pattern for AI workspaces — converts
production Postgres schemas to edge-compatible SQLite with Turso replication. Use when
moving from a hosted Postgres database to a lightweight embedded SQLite setup, enabling
local-first development with optional Turso cloud sync, or reducing database costs by
replacing managed Postgres with Turso's generous free tier for low-traffic AI applications.
requires:
env:
bins:
metadata:
openclaw:
primaryEnv: TURSODATABASEURL
network:
outbound: true
reason: "Connects to Turso cloud for schema sync and optional replication."
security_notes: "Draft skill — not yet published"
STATUS: DRAFT — This skill is planned but not yet fully implemented.
Provides a step-by-step migration pattern for moving Prisma-managed PostgreSQL schemas to
SQLite (local) or Turso (edge-replicated SQLite). Handles the key incompatibilities between
Postgres and SQLite: no arrays (→ JSON columns), no enums (→ text with check constraints),
no UUID type (→ text), and different auto-increment semantics. Includes a validation harness
to verify data integrity post-migration.
@prisma/adapter-libsql)