MangoGen Ecosystem Quickstart for Openclaw

A local-first onboarding skill that helps you install, pay for, and verify Openclaw Skills without exposing private notes or source code.

jinyu12166
v1.0.2
Jul 21, 2026
0
499
0

Install & Download

1. ClawHub CLI

The fastest way to install a skill directly from the registry.

npx clawhub@latest install ecosystem-quickstart

2. Manual Installation

Copy the skill folder to one of these locations

Global
~/.openclaw/skills/
Workspace
<project>/skills/

Priority: Workspace > Local > Bundled

3. Prompt Installation

Copy this prompt to OpenClaw to install it automatically.

Help me install ecosystem-quickstart using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).

Prefer to download?

Get the raw skill files in a ZIP archive.

What is MangoGen Ecosystem Quickstart?

MangoGen Ecosystem Quickstart is a developer-focused guide for Openclaw Skills that takes you from zero setup to a working paid-skill workflow. It covers installing OpenClaw, adding the required clawtip payment middleware, validating your installed skills, and running the local scripts that create orders, confirm payment, and retrieve service results.

It is designed for privacy-sensitive, local-first usage: your notes, code, and personal files stay on your machine, while only the minimum order metadata needed for checkout and verification is sent over HTTPS. If you need a secure way to adopt Openclaw Skills, troubleshoot payment failures, or explain the trust model behind the ecosystem, this skill gives you a clear operational path.

MangoGen Ecosystem Quickstart Use Cases

  • Setting up OpenClaw from scratch and confirming that Openclaw Skills are installed correctly.
  • Enabling paid Openclaw Skills that require clawtip for checkout and payment verification.
  • Creating a local order ledger for a request, then completing the payment and fetching the paid result.
  • Troubleshooting failed payments, missing skills, network access issues, or insufficient wallet balance.
  • Explaining the local-first security boundary so teams can keep notes, code, and personal data on-device.
  • Choosing the right Openclaw Skills path for memory systems, database work, QA/security audits, or research tasks.

How MangoGen Ecosystem Quickstart Works

  1. Read the request and map it to the correct Openclaw Skills path using the role and scenario guidance in the skill.
  2. Install OpenClaw and confirm the current skill inventory with openclaw skills list.
  3. Install the target skill set, then add clawtip because paid Openclaw Skills depend on it for checkout.
  4. Create a local order from the prompt with scripts/create_order.py, which generates the order number, amount, question text, and indicator namespace.
  5. Confirm payment through clawtip; it reads the local order file, calls the payment API over HTTPS, and writes the encrypted payment proof back to disk.
  6. Retrieve the paid service result with scripts/service.py after the order reaches PAY_STATUS: SUCCESS.
  7. If anything fails, check the installed skills list, network connectivity to api.ideaidea.com.cn, and wallet balance before retrying.

MangoGen Ecosystem Quickstart Setup

  1. Install OpenClaw.
npm i -g openclaw

You can also download the installer from openclaw.ai.

  1. Install the ClawHub CLI if you publish or manage Openclaw Skills.
npm i -g clawhub
clawhub login
  1. Install the payment bridge required by paid Openclaw Skills.
openclaw skills install clawtip
  1. Install the target skill set and verify the local registry.
openclaw skills install obsidian-memory-system
openclaw skills list
  1. Make sure the local order directory exists at ~/.openclaw/skills/orders/ or within the workspace skills/ folder, and allow outbound HTTPS access to api.ideaidea.com.cn for payment verification.

  2. Keep the helper scripts available in the skill workspace: scripts/create_order.py creates the order, and scripts/service.py reads the paid result after verification.

MangoGen Ecosystem Quickstart Data Schema & Taxonomy

Layer Location What it stores Notes
Skill manifest SKILL.md front matter name, description, metadata.author, metadata.category, metadata.version, permissions.filesystem.read Declares the skill contract for Openclaw Skills
Installed skills ~/.openclaw/skills/ or skills/ Skill packages available to the runtime Verified with openclaw skills list
Order ledger ~/.openclaw/skills/orders/{indicator}/{order_no}.json Order record and payment proof Created locally; updated after successful payment
Order preview CLI stdout ORDER_NO, AMOUNT, QUESTION, INDICATOR Human-readable checkout summary
Payment verification payload HTTPS request to api.ideaidea.com.cn slug + orderNo for creation, orderNo + encrypted credential for verification Never includes source code, notes, or private files

Metadata taxonomy used by Openclaw Skills:

  • indicator: skill-specific namespace for order records.
  • order_no: unique order identifier.
  • amount: UT price for the paid request.
  • question: the user prompt that triggered the order.
  • payStatus: payment state, such as SUCCESS.
  • credential: encrypted proof returned by the payment service and written back locally.

MangoGen Ecosystem Quickstart Advanced Features

  • Local-first execution keeps project code, notes, and personal files on-device.
  • clawtip automates the payment lifecycle and persists proof back into the local order ledger.
  • Role-based skill recommendations help you choose the right Openclaw Skills path for backend, frontend, DevOps, data/AI, PM, or IP workflows.
  • Free-vs-paid routing makes the checkout path explicit before any order is created.
  • Security posture includes open-code auditability, SkillSpector scanning, HTTPS transport, and SM4-encrypted payment credentials.
  • CLI maintenance commands support skill listing, updating, checking, and search workflows.
  • Deterministic order files make Openclaw Skills easier to audit, support, and troubleshoot across repeated sessions.

SKILL.md


Loading

Related Openclaw Skills

METADATA

Github Stars: 0
forks: 0

Featured*