← 返回 Skills 市场
xiongmao11132

Auto-Claw

作者 Xiongmao11132 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
119
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install auto-claw
功能描述
Autonomously monitors and optimizes WordPress sites with SEO fixes, performance audits, A/B testing, security, and competitor tracking.
使用说明 (SKILL.md)

Auto-Claw — Autonomous WordPress Operations Agent

What is This?

Auto-Claw is an autonomous AI agent that manages WordPress sites 24/7. It doesn't just monitor — it executes fixes, runs A/B tests, and optimizes continuously.

Features (19 Capabilities)

AI-Native Site Operations

  • SEO Scanner & Fixer — 40+ point audit, WP-CLI fixes, Schema.org injection
  • Performance Diagnostic — Core Web Vitals, TTFB, cache analysis
  • Content Auditor — E-E-A-T scoring, readability analysis
  • Image Optimizer — Compression analysis, lazy loading checks

Conversion Flywheel

  • A/B Testing Engine — Bayesian significance, multi-variant
  • Exit Intent Popup — Geo-targeted intervention
  • Journey Personalizer — Segment-based content
  • Smart Landing Pages — High-conversion page generator
  • Dynamic FAQ — Schema.org FAQPage generator

Global Operations Center

  • GEO Targeting — IP-based dynamic pricing/content
  • Competitor Monitor — Price/content change alerts
  • Campaign Switcher — Black Friday/618/双11 auto-activation
  • AI Content Generator — E-E-A-T optimized blog posts

Security Architecture

  • Vault — Credentials never touch AI context
  • Gate Pipeline — Destructive actions require approval
  • Soft Deletes — Everything recoverable
  • Full Audit Log — JSONL trail

Requirements

  • WordPress 5.8+ (self-hosted)
  • PHP 7.4+ / 8.x
  • WP-CLI installed
  • SSH access (optional, for full capabilities)
  • Redis (optional, for object caching)

Installation

# Clone the project
git clone http://github.com/YOUR_ORG/auto-company
cd auto-company/projects/auto-claw

# Run full site audit
python3 cli.py full-audit --url http://yoursite.com --web-root /var/www/html

# Start autonomous monitoring
python3 cli.py monitor --continuous

Quick Demo

# 19 capabilities demo (2 minutes)
python3 demo_complete.py

# Single capability
python3 cli.py seo
python3 cli.py performance
python3 cli.py ab-test
python3 cli.py competitor

Live Example

Real WordPress site running Auto-Claw:

Pricing

Plan Price Includes
Starter $500/mo SEO + Performance + Daily Audits
Growth $1,000/mo + A/B Testing + Competitor + GEO
Enterprise $2,000/mo All 19 capabilities + AI Content

Beta: Free for first 10 D2C brands.

Files

auto-claw/
├── cli.py              # Unified CLI (19 commands)
├── demo_complete.py    # All 19 capabilities demo
├── status.sh           # Quick status check
├── dashboard.html      # Visual dashboard
├── README.md          # Full documentation
├── QUICKREF.md       # CLI quick reference
├── src/
│   ├── seo.py
│   ├── performance_diag.py
│   ├── ab_tester.py
│   ├── competitor_monitor.py
│   ├── geo_targeting.py
│   ├── cache_optimizer.py
│   └── ...
└── docs/
    ├── hn-launch-draft.md    # Launch story
    ├── gtm-outreach-templates.md  # Sales templates
    └── one-pager.md         # Investor one-pager

Security

  • Credentials stored in Vault, never exposed to AI
  • Destructive actions (delete, core updates) require human approval
  • Full JSONL audit trail
  • Soft deletes — nothing is permanently removed

Use Cases

  1. D2C Brands — Automate SEO, run A/B tests, monitor competitors
  2. WP Agencies — Manage multiple client sites autonomously
  3. Solo Founders — Get a "24/7 employee" for WordPress ops

Support

