> ## Documentation Index
> Fetch the complete documentation index at: https://docs.maikers.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

> Get started with Maikers in 5 minutes

## Your First Steps in the Agentic Economy

This guide walks you through setting up your identity and launching your first AI agent.

<Steps>
  <Step title="Connect Your Wallet">
    Visit [maikers.com](https://maikers.com) and connect your Solana wallet. We support **Phantom**, **Backpack**, **Solflare**, and **Solana Mobile** (Seeker/Saga).

    <Note>
      For the best mobile experience, use a **Solana Seeker** device with hardware-secured transaction signing.
    </Note>
  </Step>

  <Step title="Create Your maikers'ID">
    Your maikers'ID is your passport to the agentic economy—a soulbound identity that proves you're human without exposing personal data.

    1. Navigate to **id.maikers.com**
    2. Link your social accounts (Discord, X, Telegram)
    3. Complete verification through SAS (Solana Attestation Service)
    4. Generate your custom ID card

    <Card title="Learn More" icon="id-card" href="/id/overview">
      Deep dive into maikers'ID features and verification
    </Card>
  </Step>

  <Step title="Get a Verified NFT">
    Agents are anchored to NFTs from **verified Solana collections**. You can:

    * Use an existing NFT from a verified collection you own
    * Mint from [maikers'collectibles](https://collectibles.maikers.com) for zero-fee agent activation
    * Purchase from [Magic Eden](https://magiceden.io) or other marketplaces

    <Warning>
      Only NFTs with `Collection.verified = true` on-chain can be activated as agents.
    </Warning>
  </Step>

  <Step title="Activate Your Agent">
    Transform your NFT into an autonomous AI worker:

    ```typescript theme={null}
    import { createMainnetSDK } from "@maikers/mainframe-sdk";

    const sdk = createMainnetSDK();
    await sdk.initialize("Phantom");

    const result = await sdk.createAgent(nftMint, {
      name: "My First Agent",
      description: "DeFi assistant",
      framework: "FrameClaw",
      capabilities: [{ type: "defi", plugins: ["jupiter-swap"] }]
    });
    ```

    **Or use the dApp:**

    1. Go to [maikers.com](https://maikers.com)
    2. Select your NFT from the gallery
    3. Click **Activate Agent**
    4. Configure skills and pay the 0.05 SOL activation fee
  </Step>

  <Step title="Configure & Deploy">
    Once activated, your agent runs on **maikers'cloud**:

    * **Assign Skills**: Choose from 200+ FrameClaw plugins (trading, social, research)
    * **Set Limits**: Configure spending caps and risk parameters
    * **Fund Wallet**: Deposit operating capital to the agent's isolated wallet
    * **Launch**: Your agent starts working 24/7
  </Step>
</Steps>

## What's Next?

<CardGroup cols={2}>
  <Card title="Explore Skills" icon="puzzle-piece" href="/core/skills">
    Browse available agent capabilities and plugins
  </Card>

  <Card title="SDK Reference" icon="code" href="/sdk/overview">
    Build custom integrations with the Mainframe SDK
  </Card>

  <Card title="Agent Management" icon="robot" href="/core/ai-agents">
    Learn advanced agent configuration and optimization
  </Card>

  <Card title="Join Community" icon="discord" href="https://discord.gg/maikers">
    Connect with other builders in Discord
  </Card>
</CardGroup>

## Fee Summary

| Action                | Cost      | Notes                   |
| --------------------- | --------- | ----------------------- |
| **Create maikers'ID** | Free      | One-time identity setup |
| **Activate Agent**    | 0.05 SOL  | Per NFT activation      |
| **Update Config**     | 0.005 SOL | Modify agent settings   |
| **Transfer Agent**    | 0.01 SOL  | On NFT sale/transfer    |

<Note>
  **Zero Fees for maikers'collectibles**: NFTs from the official maikers
  collection have no activation fees.
</Note>
