Status: ✅ Phase 1 Live - Core fork infrastructure and simulation features are implemented and functional. Phase 2+ (persistent sessions, Tevm Black) are planned.
For Phase 2+ specifications, see Fork Mode Engineering Spec.
| #!/usr/bin/env bun | |
| /** @jsxImportSource smithers-orchestrator */ | |
| /** | |
| * Build Smithers-Py E2E | |
| * | |
| * This workflow implements the smithers-py Python library based on the spec in issues/smithers-py.md | |
| * Uses a Ralph loop to iteratively build each milestone: | |
| * - M0: Core runtime skeleton (Plan IR, JSX runtime, XML serializer, state stores, tick loop) | |
| * - M1: Runnable nodes + event handlers (Claude executor, PydanticAI integration) | |
| * - M2: MCP server MVP (resources, tools, transports) |
| /** | |
| * CoverageLoop - While-based loop for test coverage improvement | |
| */ | |
| import type { ReactNode } from 'react' | |
| import { useRef } from 'react' | |
| import { While, useWhileIteration } from '../../src/components/While.js' | |
| import { useSmithers } from '../../src/components/SmithersProvider.js' | |
| import { Claude } from '../../src/components/Claude.js' | |
| import { useMount } from '../../src/reconciler/hooks.js' |
Status: ✅ Phase 1 Live - Core fork infrastructure and simulation features are implemented and functional. Phase 2+ (persistent sessions, Tevm Black) are planned.
For Phase 2+ specifications, see Fork Mode Engineering Spec.
| #!/bin/bash | |
| # | |
| # Ralph Wiggum Autonomous Loop | |
| # | |
| # This script runs Claude Code in an infinite loop, feeding it the ralph wiggum | |
| # prompt each iteration. The agent will autonomously progress through the | |
| # implementation tasks, write reports, and create commits. | |
| # | |
| # Usage: | |
| # ./scripts/ralph.sh |
| def ResearchAgent(props): | |
| phase, set_phase = use_state("research") | |
| sources, set_sources = use_state([]) | |
| analyses, set_analyses = use_state({}) | |
| if phase == "research": | |
| def on_done(r): | |
| set_sources(r["sources"]) | |
| set_phase("analyze") |
| #!/usr/bin/env bun | |
| /** | |
| * Prometheus MCP Server | |
| * | |
| * Enables AI agents to query Prometheus metrics for debugging and observability. | |
| * Provides tools to: | |
| * - Query instant metrics | |
| * - Query range metrics over time | |
| * - List available metrics | |
| * - Get service health status |
Multi Injected Provider Discovery - wallets announce themselves, dapps discover them.
Spec: https://eips.ethereum.org/EIPS/eip-6963 Reference: https://github.com/wevm/mipd
Refactor Plue's architecture so ALL traffic flows through Cloudflare:
After this change, the origin server will ONLY accept connections from Cloudflare.
| """ | |
| AI-powered code review workflow with multiple focus areas. | |
| Each focus runs an independent review pass with tool access to explore | |
| the codebase and gather context before making judgments. | |
| """ | |
| from plue import workflow, pull_request | |
| from plue.prompts import CodeReview | |
| from plue.tools import readfile, grep, glob, websearch |
| #!/usr/bin/env bun | |
| /** | |
| * Prometheus MCP Server | |
| * | |
| * Enables AI agents to query Prometheus metrics for debugging and observability. | |
| * Provides tools to: | |
| * - Query instant metrics | |
| * - Query range metrics over time | |
| * - List available metrics | |
| * - Get service health status |