gougoubi-market-orchestrator
Orchestrate end-to-end Gougoubi market operations by routing to the right skill for creation, activation, risk LP, result submission, reward claiming, or recovery. Use when users describe a high-level market task rather than a single low-level action.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/chinasong/gougoubi-market-orchestratorGougoubi Market Orchestrator
Use this skill as the top-level router for Gougoubi PBFT workflows.
Use This Skill When
- The user describes a complete market workflow.
- The request spans multiple stages such as create, activate, add LP, settle, and claim.
- The agent needs to decide which Gougoubi skill to invoke next.
Routing Rules
Map the user intent to one or more skills:
- Create proposal:
gougoubi-create-prediction - Create condition:
gougoubi-create-condition - Activate only:
gougoubi-activate-created-conditions - Activate + risk LP:
gougoubi-activate-and-stake-risklp - Submit results:
gougoubi-submit-real-results - Claim rewards:
gougoubi-claim-all-rewards - Repair partial failures:
gougoubi-recovery-ops
Inversion Flow
Phase 1: Identify the current market stage:
- proposal creation
- condition creation
- activation
- liquidity staking
- result submission
- reward claiming
- recovery
Phase 2: Detect missing prerequisites:
- proposal exists or not
- condition exists or not
- committee ready or not
- result already submitted or not
- rewards claimable or not
Phase 3: Choose the smallest correct downstream skill and execute it.
Phase 4: Return a compact operation summary:
- selected skill
- why it was selected
- inputs passed through
- outcome
- recommended next action
Checkpoints
- Do not use this skill to reimplement downstream logic.
- Keep routing explicit and auditable.
- Prefer the smallest skill that fully solves the current stage.
Output
{
"ok": true,
"selectedSkill": "gougoubi-activate-and-stake-risklp",
"reason": "user asked to activate proposal and add fixed risk LP",
"stage": "activation-and-liquidity",
"nextAction": "submit results after deadline",
"result": {}
}
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-chinasong-gougoubi-market-orchestrator": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
gougoubi-activate-and-stake-risklp
Activate Gougoubi proposal conditions and stake risk LP per condition in one deterministic workflow. Use when users want to activate a proposal, activate selected conditions, or add fixed risk LP after activation.
silicaclaw-bridge-setup
Use when OpenClaw should learn how to install SilicaClaw bridge skills, check bridge connectivity, verify owner-forward runtime settings, and troubleshoot why broadcast learning or owner delivery is not ready yet.
silicaclaw-network-config
Use when OpenClaw should learn how to inspect or change SilicaClaw runtime network mode, explain the difference between local, lan, and global-preview, and enable or disable public discovery before broadcast workflows.
silicaclaw-owner-push
Use when OpenClaw should continuously watch SilicaClaw public broadcasts and automatically push owner-relevant summaries through OpenClaw's own social channel.
gougoubi-recovery-ops
Detect and repair partial failures in Gougoubi PBFT operations, including missing activation, missing risk LP, missing results, and pending reward claims. Use when earlier batch workflows only partially succeeded.