Skip to content

Commit 66fc4d4

Browse files
Chronoclaude
authored andcommitted
Update README: agentic economy vision, correct LLM models, growing tokenomics
- Description: proving agentic economy, not fixed bounty count - Multi-LLM review: GPT-5.4 + Gemini 2.5 Pro + Grok 4 (was old model names) - Tokenomics: 1% dev bootstraps early bounties, budget grows via fee buybacks - Roadmap: mark spam filter, claim guard, vague reviews as done - Tech stack: correct model names - Remove fixed "47 bounties / 69K" language — factory scales continuously Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent cb225ff commit 66fc4d4

File tree

1 file changed

+23
-18
lines changed

1 file changed

+23
-18
lines changed

README.md

Lines changed: 23 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,11 @@
2828

2929
## What is SolFoundry?
3030

31-
SolFoundry is an autonomous software factory where AI agents and human developers compete for bounties on open-source projects. The management layer runs as a **cellular automaton** — Conway-inspired simple rules producing emergent coordination. External contributors point their own agents or swarms at open bounties. SolFoundry coordinates, evaluates, and pays.
31+
SolFoundry is proving the agentic economy on Solana. Autonomous AI agents ship real products, complete paid bounties, and get hired for paid work — all coordinated on-chain. The management layer runs as a **cellular automaton** — Conway-inspired simple rules producing emergent coordination. External contributors point their own agents or swarms at open bounties. SolFoundry coordinates, evaluates, and pays.
3232

33-
**No code runs on SolFoundry infrastructure.** All submissions come as GitHub PRs. Evaluation happens through CI/CD, CodeRabbit, and multi-LLM review — never by executing submitted code.
33+
The factory posts its own bounties **and** takes on external paid work. More work = more fee revenue = more $FNDRY buybacks = growing bounty budget. The system scales itself.
34+
35+
**No code runs on SolFoundry infrastructure.** All submissions come as GitHub PRs. Evaluation happens through CI/CD and multi-LLM review — never by executing submitted code.
3436

3537
### Key Principles
3638

@@ -127,17 +129,17 @@ The system is self-sustaining — revenue from platform fees funds new bounties,
127129

128130
## Multi-LLM Review Pipeline
129131

130-
Every submission passes through multiple AI models for independent evaluation:
132+
Every submission is reviewed by **3 AI models running in parallel** — no single model controls the outcome:
133+
134+
| Model | Role |
135+
|-------|------|
136+
| **GPT-5.4** | Code quality, logic, architecture |
137+
| **Gemini 2.5 Pro** | Security analysis, edge cases, test coverage |
138+
| **Grok 4** | Performance, best practices, independent verification |
131139

132-
| Stage | Model | Role |
133-
|-------|-------|------|
134-
| Security scan | GitHub Actions + Semgrep | SAST, dependency audit |
135-
| Code review | CodeRabbit (free for OSS) | Style, logic, best practices |
136-
| QA validation | Gemini 2.5 Flash | Functional correctness, test coverage |
137-
| Final verdict | Claude Opus 4.6 | Architecture, security, accept/reject |
138-
| Dispute resolution | Claude Opus 4.6 | Appeals from rejected submissions |
140+
Reviews are aggregated into a unified verdict. A spam filter gate runs before any API calls to reject empty diffs, AI slop, and low-effort submissions. Review feedback is intentionally vague — it points to problem areas without giving exact fixes, so contributors actually learn and improve.
139141

140-
No single model controls the outcome. Disagreements escalate to human review.
142+
Disagreements between models escalate to human review.
141143

142144
---
143145

@@ -157,11 +159,11 @@ No single model controls the outcome. Disagreements escalate to human review.
157159

158160
| Allocation | Purpose |
159161
|-----------|---------|
160-
| **Bounty Treasury** | Core allocation — pays contributors for merged PRs. Depletes only as real value is built. |
162+
| **Bounty Treasury** | Core allocation — pays contributors for merged PRs. Grows continuously through fee buybacks. |
161163
| **Liquidity** | Bags bonding curve (permissionless, anyone can buy/sell) |
162-
| **Team** | Locked, vests over 12 months |
164+
| **1% Dev** | Bootstraps early bounties before fee revenue kicks in |
163165

164-
**No VC. No presale. No airdrop farming.**
166+
**No VC. No presale. No airdrop farming.** The bounty budget is not fixed — 5% of every payout buys $FNDRY back from the market, growing the treasury over time. More work shipped = more buy pressure = larger bounty pool.
165167

166168
### How to Earn $FNDRY
167169

@@ -203,7 +205,7 @@ Treasury Pool ──► Escrow PDA ──► Bounty Winner
203205
| Smart Contracts | Solana Anchor (Rust) |
204206
| Backend | FastAPI (Python) + PostgreSQL + Redis |
205207
| Frontend | React + TypeScript + Tailwind |
206-
| LLM Router | Opus 4.6, GPT-5.3 Instant, Gemini 2.5 Flash, Grok 3 Mini, Perplexity Sonar |
208+
| LLM Router | GPT-5.4, Gemini 2.5 Pro, Grok 4, Claude Opus 4.6, Perplexity Sonar |
207209
| Code Review | CodeRabbit (org-wide, free for OSS) |
208210
| CI/CD | GitHub Actions |
209211
| Hosting | DigitalOcean + Nginx |
@@ -277,18 +279,21 @@ cd contracts && anchor build && anchor test
277279
- [x] Landing page live at [solfoundry.org](https://solfoundry.org)
278280
- [x] $FNDRY token launched on [Bags.fm](https://bags.fm/launch/C2TvY8E8B75EF2UP8cTpTp3EDUjTgjWmpaGnT74VBAGS)
279281
- [x] Telegram management bot (PR review, bounty tracking, auto-payout)
280-
- [x] AI code review pipeline (GPT-4o review → Telegram approve/deny)
282+
- [x] AI code review pipeline (multi-LLM: GPT-5.4 + Gemini 2.5 Pro + Grok 4)
281283
- [x] Bounty tier system (T1/T2/T3 with issue templates)
282284
- [x] Auto-payout on merge ($FNDRY → contributor wallet, instant)
283285
- [x] Wallet detection (GitHub Action warns missing wallet on PRs)
284286
- [x] Contributor leaderboard
287+
- [x] Spam filter gate (pre-review filter for empty diffs, AI slop, bulk dumps)
288+
- [x] Claim guard (auto-reply on T1 FCFS bounties)
289+
- [x] Vague review feedback (no exact fixes — contributors must think)
285290
- [ ] Phase 1: Solana Anchor contracts (Escrow, Reputation, Treasury PDAs)
286291
- [ ] Phase 2: FastAPI backend (bounty CRUD, agent registry, LLM router)
287292
- [ ] Phase 3: Management automaton (cellular agent cells)
288293
- [ ] Phase 4: The Foundry Floor dashboard (React)
289-
- [ ] Phase 5: CodeRabbit integration + multi-LLM review pipeline
294+
- [ ] Phase 5: Stale PR auto-closer, advanced anti-spam
290295
- [ ] Phase 6: On-chain reputation system
291-
- [ ] Post-launch: Automated bounty creation by management automaton
296+
- [ ] Ongoing: New bounties posted continuously — the factory never stops building
292297

293298
---
294299

0 commit comments

Comments
 (0)