gougoubi-activate-created-conditions
Activate all CREATED conditions under a Gougoubi proposal with deterministic committee checks, optional auto-stake joining, and structured voting results. Use when users want to activate proposal conditions by proposal id or proposal address.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/chinasong/gougoubi-activate-created-conditionsGougoubi Activate Created Conditions
Use this skill when the user wants to activate all currently CREATED conditions under a proposal.
Use This Skill When
- The user asks to activate a proposal.
- The user asks to vote on all created conditions.
- The workflow should auto-join the committee when needed.
Do Not Use This Skill When
- The user also wants risk LP added in the same run. Use
gougoubi-activate-and-stake-risklp. - The user wants result submission or reward claiming.
Input
{
"proposalId": "number|string",
"bnbAddress": "0x...",
"approve": true,
"minBnbForGas": "0.001"
}
Pipeline
Step 1: Validate proposalId and bnbAddress.
Step 2: Check wallet, chain, and gas balance.
Step 3: Resolve proposalAddress from proposalId.
Step 4: Check committee membership.
Step 5: If not a member, auto-stake the minimum required amount and confirm membership.
Step 6: Enumerate all CREATED conditions.
Step 7: Vote true on each CREATED condition, one transaction at a time.
Step 8: Return structured success and failure details.
Checkpoints
- Only vote on
CREATEDconditions. - If one condition fails, continue and report it.
- If no
CREATEDconditions exist, return success with warningno-created-conditions. - Load references/CONTRACT_METHODS.md when contract method details are needed.
Output
{
"ok": true,
"proposalId": 0,
"proposalAddress": "0x...",
"bnbAddress": "0x...",
"committeeJoinedByStake": false,
"stakeTxHash": "0x... or null",
"createdConditionCount": 0,
"attemptedConditionCount": 0,
"successCount": 0,
"failedCount": 0,
"successes": [
{
"conditionAddress": "0x...",
"txHash": "0x..."
}
],
"failures": [
{
"conditionAddress": "0x...",
"error": "human readable reason"
}
],
"warnings": [],
"nextActions": []
}
Failure:
{
"ok": false,
"stage": "validation|wallet|gas-check|resolve-proposal|stake-committee|approve|activate-vote|confirm",
"error": "human readable reason",
"retryable": true
}
Boundaries
- Do not bypass wallet confirmation.
- Do not widen scope beyond
CREATEDconditions. - Keep Chinese user-facing errors concise and actionable.
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-activate-created-conditions": {
"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.