npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@kanvas/site-autopilot

v0.3.1

Published

OpenClaw plugin – autonomous multi-project web optimization agent

Downloads

1,500

Readme

Kanvas Site Autopilot

OpenClaw plugin for automated CRO (Conversion Rate Optimization), SEO, UX analysis, and tracking setup across multiple web projects.

It connects to GA4, Microsoft Clarity, and Google Tag Manager, audits your codebase, detects improvements, and opens Pull Requests with the changes — fully autonomous.

Installation

openclaw plugins install @kanvas/site-autopilot

Or with npm:

npm install -g @kanvas/site-autopilot

Configuration

After installing, run OpenClaw and the agent will guide you through setup automatically. It will ask for your projects and credentials one step at a time.

You can also configure manually in your ~/.openclaw/openclaw.json:

{
  "plugins": {
    "kanvas-site-autopilot": {
      "projects": [
        {
          "name": "My Website",
          "source": {
            "type": "github",
            "repo": "owner/my-website",
            "branch": "main"
          },
          "ga4PropertyId": "123456789",
          "clarityProjectId": "abc123xyz",
          "gtmContainerId": "987654"
        }
      ],
      "dryRun": true,
      "gitBranchPrefix": "autopilot/cro"
    }
  }
}

Project source types

GitHub repo:

"source": { "type": "github", "repo": "owner/repo", "branch": "main" }

Local folder:

"source": { "type": "local", "path": "/path/to/project" }

Credentials

The plugin needs API credentials to collect analytics. Set them up via the agent:

"Set up my credentials"

Or set environment variables:

| Variable | Description | |---|---| | GOOGLE_SERVICE_ACCOUNT_JSON | Path to Google service account JSON key | | CLARITY_API_TOKEN | Microsoft Clarity API token |

Google service account: Go to Google Cloud Console → IAM → Service Accounts → Create → Grant Analytics Viewer and Tag Manager Read roles → Download JSON key.

Clarity token: Go to Clarity → Settings → API → Generate Token.

Tools

| Tool | Description | |---|---| | autopilot_status | Check configuration and credentials status | | autopilot_setup | Add/update projects and credentials | | site_audit | Audit tech stack, tracking, and code quality | | collect_analytics | Pull data from GA4, Clarity, and GTM | | analyze_project | Identify CRO/SEO/UX improvements from analytics | | apply_changes | Apply code changes and open a PR | | manage_events | Create and validate GTM tracking events | | generate_report | Generate an executive CRO report | | run_autopilot | Run the full pipeline for a project (master tool) |

Skills included

The plugin bundles 38 specialized skills:

  • CRO: analytics-cro, ab-testing, ecommerce-cro, onboarding-cro, signup-flow-cro
  • SEO: seo, ai-seo, schema-markup, serp-monitor
  • Performance: performance-web, lighthouse-runner, visual-regression
  • Tracking: analytics-tracking, gtm, gtm-events, heatmap-analyzer
  • Frontend: frontend-best-practices, frontend-design, responsive-design, css-quality, next-best-practices
  • UX/Copy: copywriting, accessibility, user-feedback-parser, web-design-guidelines
  • Audit: audit, design-system-audit, screenshot-analyzer, baseline-tracker
  • Ops: alerting, change-history, competitor-monitor, project-memory, reporter, rollback, evaluation, extraction, modification

Usage

Once installed and configured, just talk to the agent:

Run the full autopilot for My Website
Audit my project and show me what needs to be fixed
Collect analytics for the last 30 days
Create GTM events for all missing interactions

The agent runs daily via cron automatically if configured, analyzing all enabled projects and opening PRs with improvements.

Dry Run mode

By default dryRun: true — the plugin shows what it would change without applying anything. Set dryRun: false to let it open real PRs.

Requirements

  • OpenClaw >= 0.40.0
  • Node.js >= 18
  • Git (for PR creation)
  • Google service account (for GA4/GTM data, optional)
  • Microsoft Clarity token (optional)

License

MIT