Skip to content

Add CLAO Ventures (Autonomous Fund) skill reference#6

Merged
BubuMVX merged 3 commits intoClawsNetwork:mainfrom
lamentierschweinchen:add-autonomous-fund
Feb 11, 2026
Merged

Add CLAO Ventures (Autonomous Fund) skill reference#6
BubuMVX merged 3 commits intoClawsNetwork:mainfrom
lamentierschweinchen:add-autonomous-fund

Conversation

@lamentierschweinchen
Copy link

Summary

  • Adds references/autonomous-fund.md — a comprehensive skill reference for the CLAO Ventures autonomous agent fund, a collective investment fund with on-chain governance deployed on the Claws Network
  • Updates SKILL.md to include the Autonomous Fund as section 2.10 and adds the curl download line to the Quick Install block

What is CLAO Ventures?

An agent-operated collective fund where agents can:

  • Deposit CLAW to receive shares (three-gate membership: Bond Registry + Uptime + 25,000 CLAW minimum)
  • Submit proposals to allocate fund capital, linked to Bulletin Board discussion threads
  • Vote yes/no on proposals weighted by share balance (51% absolute quorum)
  • Execute passed proposals after a 24h time-lock (with rage-quit protection)
  • Withdraw at any time — withdrawing during time-lock retroactively removes votes from passed proposals

Five layers of safety guardrails: three-gate membership, 15% AUM per-proposal cap, 25% AUM per-epoch spending limit, 24h time-lock with rage-quit, and dead shares anti-inflation.

What is in the skill reference?

The autonomous-fund.md follows the same pattern as bulletin-board.md and openbond.md:

  1. Contract address configuration and related contracts
  2. Agent superpowers overview (collective capital, governance, safety, coordination)
  3. Three-gate membership explanation with verification commands
  4. All 8 mutable endpoints with full clawpy command examples
  5. All 11 query endpoints with examples
  6. Self-deployment guide (clone, build, deploy with constructor args)
  7. Complete data model (Proposal struct, VoteRecord, ProposalStatus lifecycle, storage layout, events)
  8. Guardrails reference table
  9. Integration patterns with Bulletin Board and OpenBond signals
  10. Strategic usage guide for members, proposal authors, builders, and observers
  11. Observatory dashboard link at autonomous-fund.vercel.app

Additional resources

Test plan

  • Verify autonomous-fund.md renders correctly on GitHub
  • Verify the curl line in SKILL.md Quick Install downloads the file
  • Verify section numbering in SKILL.md is consistent (2.10 added, subsequent sections renumbered)

Generated with Claude Code

Lukas and others added 2 commits February 11, 2026 10:45
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
@BubuMVX
Copy link
Contributor

BubuMVX commented Feb 11, 2026

Hey @lamentierschweinchen !

Can you update this command?

clawpy contract deploy \
    --bytecode=./output/autonomous-fund.wasm \
    --proxy=https://api.claws.network \
    --chain=C \
    --recall-nonce \
    --gas-limit=60000000 \
    --gas-price=20000000000000 \
    --pem=wallet.pem \
    --arguments \
        claw1qqqqqqqqqqqqqpgqkru70vyjyx3t5je4v2ywcjz33xnkfjfws0cszj63m0 \
        claw1qqqqqqqqqqqqqpgqpd08j8dduhxqw2phth6ph8rumsvcww92s0csrugp8z \
        25000000000000000000000 \
        1000 \
    --send

Command arguments and values must be separated by a space, not an equal sign.
Example: --chain=C must be --chain C

Thanks!

@BubuMVX
Copy link
Contributor

BubuMVX commented Feb 11, 2026

Also, the recall-nonce argument doesn't exist anymore.
The proxy argument is optional, as the main SKILL already tells agents to set it in a global way (PROXY_URL env var).
We removed it from other commands.

- Remove --recall-nonce (deprecated)
- Remove --proxy (set globally via PROXY_URL)
- Remove --chain (set globally)
- Use spaces not equals signs for flag values

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
lamentierschweinchen pushed a commit to lamentierschweinchen/skills that referenced this pull request Feb 11, 2026
Applies same fixes as PR ClawsNetwork#6 review feedback:
- Remove --recall-nonce (deprecated)
- Remove --proxy (set globally via PROXY_URL)
- Remove --chain (set globally)
- Use spaces not equals signs for all flag values
- Remove "missing --proxy or --chain" troubleshooting section

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
@lamentierschweinchen
Copy link
Author

Fixed in the latest commit — removed --recall-nonce, removed --proxy, and switched all flags from = to space-separated. Also applied the same fixes to PR #7 (building guide). Thanks for the review!

@BubuMVX BubuMVX merged commit b6dc1e6 into ClawsNetwork:main Feb 11, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants