agentsclimarketplace

Turbo

Skill 2389-research/speed-run/skills/turbo

Token-efficient code generation pipeline - parallel implementation with hosted LLM (Cerebras) for ~60% token savings. Includes MCP server.

Install
npx -y skills add 2389-research/speed-run --skill turbo

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Direct code generation via hosted LLM (Cerebras). Write a contract prompt, generate code, fix surgically. Part of speed-run pipeline.

SKILL.md

3.5 KB, as published. Nobody here has run it

Turbo

Direct code generation via hosted LLM. Claude writes the contract, Cerebras implements the code, files are written directly to disk.

Announce: "I'm using speed-run:turbo for hosted code generation."

When to Use

Use turbo for:

  • Algorithmic code (rate limiters, parsers, state machines)
  • Multiple files (3+)
  • Boilerplate-heavy implementations
  • Token-constrained sessions

Use Claude direct instead for:

  • CRUD/storage operations (Claude is cheaper due to no fix overhead)
  • Single implementation with complex coordination
  • Speed-critical tasks where fix cycles are costly

Tradeoffs

AspectClaude DirectTurbo (Hosted LLM)
Speed~10s~0.5s
Token CostHigher~90% savings
First-pass Quality~100%80-95%
Fixes Needed00-2 typical

Workflow

Step 1: Write Contract Prompt

Structure your prompt with exact specifications:

Build [X] with [tech stack].

## DATA CONTRACT (use exactly these models):

[Pydantic models / interfaces with exact field names and types]

Example:
class Task(BaseModel):
    id: str
    title: str
    completed: bool = False
    created_at: datetime

class TaskCreate(BaseModel):
    title: str

## API CONTRACT (use exactly these routes):

POST /tasks -> Task           # Create task
GET /tasks -> list[Task]      # List all tasks
GET /tasks/{id} -> Task       # Get single task
DELETE /tasks/{id} -> dict    # Delete task
POST /reset -> dict           # Reset state (for testing)

## ALGORITHM:

1. [Step-by-step logic for the implementation]
2. [Include state management details]
3. [Include edge case handling]

## RULES:

- Use FastAPI with uvicorn
- Store data in [storage mechanism]
- Return 404 for missing resources
- POST /reset must clear all state and return {"status": "ok"}

Step 2: Generate Code

mcp__speed-run__generate_and_write_files
  prompt: [contract prompt]
  output_dir: [target directory]

Returns only metadata (files written, line counts). Claude never sees the generated code.

Step 3: Run Tests

Run the test suite against generated code.

Step 4: Fix (if needed)

For failures, use Claude Edit tool for surgical fixes (typically 1-4 lines each).

Common fixes:

Error TypeFrequencyFix Complexity
Missing utility functionsOccasional4 lines
Logic edge casesOccasional1-2 lines
Import orderingRare1 line

Step 5: Re-test

Repeat Steps 3-4 until all tests pass. Even with fixes, total token cost is much lower than Claude generating everything.

What Hosted LLM Gets Right (~90%)

  • Data models match contract exactly
  • Routes/endpoints correct
  • Core algorithm logic
  • Basic error handling

Configuration

VariableDefaultDescription
CEREBRAS_API_KEY(required)Your API key
CEREBRAS_MODELgpt-oss-120bModel to use

Available models:

ModelPrice (in/out)SpeedNotes
gpt-oss-120b$0.35/$0.753000 t/sDefault - best value, clean output
llama-3.3-70b$0.85/$1.202100 t/sReliable fallback
qwen-3-32b$0.40/$0.802600 t/sHas verbose <think> tags
llama3.1-8b$0.10/$0.102200 t/sCheapest, may need more fixes

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.