circuit
CLI

circuit uninstall

Remove Circuit's instruction block from a project and print the host removal commands.

CLI only.

circuit uninstall [--dir <path>] [--json]

Strip the Circuit instruction block from a project's AGENTS.md and CLAUDE.md, then print the commands that remove the plugin from your host. Install adds a marked block that tells the agent to start every task with Circuit; removing the plugin without removing that block leaves a dangling instruction in future sessions.

The command removes every well-formed block between <!-- circuit:start --> and <!-- circuit:end -->, plus one blank line before it, and leaves the rest of the file alone. A file with malformed markers is reported and left untouched.

Flags

FlagDescriptionDefault
--dir <path>Project directory to clean.current directory
--jsonPrint a machine-readable result.

Examples

Clean the current project, then run the printed host commands:

circuit uninstall

Clean another checkout:

circuit uninstall --dir ~/code/other-project

Remove the plugin from the host. For Claude Code:

claude plugin uninstall circuit@circuit
claude plugin marketplace remove circuit

For Codex:

codex plugin marketplace remove circuit

On this page