AgentClick

Review before your agent acts

A browser-based review layer for autonomous AI agents. Agents propose actions, you inspect and edit in a real UI, then the agent continues.

$ npm install -g @harvenstar/agentclick
npm version GitHub stars MIT license

A human-in-the-loop safeguard

Most agents go straight from decision to action. AgentClick adds a review step so you stay in control without slowing things down.

1

Agent proposes

The agent sends an action, draft, or plan to AgentClick via a simple HTTP POST.

2

You review & edit

A purpose-built UI opens in your browser. Read, edit, rewrite, or reject before anything runs.

3

Agent continues

The agent picks up your edits and proceeds. Your preferences are saved for next time.

Every review type your agent needs

From emails to code diffs to multi-step plans, AgentClick gives you a real UI for every kind of agent interaction.

Email Review
Email Review

Browse, triage, and reply

View your inbox, edit reply drafts paragraph-by-paragraph, and let the agent learn your writing style over time.

Plan Review
Plan Review

Inspect multi-step plans

Visualize execution plans as a DAG. Add constraints, skip steps, or restructure before the agent starts.

Code Review
Code Review

GitHub-style diffs

See exactly which files change with full diff views before any command runs. File tree, add/modify/delete status, syntax highlighting.

Trajectory Review
Trajectory Inspection

Replay every decision

Review tool calls, decisions, errors, and retries in a visual timeline. Catch mistakes and provide corrections.

Action Approval
Action Approval

Approve or reject with reasons

High-risk actions get a dedicated approval screen with risk levels and space for notes before execution.

Dashboard
Dashboard

All sessions at a glance

Track pending, active, and completed review sessions. Memory management, preferences, and session history in one place.

Works with your agent

AgentClick is framework-agnostic. Any agent that can POST JSON and poll an HTTP endpoint can use it. Skill files make integration effortless.

Claude Code
Anthropic's CLI agent
🛠
Codex
OpenAI's coding agent
🤖
OpenClaw
Open-source agent platform
🔧
Custom Agents
Any tool-calling agent

Up and running in seconds

Install globally, start the server, and tell your agent to use it.

# Install
npm install -g @harvenstar/agentclick

# Start the review server
agentclick

# For remote access (phone, another machine)
agentclick --remote

Then tell your agent: "AgentClick is running at http://localhost:38173. Use it whenever you need a browser review UI."