agentsclimarketplace

Proxelar

Skill tdimino/claude-code-minoan/skills/integration-automation/proxelar

A curated ~/.claude/ configuration for professional development workflows — 90+ skills, 46 hooks, and CLI tools

Install
npx -y skills add tdimino/claude-code-minoan --skill proxelar

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

What its author says it does

Copied from the file, not written here

Intercept, inspect, and modify HTTP/HTTPS traffic via a Rust MITM proxy with Lua scripting hooks. Supports API debugging, LLM call capture for evals, endpoint mocking, CORS/auth header injection, latency simulation, and telemetry blocking. Triggers on 'proxy', 'intercept traffic', 'inspect requests', 'mock API', 'capture API calls', 'MITM', 'network debug', 'HTTP inspection'.

SKILL.md

4.7 KB, ~1.2k tokens by cl100k_base, as published. Nobody here has run it

Proxelar

Rust-based MITM proxy for intercepting and transforming HTTP/HTTPS traffic via Lua scripting. Provides TUI, terminal, and web GUI interfaces. Installed via brew install proxelar.

Category

Infrastructure Operations

Modes

ModeCommandWhen to use
Forward proxyproxelarIntercept outbound traffic from any app configured to use 127.0.0.1:8080
Reverse proxyproxelar -m reverse --target http://localhost:3000Inspect traffic to a local dev server without configuring the client
Web GUIproxelar -i guiAgent-visible network inspector at http://localhost:8081 — screenshot for visual feedback
Scriptedproxelar --script path/to/hook.luaAutomated request/response transformation via Lua hooks

Combine modes: proxelar -m reverse --target http://localhost:3000 -i gui --script scripts/log_to_jsonl.lua

CLI Reference

FlagDescriptionDefault
-i, --interfaceterminal, tui, guitui
-m, --modeforward, reverseforward
-p, --portListening port8080
-b, --addrBind address127.0.0.1
-t, --targetUpstream target (required for reverse mode)--
--gui-portWeb GUI port8081
--ca-dirCA certificate directory~/.proxelar
-s, --scriptLua script for request/response hooks--

Lua Scripting

Define on_request and/or on_response hooks:

function on_request(request)
    -- request.method, request.url, request.headers, request.body
    -- Return request to forward (modified or not)
    -- Return response table to short-circuit: { status = 403, headers = {}, body = "Blocked" }
    -- Return nil to pass through unchanged
end

function on_response(request, response)
    -- response.status, response.headers, response.body
    -- Return response (modified or not), or nil to pass through
end

Bundled Lua Scripts

Run any script with proxelar --script ~/.claude/skills/proxelar/scripts/<name>.lua

ScriptPurpose
log_to_jsonl.luaLog request/response pairs as JSONL to ~/.proxelar/traffic.jsonl
capture_for_eval.luaCapture LLM API calls (Anthropic/OpenAI/Gemini) as structured JSONL for eval pipelines
mock_api.luaTemplate for mocking API endpoints — edit the mocks table
inject_cors.luaAdd permissive CORS headers to all responses
latency_inject.luaAdd configurable artificial latency to matching URLs
block_telemetry.luaBlock analytics and telemetry domains

Agent Integration

Agent-Browser Bridge

Route agent-browser traffic through Proxelar for combined page + network visibility:

# Terminal 1: start proxelar in reverse mode
proxelar -m reverse --target http://localhost:3000 -i gui --script ~/.claude/skills/proxelar/scripts/log_to_jsonl.lua &

# Terminal 2: navigate through proxelar, then snapshot
agent-browser --proxy "http://127.0.0.1:8080" open http://127.0.0.1:8080 && agent-browser snapshot

Agent Visual Feedback via Web GUI

Start Proxelar with -i gui, then screenshot http://localhost:8081 via Claude-in-Chrome or agent-browser to give the agent network-layer visibility into what the application is doing.

Frametime + Network Correlation

Inject scripts/frametime_bench.js into a running page via mcp__claude-in-chrome__javascript_tool or agent-browser eval. Read console output with pattern p50 to get percentile data. Run alongside latency_inject.lua to correlate network latency with rendering jank.

CA Certificate

First run auto-generates ~/.proxelar/proxelar-ca.pem. Trust it once:

sudo security add-trusted-cert -d -r trustRoot -k /Library/Keychains/System.keychain ~/.proxelar/proxelar-ca.pem

Or visit http://proxel.ar through the proxy for guided install.

Gotchas

  • Check port 8080 is free before starting: lsof -i :8080
  • Reverse mode requires --target — CLI errors immediately if omitted
  • Lua scripts are loaded once at startup; edit requires restart
  • Web GUI binds to 127.0.0.1:8081 by default; use --addr 0.0.0.0 for remote access
  • WebSocket traffic passes through but Lua hooks only fire on HTTP request/response, not individual WS frames
  • TUI and Web GUI support interactive request inspection, editing, and dropping — not just passive viewing

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.