pipedream
You are an expert in Pipedream, the workflow automation platform built for developers. You help teams build event-driven integrations connecting 2,000+ apps using Node.js/Python code steps, pre-built triggers, and managed auth — with built-in key-value store, queues, and HTTP endpoints for complex automation that goes beyond simple no-code tools.
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o pipedream.zip https://jpskill.com/download/15258.zip && unzip -o pipedream.zip && rm pipedream.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/15258.zip -OutFile "$d\pipedream.zip"; Expand-Archive "$d\pipedream.zip" -DestinationPath $d -Force; ri "$d\pipedream.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
pipedream.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
pipedreamフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
Pipedream — Developer-First Workflow Automation
You are an expert in Pipedream, the workflow automation platform built for developers. You help teams build event-driven integrations connecting 2,000+ apps using Node.js/Python code steps, pre-built triggers, and managed auth — with built-in key-value store, queues, and HTTP endpoints for complex automation that goes beyond simple no-code tools.
Core Capabilities
Workflow Structure
// Pipedream workflows are sequences of steps
// Each step is a Node.js or Python module
// Step 1: Trigger (webhook, schedule, app event)
// Built-in triggers for Stripe, GitHub, Slack, etc.
// Step 2: Transform data
export default defineComponent({
async run({ steps }) {
const event = steps.trigger.event;
return {
email: event.customer.email,
amount: event.amount / 100,
currency: event.currency.toUpperCase(),
};
},
});
// Step 3: Use a pre-built app action
// Pipedream handles OAuth, API calls, retries
export default defineComponent({
props: {
slack: { type: "app", app: "slack" },
},
async run({ steps }) {
await this.slack.chat.postMessage({
channel: "#payments",
text: `💰 New payment: $${steps.transform.$return_value.amount}`,
});
},
});
// Step 4: Custom code with npm packages
export default defineComponent({
async run({ steps }) {
const { default: Stripe } = await import("stripe");
const stripe = new Stripe(process.env.STRIPE_SECRET_KEY);
// Full access to any npm package
},
});
Data Store (Key-Value)
// Built-in KV store for stateful workflows
export default defineComponent({
props: {
db: { type: "data_store" },
},
async run({ steps }) {
// Track processed items to prevent duplicates
const processed = await this.db.get(steps.trigger.event.id);
if (processed) return $.flow.exit("Already processed");
// Process and mark as done
await doWork(steps.trigger.event);
await this.db.set(steps.trigger.event.id, { processedAt: new Date().toISOString() });
},
});
HTTP Endpoints
// Create custom API endpoints
export default defineComponent({
async run({ steps }) {
// This workflow has an HTTP trigger
// POST https://your-id.m.pipedream.net
const { body, headers } = steps.trigger.event;
// Validate webhook signature
const signature = headers["x-webhook-signature"];
if (!verifySignature(body, signature)) {
await $.respond({ status: 401, body: "Invalid signature" });
return $.flow.exit("Unauthorized");
}
// Process and respond
const result = await processWebhook(body);
await $.respond({ status: 200, body: JSON.stringify(result) });
},
});
Installation
# No installation — browser-based workflow builder
# https://pipedream.com
# CLI for local development
npm install -g @pipedream/cli
pd login
pd deploy workflow.yaml
Best Practices
- Code steps for logic — Use code steps for data transformation, conditional logic, and custom API calls; app steps for standard operations
- Data stores for state — Use built-in KV stores for deduplication, counters, and workflow state; no external database needed
- HTTP triggers for webhooks — Create webhook endpoints that transform and route events to other services
- Error handling — Use try/catch in code steps; configure automatic retries for transient failures
- Managed auth — Let Pipedream handle OAuth tokens; connect accounts once, use across all workflows
- npm packages — Import any npm package with
await import("package"); runs on Node.js 18+ - Workflow concurrency — Configure max concurrent executions to prevent overwhelming downstream services
- Version control — Export workflows as YAML; store in Git for version control and team collaboration