Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

New Player Package 800

v1.0.0

OpenClaw deployment optimization guide based on 800 RMB (100 USD) of real-world experience. Helps new users quickly complete skill installation, configuratio...

0· 358·1 current·1 all-time
byDaYu@yangdaowan
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Suspicious
medium confidence
Purpose & Capability
The skill is an instruction-only deployment/optimization guide and most recommended actions (installing skills, editing openclaw.json, creating ~/.openclaw directories, enabling plugins) are consistent with that purpose. However, the declared required binaries (python3, uv, git) are incomplete or ambiguous: the guide's one‑click script calls 'npm install -g', but 'npm' (and thus Node.js) is not listed; 'uv' is ambiguous (could be an npm package, a binary, or a different tool). Requiring 'uv' without explanation is disproportionate.
!
Instruction Scope
SKILL.md instructs the agent/user to install third‑party CLI packages via npm, clone and install skills, edit and export gateway tokens and other OpenClaw config, and create files under ~/.openclaw. It also references environment variables (OPENCLAW_GATEWAY_TOKEN, OPENCLAW_WORKSPACE) that are not declared in the skill metadata. The instructions give broad discretion to install/enable many skills (including ones with persistence/monitoring), which could lead to installing untrusted code if sources are not verified.
!
Install Mechanism
There is no formal install spec in the skill bundle; instead the README suggests running 'npm install -g clawhub uv' and 'clawhub install ...'. That implies installing packages from registries and fetching unknown skills. Because the skill does not declare where those packages/skills come from (official repos, GitHub, or third‑party), this is moderate-to-high risk—especially the ambiguous 'uv' package and unknown 'clawhub' package which could execute arbitrary code.
!
Credentials
Declared requirements list no environment variables, but SKILL.md explicitly instructs setting OPENCLAW_GATEWAY_TOKEN and mentions OPENCLAW_WORKSPACE. The guide also tells users to edit gateway.auth.token and gateway.remote.token in openclaw.json. Asking users to set gateway tokens and modifying configuration is expected for deployment, but the metadata should declare these env vars; the omission is an incoherence that makes it unclear what credentials will be used or required at runtime.
Persistence & Privilege
The skill does not request always:true and does not claim elevated system privileges. It instructs installing skills like 'session-monitor' and 'task-persistence' that themselves may run persistently or monitor sessions; this increases blast radius if those skills are untrusted. Autonomous invocation is allowed by default (disable-model-invocation:false), which is normal, but you should be cautious installing third‑party persistent skills.
What to consider before installing
This is a readable deployment guide, but it omits important metadata and suggests installing third‑party packages without specifying sources. Before running the recommended commands: 1) Verify you have Node.js/npm installed (the guide uses npm but doesn't declare it). 2) Confirm what 'uv' refers to (npm package vs. system binary) and inspect that package before installing. 3) Inspect the 'clawhub', 'session-monitor', and 'task-persistence' packages/repos (GitHub/npm pages) to ensure they are official/trusted and review their code or release provenance. 4) Do not paste gateway tokens or other secrets into commands without understanding where they will be stored/transmitted; prefer editing configuration files locally and backup openclaw.json first. 5) If the author, homepage, or package sources are provided (or you can point the install commands to official repositories), re-run this assessment — that information would raise confidence and could change the verdict to benign. If you cannot verify the packages' origins, avoid running the one‑click script and install components manually from trusted sources.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

🎁 Clawdis
Binspython3, uv, git
latestvk97a3tm176vxr96dh3vf5azqjs821jdv
358downloads
0stars
1versions
Updated 8h ago
v1.0.0
MIT-0

New Player Package 800 - OpenClaw Deployment Optimization Guide

💰 Background Story

This is a valuable lesson learned by a "poor developer" who spent 800 RMB (approximately 100 USD) on real-world OpenClaw deployment and debugging. This comprehensive optimization guide helps new users avoid common pitfalls and get started quickly.

🎯 Core Problems Solved

  • Missing Skills: New OpenClaw installations have limited functionality and need key skills installed
  • Complex Configuration: Authentication, security, and plugin configuration are error-prone
  • Incomplete Features: Missing core capabilities like documentation search, filesystem operations, and knowledge management
  • Lack of Monitoring: Unable to view token consumption and session status
  • Task Interruption: Gateway restarts cause task loss with no recovery mechanism
  • Vector Search: Missing semantic search and knowledge organization capabilities

📋 Complete Optimization Checklist

Phase 1: Essential Skill Installation

  1. clawhub - Official skill repository manager

    • Function: Search, install, update, and publish skills
    • Command: clawhub install <skill-name>
  2. Find Skills - Skill recommendation assistant

    • Function: Automatically recommend suitable skills based on needs
    • Solves: Not knowing which skills to install
  3. skill-creator - Skill creation toolkit

    • Function: Create and package custom skills
    • Use: Extend OpenClaw functionality
  4. clawddocs - Official documentation retrieval

    • Function: Quickly find OpenClaw configuration details and best practices
    • Solves: Documentation lookup difficulties
  5. openclaw-anything - System management operations

    • Function: Execute official OpenClaw management and deployment operations
    • Use: System maintenance and configuration management
  6. clawdbot-filesystem - Advanced filesystem operations

    • Function: Batch renaming, directory analysis, file search, content extraction
    • Solves: Complex file operation requirements
  7. Ontology - Knowledge graph construction

    • Function: Relationship and structure organization, vector semantic search, relationship analysis
    • Use: Knowledge management and intelligent retrieval

Phase 2: Enhanced Features

  1. session-monitor - Session status monitoring ⭐

    • Function: Automatically display token consumption, model info, context usage rate
    • Command: /token on|off to toggle
    • Format: [🧠 qwen3-max | 📥123k/📤420 | Context: 47%]
  2. task-persistence - Task persistence ⭐

    • Function: Task continuation, state snapshots, gateway restart notifications
    • Solves: Task loss and no feedback after restarts
    • Features: Auto-recover incomplete tasks, proactive restart status notifications

Phase 3: System Optimization

  1. Vector Search Configuration

    • Enable memory-core plugin
    • Configure embedding models and vector database
    • Implement semantic search functionality
  2. Security Hardening

    • Fix gateway authentication token mismatch
    • Disable insecure HTTP authentication
    • Set plugin allow list
  3. Performance Optimization

    • Configure context compression strategy
    • Optimize memory usage
    • Set reasonable session timeouts

🛠️ One-Click Optimization Script

# Install all required CLI tools
npm install -g clawhub uv

# Clone and install core skills
mkdir -p ~/.openclaw/skills
cd ~/.openclaw/skills

# Install official skills
clawhub install clawhub find-skills skill-creator clawddocs openclaw-anything clawdbot-filesystem ontology

# Install enhanced skills  
clawhub install session-monitor task-persistence

# Configure vector search
mkdir -p ~/.openclaw/memory
# Enable memory-core plugin in openclaw.json

# Apply security configuration
# Fix gateway.auth.token and gateway.remote.token consistency

🔧 Common Problem Solutions

Issue 1: Gateway token mismatch

Symptom: unauthorized: gateway token mismatch Solution:

{
  "gateway": {
    "auth": {
      "token": "your-consistent-token"
    }
  }
}

Set environment variable: export OPENCLAW_GATEWAY_TOKEN="your-consistent-token"

Issue 2: Skills show as missing

Cause: Required tools not installed or environment variables not set Solution:

  • Install Python 3.8+
  • Install uv or pip
  • Set OPENCLAW_WORKSPACE environment variable

Issue 3: Context full (100%)

Symptom: Cannot load new skills, slow responses Solution:

  • Enable context compression: agents.defaults.compaction.mode = "safeguard"
  • Start new session
  • Use /status to monitor token usage

Issue 4: No feedback after gateway restart

Solution: Enable task-persistence skill

  • Automatically monitor gateway status
  • Proactively send status reports after restart
  • Restore incomplete tasks

📊 Verification Checklist

✅ All 9 core skills installed and enabled
✅ session-monitor displays token information
✅ task-persistence monitors gateway status
✅ Vector search configured and working
✅ Security configuration applied
✅ Performance optimization implemented

💡 Best Practices

  1. Regular Updates: clawhub update --all
  2. Resource Monitoring: Use /status to check token usage
  3. Configuration Backup: Regularly backup openclaw.json
  4. Feature Testing: Test key features after each configuration change
  5. Experience Documentation: Record problems and solutions in MEMORY.md

🎁 Value Summary

This "New Player Package 800" includes:

  • 7 core functional skills: Extend OpenClaw's basic capabilities
  • 2 enhanced monitoring skills: Solve visibility and task persistence issues
  • Complete configuration templates: Avoid security and performance pitfalls
  • Real-world problem solutions: Based on actual deployment experience
  • One-click optimization script: Quickly complete all configurations

Helps new users complete in 30 minutes what would normally take days, achieving a truly "out-of-the-box" experience.

📚 Related Skills

  • clawhub: Skill management
  • find-skills: Skill discovery
  • session-monitor: Status monitoring
  • task-persistence: Task persistence
  • ontology: Knowledge management
  • healthcheck: Security auditing

Comments

Loading comments...