Claude Code skill combines DeepMind Aletheia and Anthropic harness approaches

Technical implementation details
A developer has built a Claude Code skill that combines two recent research approaches: DeepMind's Aletheia math research agent and Anthropic's multi-agent coding architecture. The skill creates a synthesis that neither original implementation included.
The pipeline follows a Planner → Generator → Evaluator → Reviser structure. A key innovation is what the developer calls "blind pre-analysis" - the evaluator reasons about the correct approach before it ever sees the candidate code. This extends Aletheia's decoupling concept by having the evaluator form its own expectations first, then grade solutions against them.
After the blind analysis, the evaluator runs the code and grades it against concrete criteria: correctness, completeness, security, resilience, and quality. It returns a structured verdict (CORRECT / FIXABLE / WRONG) that drives targeted revision.
Installation and usage
Installation requires creating a directory and cloning the repository:
mkdir -p ~/.claude/skills/aletheia
# clone repo, copy SKILL.md + evaluator.md + planner.mdUsage examples from the source:
/aletheia Build a rate limiter middleware for Fastify using Redis/aletheia review src/routes/auth.ts/aletheia quick Fix the N+1 query in the dashboard
The skill is available at https://github.com/zhadyz/aletheia-harness.
Research context
DeepMind's Aletheia represents a shift from convergent thinking (reproducing known solutions) to divergent thinking (generating original mathematical results). Anthropic's harness research focused on multi-agent coding architecture but lacked chain-of-thought decoupling in the evaluator. This implementation combines both approaches into a single pipeline.
📖 Read the full source: r/ClaudeAI
👀 See Also

Claw Compactor: 14-stage token compression engine for LLM pipelines
Claw Compactor is an open-source LLM token compression engine using a 14-stage Fusion Pipeline to achieve 54% average compression with zero LLM inference cost. It includes specialized compressors for code, JSON, logs, diffs, and search results with reversible compression capabilities.

Tredict MCP Server Enables Claude to Create and Push Training Plans to Sports Watches
A developer built a Tredict MCP Server for Claude.ai and Claude Code that creates complex endurance training plans via prompts and automatically uploads structured workouts to Garmin, Coros, Suunto, and Wahoo watches. The server includes an MCP App for visual feedback within Claude chat.

Slack Plugin for Claude Code: Connect to Slack for Context and Updates
Slack has released a new plugin for Claude Code that enables connection to Slack for search, messaging, and document creation. The plugin allows Claude Code to access Slack context to unblock technical problems and post updates.

Claude-ETA Plugin Adds Task Timing and Repair Loop Detection to Claude Code
Claude-ETA is a Claude Code plugin that times tasks, learns your actual velocity, and feeds real data back into Claude before it responds. It also detects repair loops by fingerprinting error content and intervenes after three identical failures.