revfactory/claude-code-harness
Agent Claude Code
A coding agent that designs an MVC structure for an Express TODO REST API and creates the initial project scaffold. MVC separates data handling, request logic, and application flow into distinct parts.
revfactory/claude-code-harness
Agent Claude Code
A coding agent that implements the routes, controllers, models, and middleware for a TODO REST API. These parts define the API's URLs, request handling, data representation, and shared request processing.
revfactory/claude-code-harness
Agent Claude Code
A coding agent that writes and runs Jest tests for a TODO REST API. Jest is a JavaScript testing tool, and edge cases are unusual or boundary inputs that can expose bugs.
revfactory/claude-code-harness
Agent Claude Code
An analysis-focused coding agent. The available description identifies its role, responsibilities, tools, and outputs but does not explain their specific details.
revfactory/claude-code-harness
Agent Claude Code
A code-fixing agent for an AsyncCache race condition, where overlapping asynchronous operations can interfere with shared data.
revfactory/claude-code-harness
Agent Claude Code
A verification agent that uses Jest, a JavaScript testing tool, to check an AsyncCache bug fix and test simultaneous operations and regressions.
revfactory/claude-code-harness
Agent Claude Code
A code-refactoring agent that reorganises a calc() function using the Strategy pattern and the single-responsibility principle, which keeps each part focused on one job.
revfactory/claude-code-harness
Agent Claude Code
A checking agent that compares README format tokens and example output with the behaviour of the actual source code.
revfactory/claude-code-harness
Agent Claude Code
An agent focused on analysing application programming interfaces (APIs), which let software systems communicate with each other.
revfactory/claude-code-harness
Agent Claude Code
An AI agent role focused on writing documentation. The available description identifies its role and outputs but does not provide further implementation details.
revfactory/claude-code-harness
Agent Claude Code
A specialised coding agent for building command-line interfaces, with defined responsibilities, tools, and outputs. A command-line interface is a program controlled by typed terminal commands.
revfactory/claude-code-harness
Agent Claude Code
A specialised coding agent for core-builder work, with defined responsibilities, tools, and outputs.
revfactory/claude-code-harness
Agent Claude Code
An example-writing agent that creates practical code examples for five state-management libraries. State management is how an application stores and shares changing data.
revfactory/claude-code-harness
Agent Claude Code
A report-writing agent that grades five libraries from A to F across nine comparison categories and produces an overall matrix and recommendation guide.
revfactory/claude-code-harness
Agent Claude Code
A research agent that systematically collects technical data about five React state-management libraries: Redux Toolkit, Zustand, Jotai, Valtio, and Recoil. React state management is how an application stores and shares changing data.
revfactory/claude-code-harness
Agent Claude Code
An error-handling agent for designing MiniLang's error-class hierarchy, tracking line and column numbers, and creating user-friendly error messages. A class hierarchy groups related error types in code.
revfactory/claude-code-harness
Agent Claude Code
A tree-walking interpreter that visits an abstract syntax tree and executes it. It also provides environments for scope chains and closures, plus built-in functions.
revfactory/claude-code-harness
Agent Claude Code
A lexer and Pratt parser for the MiniLang programming language. A lexer turns source text into tokens, while a parser turns those tokens into an abstract syntax tree, a structured representation of the code.
revfactory/claude-code-harness
Agent Claude Code
A test and usage layer for a small programming language, with four suites covering the lexer, parser, interpreter, and integration. It also includes example programs and a REPL, an interactive prompt for entering code and seeing results.
revfactory/claude-code-harness
Agent Claude Code
Shared infrastructure for microservices, including an event bus, correlation IDs, and logging. An event bus sends messages between services; a correlation ID links related messages and logs across one operation.
revfactory/claude-code-harness
Agent Claude Code
An end-to-end integration test suite for five order scenarios: success, insufficient stock, payment failure, simultaneous orders, and timeout. End-to-end tests check the complete flow across connected parts of a system.
revfactory/claude-code-harness
Agent Claude Code
A general-purpose SAGA orchestrator, a component that coordinates a multi-step operation across services. It includes steps, compensation actions, timeouts, and compensating transactions that undo earlier work after a failure.
revfactory/claude-code-harness
Agent Claude Code
A set of four independent services for orders, inventory, payments, and notifications. They communicate only by sending events, which are messages that announce something happened.
revfactory/claude-code-harness
Agent Claude Code
A collection of core parts for running queries, evaluating expressions, combining results, and storing data. SQL three-valued NULL logic means comparisons can produce true, false, or unknown.