Codeset improves coding agents with repo-specific context from git history

What Codeset does
Codeset runs a pipeline over your git history and generates files that live directly in your repository. These files include: past bugs per file with root causes, known pitfalls, co-change relationships, and test checklists. The coding agent reads these files as part of its normal context window. No RAG, no vector database at query time, no runtime infrastructure required—just static files your agent picks up like any other file in the repo.
Benchmark results
The team tested Codeset with two benchmarks:
- codeset-gym-python (150 tasks, same subset as Claude eval): 60.7% → 66% (+5.3 percentage points)
- SWE-Bench Pro (400 randomly sampled tasks): 56.5% → 58.5% (+2 percentage points)
This shows consistent improvement across both benchmarks, with smaller gains on SWE-Bench Pro compared to codeset-gym. The codeset-gym benchmark is public with full task list and verifiers available for methodology verification.
Pricing and availability
Codeset costs $5 per repository, one-time payment. Use code CODESETLAUNCH for a free trial. Full evaluation artifacts are available at https://github.com/codeset-ai/codeset-release-evals.
📖 Read the full source: r/LocalLLaMA
👀 See Also

iai-mcp: A local daemon for persistent OpenClaw memory across sessions
iai-mcp is an open-source daemon that captures all OpenClaw conversations, stores them in three memory tiers with local neural embeddings and AES-256 encryption, and feeds relevant context back on new sessions — verbatim recall >99%, retrieval <100ms, session-start cost <3k tokens.

CLI-Anything-WEB: Open-source plugin that reverse-engineers any website into a Python CLI for Claude Code
CLI-Anything-WEB is an open-source Claude Code plugin that watches your browser traffic, reverse-engineers the protocol, and generates a full Python CLI with auth, tests, and --json support. 19 sample CLIs included for sites like Reddit, Booking, Airbnb, ChatGPT, and LinkedIn.

GodotIQ MCP Server Gives AI Coding Agents Spatial Understanding of Godot Scenes
GodotIQ is an MCP server that provides coding agents with true understanding of 2D/3D scenes, signals, and code dependencies in Godot. In a test, it autonomously built a twin-stick survivors game in one hour from assets and a prompt.

Claude Code Template Repository for Spring Boot Applications
A GitHub repository provides a Claude Code template for generating Spring Boot applications with best practices for database integration, Kubernetes deployment, and integration testing using Testcontainers.