/install gougoubi-submit-real-results
Gougoubi Submit Real Results
Use this skill to map external evidence to on-chain condition results and submit one result per condition.
Use This Skill When
- The user wants to submit real outcomes for all conditions in a proposal.
- The user wants to submit only officially resolved conditions first.
- The user wants a forced fallback such as
Nofor remaining unresolved conditions.
Do Not Use This Skill When
- The user only wants to inspect missing results without submitting. Use
gougoubi-recovery-ops. - The user only wants activation or LP staking.
Input
{
"proposalAddress": "0x...",
"mode": "resolved-only|all|force",
"forceResult": "yes|no",
"evidenceNote": "optional"
}
Defaults:
mode=resolved-onlyevidenceNoteshould be auto-generated when missing
Pipeline
Step 1: Validate proposal address and target chain.
Step 2: Enumerate all conditions under the proposal.
Step 3: Read each condition skills payload and extract evidence locators such as event slug or market id.
Step 4: Fetch public evidence and build a result map:
resolved-only: only officially resolved marketsall: all markets with clear final outcomesforce: use the same forced side for still-pending conditions
Step 5: For each target condition:
- Skip if
result != 0 - Skip if the condition is not ready for submission
- Submit exactly one result vote
Step 6: Return submitted, skipped, failed, and tx hashes.
Checkpoints
- Prefer
resolved-onlyunless the user explicitly asks forallorforce. - Never duplicate a submission for a condition that already has
result != 0. - Keep evidence mapping and tx results together in the output.
Output
{
"ok": true,
"proposalAddress": "0x...",
"mode": "resolved-only|all|force",
"submittedCount": 0,
"skippedCount": 0,
"failedCount": 0,
"submitted": [
{
"index": 0,
"conditionAddress": "0x...",
"conditionName": "",
"result": 1,
"txHash": "0x..."
}
],
"skipped": [],
"failed": [],
"warnings": []
}
Failure:
{
"ok": false,
"stage": "validation|fetch-evidence|submit|confirm",
"error": "reason",
"retryable": true
}
Project Scripts
scripts/pbft-submit-all-condition-results.mjsscripts/pbft-submit-results-from-skills-once.mjsscripts/pbft-submit-real-results-1605.mjsscripts/pbft-submit-real-results-c427-confirmed.mjsscripts/pbft-submit-real-results-ba0c-resolved-only.mjsscripts/pbft-submit-remaining-no-ba0c.mjs
Script Entry Points
- Generic fixed-side submission:
scripts/pbft-submit-all-condition-results.mjs - Generic skills-derived submission:
scripts/pbft-submit-results-from-skills-once.mjs node scripts/pbft-submit-all-condition-results.mjs --helpnode scripts/pbft-submit-all-condition-results.mjs \x3CproposalAddress> --result yes --dry-runnode scripts/pbft-submit-results-from-skills-once.mjs --helpnode scripts/pbft-submit-results-from-skills-once.mjs \x3CproposalAddress>- Specialized scripts also support
--helpfor their fixed proposal mappings.
Boundaries
- Do not infer unresolved results unless the user explicitly asks for
allorforce. - Preserve an auditable mapping from evidence to submitted result.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install gougoubi-submit-real-results - After installation, invoke the skill by name or use
/gougoubi-submit-real-results - Provide required inputs per the skill's parameter spec and get structured output
What is Gougoubi Submit Real Results?
Submit real-world outcomes for Gougoubi conditions using deterministic evidence from condition skills and public market data. Use when users want resolved-on... It is an AI Agent Skill for Claude Code / OpenClaw, with 247 downloads so far.
How do I install Gougoubi Submit Real Results?
Run "/install gougoubi-submit-real-results" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Gougoubi Submit Real Results free?
Yes, Gougoubi Submit Real Results is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Gougoubi Submit Real Results support?
Gougoubi Submit Real Results is cross-platform and runs anywhere OpenClaw / Claude Code is available (darwin, linux, win32).
Who created Gougoubi Submit Real Results?
It is built and maintained by chinasong (@chinasong); the current version is v1.0.2.