EveryDev.ai
Subscribe
Home
Tools

3,020+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2063
  • Coding1441
  • Infrastructure665
  • Marketing524
  • Projects470
  • Research437
  • Design408
  • Analytics371
  • MCP268
  • Security265
  • Testing255
  • Data249
  • Integration183
  • Prompts183
  • Communication172
  • Learning166
  • Extensions163
  • Voice146
  • Commerce132
  • DevOps115
  • Web84
  • Finance24
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. lavish-axi
    lavish-axi icon

    lavish-axi

    Human-in-the-Loop Training
    Featured

    A local-first CLI editor for agent-generated HTML artifacts that lets humans annotate elements, send feedback, and collaborate with AI agents in a browser UI.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open source under the MIT License. No cost to use, modify, or distribute.

    Engagement

    Available On

    Windows
    macOS
    Linux
    Web
    API

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Human-in-the-Loop TrainingAgent FrameworksAI Coding Assistants

    Alternatives

    spec-kit-loopSapienX AgentOSe2a
    Developer
    Kun ChenKun Chen builds open-source developer tooling focused on AI-…

    Listed Jul 2026

    About lavish-axi

    lavish-axi is an open-source CLI tool built by Kun Chen that bridges the gap between AI-generated HTML artifacts and human review. It opens agent-produced HTML files in a local browser, lets users pinpoint elements or selected text, and sends structured feedback back to the agent — all without leaving the editor. The project is published on npm under the MIT license and has accumulated over 1,200 GitHub stars since its creation in May 2026.

    What It Is

    lavish-axi is an AXI (Agent eXtensible Interface) — a CLI that any capable AI agent can invoke directly without prior setup. It solves a specific problem in human-AI collaboration: agents are good at producing rich HTML artifacts (plans, comparisons, diagrams, reports), but the feedback loop typically degrades into screenshots and long text descriptions. lavish-axi restores interactivity by letting humans annotate the live rendered artifact and return precise, structured prompts to the agent.

    How the Collaboration Loop Works

    The core workflow follows four steps:

    • The agent writes an HTML artifact to a local file path.
    • lavish-axi <file_path> opens a local browser UI with the artifact in an iframe.
    • The human annotates text ranges or DOM elements, types feedback, or interacts with native controls.
    • lavish-axi poll long-polls and returns the human's prompts to the agent, including any layout warnings detected at render time.

    Sessions are keyed by canonical file path, so agents never need opaque session IDs. The server binds to loopback by default, keeping the entire feedback loop local with no cloud dependency unless the user explicitly runs lavish-axi share.

    AXI Architecture and Agent Ergonomics

    lavish-axi is designed around agent ergonomics rather than human developer ergonomics. Key design choices include:

    • TOON output (Token-Optimized Output Notation), long polling, and contextual disclosure to minimize token usage.
    • Skill-first discovery — the recommended setup is a single npx skills add command that installs a skill file in the Agent Skills format; the CLI itself is fetched on demand via npx -y lavish-axi.
    • Session hooks for Claude Code, Codex, OpenCode, and GitHub Copilot CLI that surface open sessions and visualization playbooks at the start of each agent session.
    • Playbook system — built-in playbooks (diagram, table, comparison, plan, code, input, slides) teach agents good visualization patterns for common artifact types.

    Layout Safety and Feedback Controls

    lavish-axi includes an open-time layout gate: the browser chrome masks each artifact until an in-iframe layout audit reports no error-severity findings. The audit checks for horizontal overflow, element overflow, clipped text, and overlapping text, and returns findings via lavish-axi poll as layout_warnings with selector, kind, overflow measurements, viewport width, and severity. This lets agents fix unreadable layouts before asking the human to review.

    Feedback controls support native HTML inputs automatically. Custom clickable elements can be marked with data-lavish-action. The window.lavish.queuePrompt() API lets artifacts queue structured answers from interactive controls before a single submit.

    Export, Sharing, and Local-First State

    • lavish-axi export writes a portable single-file HTML with local assets inlined and the annotation SDK stripped.
    • lavish-axi share publishes the inlined artifact to ht-ml.app, public by default, with optional password protection; the response includes a one-time secret update key.
    • All session state is stored under ~/.lavish-axi/ (or LAVISH_AXI_STATE_DIR) with no cloud dependency in the core loop.
    • Per-asset and per-bundle inline caps default to 10 MB and 25 MB respectively, configurable via environment variables.

    Update: v0.1.32

    The latest release is lavish-axi v0.1.32, published on June 27, 2026. The repository shows active development with CI and release-please automation, 91 forks, and 21 open issues as of early July 2026. The project is written primarily in JavaScript and distributed via npm.

    lavish-axi - 1

    Community Discussions

    Be the first to start a conversation about lavish-axi

    Share your experience with lavish-axi, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open source under the MIT License. No cost to use, modify, or distribute.

    • Full CLI with all commands
    • Local-first HTML artifact review
    • Element and text annotation
    • Layout audit and warnings
    • Export and share to ht-ml.app

    Capabilities

    Key Features

    • Local-first HTML artifact review with no cloud dependency in the core loop
    • Element and text range annotation with precise DOM selectors
    • Long-poll feedback delivery to agents via lavish-axi poll
    • Open-time layout gate with in-iframe audit for overflow, clipped text, and overlapping text
    • Layout warnings returned to agents with selector, kind, overflowPx, viewportWidth, and severity
    • Built-in playbooks for diagrams, tables, comparisons, plans, code, inputs, and slides
    • Skill-first setup via npx skills add in Agent Skills format
    • SessionStart hooks for Claude Code, Codex, OpenCode, and GitHub Copilot CLI
    • Live reload with iframe scroll position preservation
    • Export to portable single-file HTML with local assets inlined
    • Share to ht-ml.app with optional password protection
    • Native HTML control interactivity without data-lavish-action markup
    • window.lavish.queuePrompt() API for structured artifact feedback
    • File-path keyed sessions with no opaque IDs
    • TOON output and contextual disclosure for token efficiency
    • Tailwind CSS v4 + DaisyUI v5 CDN fallback via lavish-axi design
    • Mermaid diagram tooling for flows, architecture, state, and sequence diagrams
    • Loopback-only server binding by default for local security
    • Idle self-shutdown after configurable timeout
    • AXI self-updater via lavish-axi update

    Integrations

    Claude Code
    Codex
    OpenCode
    GitHub Copilot CLI
    Agent Skills (agentskills.io)
    Hermes Agent
    ht-ml.app
    Tailwind CSS v4
    DaisyUI v5
    Mermaid
    npm
    npx
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate lavish-axi and help others make informed decisions.

    Developer

    Kun Chen

    Kun Chen builds open-source developer tooling focused on AI-assisted code quality. The no-mistakes project puts a local AI-driven validation gate in front of git pushes, automating review, testing, docs, and linting before a PR is raised. Chen maintains the project publicly on GitHub under the MIT License and engages with the community via Discord and X.

    Read more about Kun Chen
    WebsiteGitHubX / Twitter
    3 tools in directory

    Similar Tools

    spec-kit-loop icon

    spec-kit-loop

    A Spec Kit extension that engineers safe autonomous agent loops with a maker/checker split, externalized state, and human-in-the-loop guardrails.

    SapienX AgentOS icon

    SapienX AgentOS

    AgentOS is a local-first human operating layer for running AI agents, projects, and operations from a single control surface built on the OpenClaw orchestration runtime.

    e2a icon

    e2a

    Authenticated email gateway for AI agents with SPF/DKIM verified inbound, HMAC-signed delivery, webhook and WebSocket fan-out, human-in-the-loop approval, and TypeScript/Python SDKs.

    Browse all tools

    Related Topics

    Human-in-the-Loop Training

    Platforms that connect organizations with vetted human experts to annotate, label, evaluate, and align AI models, ensuring high-quality training datasets and accurate model evaluation through human judgment.

    35 tools

    Agent Frameworks

    Tools and platforms for building and deploying custom AI agents.

    475 tools

    AI Coding Assistants

    AI tools that help write, edit, and understand code with intelligent suggestions.

    596 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions