# Send Alicloud Database Rds Supabase to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "alicloud-database-rds-supabase",
    "name": "Alicloud Database Rds Supabase",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/cinience/alicloud-database-rds-supabase",
    "canonicalUrl": "https://clawhub.ai/cinience/alicloud-database-rds-supabase",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/alicloud-database-rds-supabase",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=alicloud-database-rds-supabase",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "agents/openai.yaml",
      "references/api_overview.md",
      "references/api_reference.md",
      "references/query-examples.md",
      "references/sources.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/alicloud-database-rds-supabase"
    },
    "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."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/alicloud-database-rds-supabase",
    "downloadUrl": "https://openagent3.xyz/downloads/alicloud-database-rds-supabase",
    "agentUrl": "https://openagent3.xyz/skills/alicloud-database-rds-supabase/agent",
    "manifestUrl": "https://openagent3.xyz/skills/alicloud-database-rds-supabase/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/alicloud-database-rds-supabase/agent.md"
  }
}
```
## Documentation

### Alibaba Cloud RDS Supabase (RDS AI Service 2025-05-07)

Manage RDS Supabase app instances and related configurations via RDS AI Service OpenAPI, including lifecycle, auth, storage, RAG, IP whitelist, and SSL.

### Prerequisites

Use least-privilege RAM user/role AccessKey and prefer environment variables for AK/SK.
OpenAPI uses RPC signing; prefer official SDKs or OpenAPI Explorer.

### Workflow

Confirm resource type: instance / auth / storage / RAG / security configuration.
Locate operations in references/api_overview.md.
Choose invocation method (SDK / OpenAPI Explorer / custom signing).
After changes, verify state and configuration with query APIs.

### AccessKey Priority (Required)

Environment variables (preferred):ALICLOUD_ACCESS_KEY_ID / ALICLOUD_ACCESS_KEY_SECRET / ALICLOUD_REGION_ID
Region policy: ALICLOUD_REGION_ID is optional default; if unset choose the most reasonable region and ask when unclear.
Standard credentials file:~/.alibabacloud/credentials

### Default Region Strategy

If region is not specified, choose the most reasonable region; ask the user when unclear.
Only run all-region queries when explicitly needed or user-approved (call ListRegions first, then query each region).
If user provides region, query only that region.

### Common Operation Map

Instance:CreateAppInstance / DeleteAppInstance / StartInstance / StopInstance / RestartInstance
Connectivity and auth:DescribeInstanceEndpoints / DescribeInstanceAuthInfo / ModifyInstanceAuthConfig
Storage:DescribeInstanceStorageConfig / ModifyInstanceStorageConfig
Security:ModifyInstanceIpWhitelist / DescribeInstanceIpWhitelist / ModifyInstanceSSL / DescribeInstanceSSL
RAG：ModifyInstanceRAGConfig / DescribeInstanceRAGConfig

### Clarifying questions (ask when uncertain)

What is the target instance ID and region?
Is this instance lifecycle management or configuration changes (auth/storage/RAG/IP whitelist/SSL)?
Do you need batch operations or an initial state query first?

### Output Policy

If you need to save results or responses, write to:
output/database-rds-supabase/

### Validation

mkdir -p output/alicloud-database-rds-supabase
echo "validation_placeholder" > output/alicloud-database-rds-supabase/validate.txt

Pass criteria: command exits 0 and output/alicloud-database-rds-supabase/validate.txt is generated.

### Output And Evidence

Save artifacts, command outputs, and API response summaries under output/alicloud-database-rds-supabase/.
Include key parameters (region/resource id/time range) in evidence files for reproducibility.

### Prerequisites

Configure least-privilege Alibaba Cloud credentials before execution.
Prefer environment variables: ALICLOUD_ACCESS_KEY_ID, ALICLOUD_ACCESS_KEY_SECRET, optional ALICLOUD_REGION_ID.
If region is unclear, ask the user before running mutating operations.

### Workflow

Confirm user intent, region, identifiers, and whether the operation is read-only or mutating.
Run one minimal read-only query first to verify connectivity and permissions.
Execute the target operation with explicit parameters and bounded scope.
Verify results and save output/evidence files.

### References

API overview and operation groups:references/api_overview.md
Core API parameter quick reference:references/api_reference.md
All-region query examples:references/query-examples.md
Official source list:references/sources.md
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: cinience
- Version: 1.0.1
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/alicloud-database-rds-supabase)
- [Send to Agent page](https://openagent3.xyz/skills/alicloud-database-rds-supabase/agent)
- [JSON manifest](https://openagent3.xyz/skills/alicloud-database-rds-supabase/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/alicloud-database-rds-supabase/agent.md)
- [Download page](https://openagent3.xyz/downloads/alicloud-database-rds-supabase)