{
  "schemaVersion": "1.0",
  "item": {
    "slug": "remove-analytics",
    "name": "Remove Analytics",
    "source": "tencent",
    "type": "skill",
    "category": "安全合规",
    "sourceUrl": "https://clawhub.ai/jeftekhari/remove-analytics",
    "canonicalUrl": "https://clawhub.ai/jeftekhari/remove-analytics",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/remove-analytics",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=remove-analytics",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.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": "remove-analytics",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T12:06:01.520Z",
      "expiresAt": "2026-05-06T12:06:01.520Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=remove-analytics",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=remove-analytics",
        "contentDisposition": "attachment; filename=\"remove-analytics-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "remove-analytics"
      },
      "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/remove-analytics"
    },
    "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/remove-analytics",
    "agentPageUrl": "https://openagent3.xyz/skills/remove-analytics/agent",
    "manifestUrl": "https://openagent3.xyz/skills/remove-analytics/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/remove-analytics/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": "Remove Analytics Skill",
        "body": "You are removing Google Analytics from this project. This is a destructive action - confirm with the user before proceeding."
      },
      {
        "title": "Step 1: Confirm Intent",
        "body": "Ask the user to confirm they want to remove analytics:\n\n\"This will remove all Google Analytics tracking from your project. This action will:\n\nRemove gtag scripts and components\nRemove analytics utility files\nRemove related environment variables from .env.example\nRemove npm packages if any\n\nType 'yes' to confirm.\""
      },
      {
        "title": "Step 2: Find All Analytics Code",
        "body": "Search for:\n\nFiles containing gtag, dataLayer, GoogleAnalytics\nImport statements for analytics utilities\nScript tags with googletagmanager.com\nEnvironment variables: GA_, GTAG_, MEASUREMENT_ID\nPackage.json dependencies: @types/gtag.js, react-ga4, vue-gtag, etc."
      },
      {
        "title": "Step 3: Remove Code",
        "body": "For each finding:\n\nShow the file and code to be removed\nRemove the code or file\nClean up any orphaned imports"
      },
      {
        "title": "Step 4: Clean Up",
        "body": "Remove analytics-related packages: npm uninstall @types/gtag.js (or equivalent)\nRemove environment variables from .env.example\nUpdate any documentation that references analytics"
      },
      {
        "title": "Step 5: Summary",
        "body": "Provide a summary of:\n\nFiles deleted\nFiles modified\nPackages removed\nEnvironment variables removed\nAny manual steps needed (like removing actual env values)"
      }
    ],
    "body": "Remove Analytics Skill\n\nYou are removing Google Analytics from this project. This is a destructive action - confirm with the user before proceeding.\n\nStep 1: Confirm Intent\n\nAsk the user to confirm they want to remove analytics:\n\n\"This will remove all Google Analytics tracking from your project. This action will:\n\nRemove gtag scripts and components\nRemove analytics utility files\nRemove related environment variables from .env.example\nRemove npm packages if any\n\nType 'yes' to confirm.\"\n\nStep 2: Find All Analytics Code\n\nSearch for:\n\nFiles containing gtag, dataLayer, GoogleAnalytics\nImport statements for analytics utilities\nScript tags with googletagmanager.com\nEnvironment variables: GA_, GTAG_, MEASUREMENT_ID\nPackage.json dependencies: @types/gtag.js, react-ga4, vue-gtag, etc.\nStep 3: Remove Code\n\nFor each finding:\n\nShow the file and code to be removed\nRemove the code or file\nClean up any orphaned imports\nStep 4: Clean Up\nRemove analytics-related packages: npm uninstall @types/gtag.js (or equivalent)\nRemove environment variables from .env.example\nUpdate any documentation that references analytics\nStep 5: Summary\n\nProvide a summary of:\n\nFiles deleted\nFiles modified\nPackages removed\nEnvironment variables removed\nAny manual steps needed (like removing actual env values)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/jeftekhari/remove-analytics",
    "publisherUrl": "https://clawhub.ai/jeftekhari/remove-analytics",
    "owner": "jeftekhari",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/remove-analytics",
    "downloadUrl": "https://openagent3.xyz/downloads/remove-analytics",
    "agentUrl": "https://openagent3.xyz/skills/remove-analytics/agent",
    "manifestUrl": "https://openagent3.xyz/skills/remove-analytics/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/remove-analytics/agent.md"
  }
}