{
  "schemaVersion": "1.0",
  "item": {
    "slug": "drizzle",
    "name": "Drizzle",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/ivangdavila/drizzle",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/drizzle",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/drizzle",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=drizzle",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/drizzle"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/drizzle",
    "agentPageUrl": "https://openagent3.xyz/skills/drizzle/agent",
    "manifestUrl": "https://openagent3.xyz/skills/drizzle/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/drizzle/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Schema Definition",
        "body": "Export every table from schema file — queries fail silently if table isn't exported\nUse $inferSelect for query return types, $inferInsert for insert input — they differ (select has defaults filled, insert has optionals)\nDefine relations() in a separate call, not inline with table — Drizzle separates schema from relations"
      },
      {
        "title": "Query Syntax Traps",
        "body": "Conditions use functions, not objects: where: eq(users.id, 5) not where: { id: 5 } — Prisma syntax doesn't work\nCombine conditions with and() / or(): where: and(eq(users.active, true), gt(users.age, 18))\ndb.query.users.findMany() for relational queries with with:, db.select().from(users) for SQL-like — mixing them causes type errors"
      },
      {
        "title": "Migrations",
        "body": "drizzle-kit push is dev-only (destructive) — production needs drizzle-kit generate then drizzle-kit migrate\nSchema changes require regenerating migrations — editing generated SQL breaks the migration hash\nSet strict: true in drizzle.config.ts to catch schema drift before it hits production"
      },
      {
        "title": "Driver-Specific",
        "body": "PostgreSQL: use pgTable, imports from drizzle-orm/pg-core\nMySQL: use mysqlTable, imports from drizzle-orm/mysql-core\nSQLite: use sqliteTable, imports from drizzle-orm/sqlite-core\nMixing imports across drivers compiles but fails at runtime with cryptic errors"
      },
      {
        "title": "Performance",
        "body": "Wrap multi-query operations in db.transaction(async (tx) => {}) — Drizzle doesn't auto-batch\nUse .prepare() for queries executed repeatedly — skips query building overhead\nAdd .limit() to every findMany() / select() — no default limit means full table scans"
      },
      {
        "title": "Common Mistakes",
        "body": "Forgetting await on queries returns a Promise, not results — TypeScript doesn't catch this if you ignore the return\nreturning() is required to get inserted/updated rows back — without it you get { rowCount } only\nJSON columns: PostgreSQL uses jsonb(), MySQL uses json() — wrong function = wrong serialization"
      }
    ],
    "body": "Schema Definition\nExport every table from schema file — queries fail silently if table isn't exported\nUse $inferSelect for query return types, $inferInsert for insert input — they differ (select has defaults filled, insert has optionals)\nDefine relations() in a separate call, not inline with table — Drizzle separates schema from relations\nQuery Syntax Traps\nConditions use functions, not objects: where: eq(users.id, 5) not where: { id: 5 } — Prisma syntax doesn't work\nCombine conditions with and() / or(): where: and(eq(users.active, true), gt(users.age, 18))\ndb.query.users.findMany() for relational queries with with:, db.select().from(users) for SQL-like — mixing them causes type errors\nMigrations\ndrizzle-kit push is dev-only (destructive) — production needs drizzle-kit generate then drizzle-kit migrate\nSchema changes require regenerating migrations — editing generated SQL breaks the migration hash\nSet strict: true in drizzle.config.ts to catch schema drift before it hits production\nDriver-Specific\nPostgreSQL: use pgTable, imports from drizzle-orm/pg-core\nMySQL: use mysqlTable, imports from drizzle-orm/mysql-core\nSQLite: use sqliteTable, imports from drizzle-orm/sqlite-core\nMixing imports across drivers compiles but fails at runtime with cryptic errors\nPerformance\nWrap multi-query operations in db.transaction(async (tx) => {}) — Drizzle doesn't auto-batch\nUse .prepare() for queries executed repeatedly — skips query building overhead\nAdd .limit() to every findMany() / select() — no default limit means full table scans\nCommon Mistakes\nForgetting await on queries returns a Promise, not results — TypeScript doesn't catch this if you ignore the return\nreturning() is required to get inserted/updated rows back — without it you get { rowCount } only\nJSON columns: PostgreSQL uses jsonb(), MySQL uses json() — wrong function = wrong serialization"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ivangdavila/drizzle",
    "publisherUrl": "https://clawhub.ai/ivangdavila/drizzle",
    "owner": "ivangdavila",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/drizzle",
    "downloadUrl": "https://openagent3.xyz/downloads/drizzle",
    "agentUrl": "https://openagent3.xyz/skills/drizzle/agent",
    "manifestUrl": "https://openagent3.xyz/skills/drizzle/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/drizzle/agent.md"
  }
}