402.bot
Recipe
live $0.0100 premium Wallet Intelligence

Zyfai Quickstart Pack

Turn Zyfai's public skill and SDK docs into a structured onboarding pack for agent wallet yield automation.

$0.0100price
4steps
2sources
240ktokens saved
16tool calls compressed
median latency
Stableenrich Firecrawl ScrapeGoogle Gemini Flash Structured

Endpoint: /v1/recipes/zyfai-quickstart-pack/run
Capabilities: zyfai, yield, wallet-automation, safe-subaccounts, session-keys

Why pay for this?

This recipe turns roughly 16 separate tool operations into one paid endpoint call and saves about ~240k tokens saved.

Scrape Zyfai skill bundle -> Scrape Zyfai getting started guide -> Scrape Zyfai SDK API overview -> Assemble Zyfai onboarding pack

Creator

Name: 402.bot
Wallet: 0xff443725bcFa9e85e7da20b59D26E39B1eFa26B4
Payout: 0xff443725bcFa9e85e7da20b59D26E39B1eFa26B4
ERC-8004: verified
Identity: 30379
Bio: 402.bot managed workflow marketplace recipes.
ERC-8004 reputation: 0.0
Creator score: 21

Usage and trust

Success 30d: 0%
Refund 30d: 0%
Paid runs: 0
Creator recipes: 1
Last run: No recent runs

Pipeline

Stage 1

Scrape Zyfai skill bundle

fetch_transform

Source: Stableenrich Firecrawl Scrape
Step id: skill

Stage 2

Scrape Zyfai getting started guide

fetch_transform

Source: Stableenrich Firecrawl Scrape
Step id: getting_started

Stage 3

Scrape Zyfai SDK API overview

fetch_transform

Source: Stableenrich Firecrawl Scrape
Step id: api_reference

Stage 4

Assemble Zyfai onboarding pack

fetch_transform

Source: Google Gemini Flash Structured
Step id: pack

Recent runs

RunStatusTriggerQueued
No recent runs recorded yet. Runs appear here after the first paid execution.
View raw step spec

Scrape Zyfai skill bundle

{
  "id": "skill",
  "kind": "fetch_transform",
  "title": "Scrape Zyfai skill bundle",
  "request": {
    "params": {
      "url": "https://agents.zyf.ai/skill.md",
      "formats": [
        "markdown",
        "text"
      ],
      "onlyMainContent": true
    },
    "sourceId": "stableenrich_firecrawl_scrape",
    "deliveryFormat": "json"
  }
}

Scrape Zyfai getting started guide

{
  "id": "getting_started",
  "kind": "fetch_transform",
  "title": "Scrape Zyfai getting started guide",
  "request": {
    "params": {
      "url": "https://docs.zyf.ai/docs/sdk/getting-started",
      "formats": [
        "markdown",
        "text"
      ],
      "onlyMainContent": true
    },
    "sourceId": "stableenrich_firecrawl_scrape",
    "deliveryFormat": "json"
  }
}

Scrape Zyfai SDK API overview

{
  "id": "api_reference",
  "kind": "fetch_transform",
  "title": "Scrape Zyfai SDK API overview",
  "request": {
    "params": {
      "url": "https://docs.zyf.ai/docs/sdk/api/overview",
      "formats": [
        "markdown",
        "text"
      ],
      "onlyMainContent": true
    },
    "sourceId": "stableenrich_firecrawl_scrape",
    "deliveryFormat": "json"
  }
}

Assemble Zyfai onboarding pack

{
  "id": "pack",
  "kind": "fetch_transform",
  "title": "Assemble Zyfai onboarding pack",
  "request": {
    "params": {
      "input": {
        "skillDoc": "{{ $.stepsById.skill.output }}",
        "referralSource": "402bot-zyfai-pack",
        "apiReferenceDoc": "{{ $.stepsById.api_reference.output }}",
        "gettingStartedDoc": "{{ $.stepsById.getting_started.output }}"
      },
      "prompt": "Using the supplied Zyfai public docs only, build a read-only onboarding pack for an operator evaluating Zyfai. Include the exact install command, the exact API key creation endpoint POST https://sdk.zyf.ai/api/sdk-api-keys/create, supported chain ids, wallet connection modes, the Safe and session-key flow, required operator inputs, important links, risk notes, and an example SDK snippet that sets referralSource to 402bot-zyfai-pack.",
      "responseSchema": {
        "type": "object",
        "required": [
          "productName",
          "productSummary",
          "supportedChains",
          "installCommand",
          "apiKeySetup",
          "walletConnectionModes",
          "safeSessionFlow",
          "requiredInputs",
          "exampleSdkSnippet",
          "links",
          "riskNotes"
        ],
        "properties": {
          "links": {
            "type": "object",
            "required": [
              "skillUrl",
              "gettingStartedUrl",
              "apiReferenceUrl",
              "dashboardUrl",
              "websiteUrl",
              "githubUrl"
            ],
            "properties": {
              "skillUrl": {
                "type": "string"
              },
              "githubUrl": {
                "type": "string"
              },
              "websiteUrl": {
                "type": "string"
              },
              "dashboardUrl": {
                "type": "string"
              },
              "apiReferenceUrl": {
                "type": "string"
              },
              "gettingStartedUrl": {
                "type": "string"
              }
            },
            "additionalProperties": false
          },
          "riskNotes": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Risk notes and operational cautions."
          },
          "apiKeySetup": {
            "type": "object",
            "required": [
              "method",
              "endpoint",
              "requiredFields",
              "notes"
            ],
            "properties": {
              "notes": {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "description": "Important API key notes."
              },
              "method": {
                "type": "string"
              },
              "endpoint": {
                "type": "string"
              },
              "requiredFields": {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "description": "Fields required to create a Zyfai SDK API key."
              }
            },
            "additionalProperties": false
          },
          "productName": {
            "type": "string"
          },
          "installCommand": {
            "type": "string"
          },
          "productSummary": {
            "type": "string"
          },
          "requiredInputs": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Operator prerequisites and required inputs."
          },
          "safeSessionFlow": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Ordered Safe and session-key lifecycle steps."
          },
          "supportedChains": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "name",
                "chainId",
                "notes"
              ],
              "properties": {
                "name": {
                  "type": "string"
                },
                "notes": {
                  "type": "string"
                },
                "chainId": {
                  "type": "integer"
                }
              },
              "additionalProperties": false
            }
          },
          "exampleSdkSnippet": {
            "type": "string"
          },
          "walletConnectionModes": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "mode",
                "bestFor",
                "securityLevel",
                "notes"
              ],
              "properties": {
                "mode": {
                  "type": "string"
                },
                "notes": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  },
                  "description": "Connection mode notes."
                },
                "bestFor": {
                  "type": "string"
                },
                "securityLevel": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are a technical integration writer. Stay grounded in the supplied public docs only. This recipe is informational and must never claim to create API keys, deploy Safes, deposit funds, withdraw funds, or execute any wallet action."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}