# Send Pdauth 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": "pdauth",
    "name": "Pdauth",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/G9Pedro/pdauth",
    "canonicalUrl": "https://clawhub.ai/G9Pedro/pdauth",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/pdauth",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pdauth",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "pdauth",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T23:11:05.232Z",
      "expiresAt": "2026-05-13T23:11:05.232Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pdauth",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pdauth",
        "contentDisposition": "attachment; filename=\"pdauth-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "pdauth"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/pdauth"
    },
    "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/pdauth",
    "downloadUrl": "https://openagent3.xyz/downloads/pdauth",
    "agentUrl": "https://openagent3.xyz/skills/pdauth/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pdauth/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pdauth/agent.md"
  }
}
```
## Documentation

### pdauth — Dynamic OAuth for AI Agents

Use pdauth to give yourself (the agent) access to 2500+ APIs via OAuth. The flow:

Agent needs access to an app (Spotify, Slack, Notion, etc.)
Generate an OAuth link with pdauth connect <app>
Share link with user → they click and authorize
Agent can now call tools via pdauth call <app.tool>

### Quick Reference

# Configure (one-time setup)
pdauth config

# Search for apps
pdauth apps --search spotify

# Generate OAuth link
pdauth connect spotify --user USER_ID

# Check what's connected
pdauth status --user USER_ID

# List available tools
pdauth tools spotify --user USER_ID

# Call a tool
pdauth call spotify.get_my_playlists --user USER_ID
pdauth call slack.send_message channel=general text="Hello!"

### The OAuth Flow (How to Request Access)

When you need access to an app the user hasn't authorized:

1. Run: pdauth connect <app> --user <user_id>
2. Get the OAuth link from output
3. Send link to user: "To do this, I need access to <App>. Click here to authorize: <link>"
4. User clicks, authorizes via Pipedream
5. Confirm with: pdauth status --user <user_id>
6. Now you can call tools!

### User ID Strategy

Use a consistent identifier per user:

Telegram: telegram:5439689035
Email: pedro@example.com
Custom: pedro-mainframe

The same user ID across sessions maintains their connected accounts.

### Calling Tools

# Format: pdauth call <app>.<tool_name> [key=value ...]

# Simple args
pdauth call slack.send_message channel=general text="Hello"

# JSON args for complex data
pdauth call notion.create_page --args '{"title": "My Page", "content": "..."}'

# Get JSON output for parsing
pdauth call spotify.get_my_playlists --json

### Checking Status

# See what user has connected
pdauth status --user pedro

# See all users
pdauth status --all

# JSON for scripting
pdauth status --user pedro --json

### Popular Apps

Browse all at https://mcp.pipedream.com

AppSlugExample ToolsSlackslacksend_message, list_channelsSpotifyspotifyget_my_playlists, add_to_playlistNotionnotioncreate_page, query_databaseGoogle Sheetsgoogle_sheetsget_values, update_valuesGmailgmailsend_email, list_messagesGitHubgithubcreate_issue, list_reposLinearlinearcreate_issue, list_issuesAirtableairtablelist_records, create_record

### Error Handling

"App not connected" → Generate link with pdauth connect and ask user to authorize

"Tool not found" → List available tools with pdauth tools <app>

"Invalid credentials" → Run pdauth config to set up Pipedream credentials

### Tips

Always check status first before attempting tool calls
Use consistent user IDs so connections persist across sessions
JSON output (--json) is best for parsing results programmatically
Link expiry — OAuth links expire after 4 hours, generate fresh ones as needed

### Example Workflow

User: "Add 'Bohemian Rhapsody' to my Spotify playlist"

Agent:
1. pdauth status --user telegram:5439689035 --json
   → No Spotify connection

2. pdauth connect spotify --user telegram:5439689035
   → Gets OAuth link

3. Send to user: "I need Spotify access. Click here: <link>"

4. User authorizes

5. pdauth status --user telegram:5439689035
   → Spotify ✓ connected

6. pdauth call spotify.search_tracks query="Bohemian Rhapsody" --json
   → Get track ID

7. pdauth call spotify.add_to_playlist playlist_id=... track_id=...
   → Done!

8. Reply: "Added Bohemian Rhapsody to your playlist! 🎵"
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: G9Pedro
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-06T23:11:05.232Z
- Expires at: 2026-05-13T23:11:05.232Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/pdauth)
- [Send to Agent page](https://openagent3.xyz/skills/pdauth/agent)
- [JSON manifest](https://openagent3.xyz/skills/pdauth/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/pdauth/agent.md)
- [Download page](https://openagent3.xyz/downloads/pdauth)