{
  "schemaVersion": "1.0",
  "item": {
    "slug": "chatgpt-import",
    "name": "ChatGPT Import",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/samdickson22/chatgpt-import",
    "canonicalUrl": "https://clawhub.ai/samdickson22/chatgpt-import",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/chatgpt-import",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=chatgpt-import",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/bulk_embed.py",
      "scripts/convert_chatgpt.py",
      "references/export-guide.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "chatgpt-import",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T08:44:54.483Z",
      "expiresAt": "2026-05-08T08:44:54.483Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=chatgpt-import",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=chatgpt-import",
        "contentDisposition": "attachment; filename=\"chatgpt-import-1.0.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "chatgpt-import"
      },
      "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/chatgpt-import"
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/chatgpt-import",
    "agentPageUrl": "https://openagent3.xyz/skills/chatgpt-import/agent",
    "manifestUrl": "https://openagent3.xyz/skills/chatgpt-import/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/chatgpt-import/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "ChatGPT History Import",
        "body": "Import your ChatGPT conversations into OpenClaw so they're searchable via memory search."
      },
      {
        "title": "1. Export from ChatGPT",
        "body": "Follow references/export-guide.md to download your conversations.json."
      },
      {
        "title": "2. Convert to Markdown",
        "body": "python3 scripts/convert_chatgpt.py \\\n  --input /path/to/conversations.json \\\n  --output /path/to/chatgpt-history\n\nOptions: --min-messages N to skip trivial conversations (default: 2)."
      },
      {
        "title": "3. Embed into SQLite",
        "body": "export OPENAI_API_KEY=sk-...\npython3 scripts/bulk_embed.py \\\n  --history-dir /path/to/chatgpt-history \\\n  --db /path/to/chatgpt-memory.sqlite\n\nOptions: --model, --batch-size, --max-workers, --chunk-size, --api-key."
      },
      {
        "title": "4. Configure OpenClaw",
        "body": "Add as an extra search path in your OpenClaw config:\n\nmemorySearch:\n  extraPaths:\n    - /path/to/chatgpt-memory.sqlite\n\nThen restart the gateway:\n\nopenclaw gateway restart"
      },
      {
        "title": "Important Notes",
        "body": "OpenAI API key required. The embed script sends conversation text to api.openai.com for embedding. If your conversations contain secrets, consider filtering them out first or using a scoped API key.\nNo key material stored. The generated DB does not store your API key.\nBack up first. The embed script will refuse to overwrite an existing output DB.\nEmbeddings cost money — but it's cheap. ~2,400 conversations cost ~$0.15 with text-embedding-3-small."
      }
    ],
    "body": "ChatGPT History Import\n\nImport your ChatGPT conversations into OpenClaw so they're searchable via memory search.\n\nWorkflow\n1. Export from ChatGPT\n\nFollow references/export-guide.md to download your conversations.json.\n\n2. Convert to Markdown\npython3 scripts/convert_chatgpt.py \\\n  --input /path/to/conversations.json \\\n  --output /path/to/chatgpt-history\n\n\nOptions: --min-messages N to skip trivial conversations (default: 2).\n\n3. Embed into SQLite\nexport OPENAI_API_KEY=sk-...\npython3 scripts/bulk_embed.py \\\n  --history-dir /path/to/chatgpt-history \\\n  --db /path/to/chatgpt-memory.sqlite\n\n\nOptions: --model, --batch-size, --max-workers, --chunk-size, --api-key.\n\n4. Configure OpenClaw\n\nAdd as an extra search path in your OpenClaw config:\n\nmemorySearch:\n  extraPaths:\n    - /path/to/chatgpt-memory.sqlite\n\n\nThen restart the gateway:\n\nopenclaw gateway restart\n\nImportant Notes\nOpenAI API key required. The embed script sends conversation text to api.openai.com for embedding. If your conversations contain secrets, consider filtering them out first or using a scoped API key.\nNo key material stored. The generated DB does not store your API key.\nBack up first. The embed script will refuse to overwrite an existing output DB.\nEmbeddings cost money — but it's cheap. ~2,400 conversations cost ~$0.15 with text-embedding-3-small."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/samdickson22/chatgpt-import",
    "publisherUrl": "https://clawhub.ai/samdickson22/chatgpt-import",
    "owner": "samdickson22",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/chatgpt-import",
    "downloadUrl": "https://openagent3.xyz/downloads/chatgpt-import",
    "agentUrl": "https://openagent3.xyz/skills/chatgpt-import/agent",
    "manifestUrl": "https://openagent3.xyz/skills/chatgpt-import/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/chatgpt-import/agent.md"
  }
}