安全使用建议
This package contains a complete toolchain that can modify WordPress files, install plugins, run WP-CLI, create cron jobs and run continuous monitoring. Before installing or running it: - Do not run install.sh or monitor/demo scripts on production. Test inside an isolated staging VM or container. - Inspect install.sh, logs/*.sh and all scripts for subprocess calls and network endpoints; search for subprocess/exec/popen usage. - Confirm Vault usage: if you will provide VAULT_TOKEN or other secrets, verify the vault manager code (lib/vault/manager.py, src/vault.py) to ensure secrets are not printed, shipped, or sent to external endpoints. - The registry lists no required env vars but code expects VAULT_* and WP_SITES — ask the author to update metadata and explain exact credentials needed. - Keep pipeline.require_approval enabled and test the Gate pipeline to ensure HIGH-risk actions require manual approval. - Review audit logging (logs/audit.jsonl) and retain/forward logs to a secure location you control. - If you cannot audit the code yourself, avoid granting SSH keys, Vault tokens, or writing to /var/www/html on production. Consider running the tool in read-only mode first and only approve changes after manual review. If the author can supply an updated manifest declaring required env vars, install steps, and an explanation of approval/audit enforcement, confidence in safety would increase.
功能分析
Type: OpenClaw Skill Name: auto-claw Version: 1.0.0 Auto-Claw is a comprehensive WordPress management suite that performs SEO, performance, and growth operations. It is classified as suspicious due to high-risk execution patterns, specifically the use of subprocess.run(shell=True) with string-formatted commands in cli.py and src/wordpress.py, which are vulnerable to shell injection. Additionally, scripts like weekly-report.sh use 'wp eval' to execute arbitrary PHP code on the target site. While these capabilities are aligned with the tool's stated purpose of autonomous site management, the combination of broad system access, SSH key handling, and insecure command construction represents a significant security risk without clear evidence of intentional malice.
能力评估
Purpose & Capability
Functionality in the bundle (src/wordpress.py, seo, performance, ab_tester, vault/pipeline/audit, CLI, demos, cron scripts) aligns with the stated purpose of managing and optimizing WordPress sites. However the registry metadata claims no required env vars/configs while the code and SKILL.md clearly expect configuration (VAULT_* env vars, WP_SITES, web-root paths, and optional ClawhHub token). That mismatch is unexpected and should be clarified.
Instruction Scope
SKILL.md instructs cloning a repo and running python3 cli.py full-audit and python3 cli.py monitor --continuous, and the demo/quickref recommend cron jobs and status scripts. The CLI and many source files include code that can read site HTML, SSH/WD access (WP-CLI), run WP-CLI fixes, install plugins, and write files. The instructions therefore authorize wide filesystem and network actions (including continuous autonomous monitoring and scheduled tasks) which are consistent with the purpose but very powerful — ensure approval gating and audit behavior are enforced in practice.
Install Mechanism
There is no formal install spec in registry (instruction-only), but the skill bundle includes an install.sh, scripts, and many code files. That is not necessarily malicious, but the presence of install scripts and cron recommendations means the package can modify the host environment if executed — review install.sh and any shell scripts before running. The SKILL.md clone URL is a placeholder (http://github.com/YOUR_ORG/auto-company) and some docs reference npx, a package.json and pyproject — multiple ways to install/run exist but none are declared in metadata.
Credentials
Registry metadata declares no required environment variables or config paths, but the code reads and depends on environment variables and secrets (examples: VAULT_ENABLED, VAULT_URL, VAULT_TOKEN, WP_SITES, and a ClawhHub `--token` mention). The config module explicitly looks for VAULT_TOKEN and WP_SITES. Asking for Vault tokens or SSH/web-root access would be proportionate to the claimed capabilities, but the metadata should declare these. The mismatch increases the chance of accidental credential exposure or misconfiguration.
Persistence & Privilege
The skill does not request always:true, but instructions and demo scripts encourage running a persistent monitor (python3 cli.py monitor --continuous) and installing cron entries (logs/audit-daily.sh). If run on a host, this creates a persistent agent that can change files and schedule jobs. That is expected for this kind of tool, but it raises operational risk — ensure the Gate pipeline truly blocks destructive operations and audit logging is enabled and reviewed.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install auto-claw
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /auto-claw 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Auto-Claw 1.0.0 — Initial Release - Launches autonomous WordPress operations agent with 19 AI-powered capabilities for site management, optimization, and monitoring. - Features include SEO scanning/fixes, performance diagnostics, content auditing, image optimization, A/B testing, GEO targeting, competitor tracking, and dynamic content tools. - Robust security: credentials isolation, approval gates for destructive actions, soft deletes, and full JSONL audit logging. - Unified CLI supports all features, with demo scripts and dashboard included. - Beta available to first 10 D2C brands.
元数据
Slug auto-claw
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Auto-Claw 是什么?

Autonomously monitors and optimizes WordPress sites with SEO fixes, performance audits, A/B testing, security, and competitor tracking. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 119 次。

如何安装 Auto-Claw?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install auto-claw」即可一键安装,无需额外配置。

Auto-Claw 是免费的吗?

是的,Auto-Claw 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Auto-Claw 支持哪些平台?

Auto-Claw 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Auto-Claw?

由 Xiongmao11132(@xiongmao11132)开发并维护,当前版本 v1.0.0。

💬 留言讨论