Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,21 @@ The core loop:
5. **GenLayer** scores each dimension on-chain: 5 validators × 5 exec_prompts = 25 independent evaluations under `strict_eq` consensus.
6. **Company** reads only the top-scored PRs (reject threshold filters noise automatically), picks **one** winner, escrow releases the payment.

## Quick Start

1. **Prerequisites**
- [Node 24+](https://nodejs.org/)
- [pnpm 10+](https://pnpm.io/installation)
- [Solana CLI](https://docs.solana.com/cli/install)

2. **Install and run**
```bash
pnpm install
cp frontend/.env.example frontend/.env.local
pnpm dev
```
Run `pnpm dev` from the `/frontend` directory.

## Why hybrid (Opus + GenLayer)

GenLayer has a practical ~256-token output ceiling per `exec_prompt`. Asking it to read a full 10K-token PR and emit a verdict is not feasible. So:
Expand Down