Token导航 LogoToken导航TokenDH.com
开发执行命令github未标认证来源可访问许可证需确认审计提醒

http-toolkit-intercepthttp 工具包拦截

Agent Skill

http-toolkit-intercept 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

832

周安装

35

GitHub Stars

64

下载量

291
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:http-toolkit-intercept(http 工具包拦截)
来源仓库:https://github.com/factory-ai/factory-plugins
仓库路径:skills/http-toolkit-intercept
安装命令:
npx skills add https://github.com/factory-ai/factory-plugins --skill http-toolkit-intercept
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/factory-ai/factory-plugins --skill http-toolkit-intercept

简介

用于拦截与修改 HTTP 请求/响应以调试或增强功能。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中实现 A/B 测试或埋点整理。
  • 通过 GitHub 仓库安装,需注入拦截逻辑到请求生命周期。
  • 应避免在生产环境开启详细日志输出。http-toolkit-intercept 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 建议提供开关配置以便快速回滚变更。

SKILL.md

HTTP Toolkit Intercept

Use this skill when you need authoritative evidence of what your program sent to a remote API and what it received back while verifying a code change. Works across any runtime — Node.js, Bun, Deno, Python, Go, Ruby, Java/JVM,.NET, PHP, Rust, shell scripts, etc. — as long as the process respects a proxy.

The reliable pattern is:

  1. Start HTTP Toolkit correctly.
  2. Run the program through the proxy in a mode that produces a machine-readable log (e.g. --output-format json, debug logging, or structured stdout).
  3. Export outbound HTTP requests from HTTP Toolkit.
  4. Pair the outbound HTTP export with the inbound program session log.

Do not rely on TUI screenshots alone when the question is about request payloads, auth headers, or wire-level behavior.

Prerequisites / Known-Good Launch

Start HTTP Toolkit

On Linux/headless environments, plain httptoolkit often fails due to sandbox/X11 issues. Prefer:

xvfb-run --auto-servernum httptoolkit --no-sandbox

If a stale server is already running on ports 45456/45457, stop it first:

pkill -f "HTTP Toolkit Server|httptoolkit|xvfb-run --auto-servernum httptoolkit" || true

Verify the proxy is reachable

# HTTP Toolkit's admin API lives on port 45456/45457 by default.
# Treat 200/401/403 as "reachable"; only connection failure means the server is dead.
curl -s -o /dev/null -w "%{http_code}\n" http://127.0.0.1:45456/config

Quick Start

1. Launch your program with the proxy env vars set

The canonical env vars most runtimes honor:

HTTP_PROXY="http://127.0.0.1:8000" \
HTTPS_PROXY="http://127.0.0.1:8000" \
ALL_PROXY="http://127.0.0.1:8000" \
NO_PROXY="" \
<your-program> <args>

Some runtimes require an extra env var or flag — see the "Runtime proxy matrix" below.

If the HTTP Toolkit CA is not trusted by your runtime, TLS verification will fail. See "TLS Safety" below. Disabling TLS verification is appropriate only for controlled local debugging.

2. Capture the inbound session log

If your program supports a machine-readable output mode (e.g. --output-format stream-json, --json, --log-level debug, structured stdout, or writing to a file), pipe it to a file:

<your-program> exec --output-format stream-json "your input" \
  > /tmp/session-stdout.log 2> /tmp/session-stderr.log

3. Export outbound HTTP from HTTP Toolkit

Either:

  • Use the HTTP Toolkit GUI export (File → Export → JSON / HAR), or
  • Hit the admin API directly. The exact endpoint depends on your HTTP Toolkit version; inspect DevTools in the HTTP Toolkit UI to see the requests it makes.

4. Cross-reference the two streams

  • Outbound HTTP (from HTTP Toolkit): authoritative for request bodies, headers, auth tokens, retry timing.
  • Inbound session log (from the program): authoritative for how your code reacted to the responses.

Together they answer: "what did we send?" and "what did we do with the response?"

What finally worked for payload verification

The critical correct pathways that proved reliable were:

  1. Use a non-interactive / exec mode, not the TUI, when verifying payloads

- Interactive TUIs are slower and much harder to analyze. - Use whatever your program has for scripting (--output-format, --json, --headless, --batch).

  1. Treat outbound and inbound as separate evidence sources

- HTTP Toolkit gives outbound HTTP requests. - The program's session log gives inbound assistant/tool/application behavior. - You need both to answer: "what did the remote return?" and "what did the program actually do with it?"

  1. Set the proxy env vars your specific runtime honors

- HTTP_PROXY/HTTPS_PROXY cover most runtimes, but some (e.g. Bun, Java) require extra vars or flags. - See the "Runtime proxy matrix" below.

  1. Disable TLS verification only for controlled local debugging when needed

- If the HTTP Toolkit CA is not trusted locally, use the runtime-specific escape hatch to skip verification. - Prefer trusting the CA in your OS / language trust store instead. - Never disable TLS in production repros.

  1. Keep runs bounded

- Long network-heavy sessions can take time. - If you only need to prove request shape, export after the relevant request is observed — you do not always need to wait for full completion.

Key Facts

  • Proxy env vars are runtime-specific — know which ones your runtime honors
  • HTTP Toolkit admin API is request-oriented — outbound HTTP comes from HTTP Toolkit, inbound behavior comes from the program log
  • TLS is verified by default — runtime-specific skip flags are local-dev escape hatches only

Runtime proxy matrix

RuntimeProxy env vars / flagsTLS bypass (local dev only)
Node.jsHTTP_PROXY, HTTPS_PROXY, NO_PROXY (most libraries); some HTTP clients need --proxy flags or explicit agent: optionNODE_TLS_REJECT_UNAUTHORIZED=0 or NODE_EXTRA_CA_CERTS=/path/to/ca.pem
BunBUN_CONFIG_PROXY (mandatory — plain HTTP_PROXY/HTTPS_PROXY are silently ignored for Bun's own fetch)NODE_TLS_REJECT_UNAUTHORIZED=0
DenoHTTP_PROXY, HTTPS_PROXY--unsafely-ignore-certificate-errors
Python (requests, httpx)HTTP_PROXY, HTTPS_PROXY, ALL_PROXYREQUESTS_CA_BUNDLE / SSL_CERT_FILE pointing at the HTTP Toolkit CA, or verify=False in code
Python (urllib)Same env varsSSL_CERT_FILE or disable context verification
Go (net/http)HTTP_PROXY, HTTPS_PROXY, NO_PROXY (honored via http.ProxyFromEnvironment)SSL_CERT_FILE or InsecureSkipVerify: true in the transport
RubyHTTP_PROXY, HTTPS_PROXYSSL_CERT_FILE, or OpenSSL::SSL::VERIFY_NONE
Java / JVM-Dhttp.proxyHost=127.0.0.1 -Dhttp.proxyPort=8000 -Dhttps.proxyHost=127.0.0.1 -Dhttps.proxyPort=8000; env vars are not honored by the JVMImport CA into a truststore and pass -Djavax.net.ssl.trustStore=...
.NET / C#HTTP_PROXY, HTTPS_PROXY, ALL_PROXY (on recent runtimes) or configure HttpClient explicitlyTrust CA in OS store, or HttpClientHandler.ServerCertificateCustomValidationCallback
PHP (curl / cli)HTTP_PROXY, HTTPS_PROXY (or per-call CURLOPT_PROXY)CURLOPT_SSL_VERIFYPEER => false
Rust (reqwest)HTTP_PROXY, HTTPS_PROXYdanger_accept_invalid_certs(true) on the client
curl / shellHTTP_PROXY, HTTPS_PROXY env vars or -x/--proxy flag-k / --insecure
Docker containersPass env vars through with -e HTTP_PROXY=...; use host.docker.internal (Mac/Win) or --network=host (Linux) so the container can reach the proxyMount the CA into the image and install it, or use runtime-specific bypass flags

Prefer trusting the HTTP Toolkit CA in your runtime/OS trust store over disabling verification. Bypass flags should be local-dev only.

TLS Safety Guardrails

  • Keep TLS verification enabled whenever possible.
  • Prefer trusting the HTTP Toolkit CA in your local trust store instead of disabling verification.
  • Use runtime-specific TLS-bypass flags only for controlled local debugging in development.
  • Never disable TLS when intercepting production traffic.

Inspecting Captured Logs

Filter to relevant events only

If your program emits newline-delimited JSON, use jq:

jq -c 'select(.type == "tool_call" or .type == "message")' /tmp/session-stdout.log

Adjust the filter to match your program's event schema. For plain-text logs, use rg/grep patterns.

Match outbound HTTP to inbound events

Sort both streams by timestamp, then interleave them. The sequence usually looks like:

outbound POST /api/endpoint        (from HTTP Toolkit)
inbound  event received             (from program log)
inbound  follow-up action           (from program log)
outbound POST /api/endpoint        (next request)

If a program log shows an outbound request that HTTP Toolkit didn't capture, that's a proxy-config bug.

Troubleshooting

ProblemCauseFix
Program hangs, no events after startupProxy env vars not reaching the process, or TLS verification blockingRe-run with the right env vars for your runtime (see matrix); if necessary, enable the runtime's TLS bypass in dev
ECONNRESET / connection reset on every requestRuntime-specific proxy env var missing (e.g. BUN_CONFIG_PROXY for Bun, JVM -D flags for Java)Use the correct runtime-specific proxy config
TLS cert errors via proxyMITM CA not trusted by this runtimeTrust HTTP Toolkit CA in the runtime / OS store, or enable the runtime's TLS bypass in dev only
HTTP Toolkit API 403s on /configAuth-gated config endpointTreat 200/401/403 as reachable; only connection failure means the server is dead
Export has outbound data but no matching inbound eventsDidn't capture the program logAdd > /tmp/session.log redirection to the launch
HTTP Toolkit misses the first requestStarted capturing after the process launchedStart HTTP Toolkit first, THEN launch the program
Container / VM can't reach 127.0.0.1:8000Loopback is container-localUse host.docker.internal (Docker Desktop) or --network=host (Linux)
Program ignores env vars entirelyRuntime doesn't honor env vars (e.g. JVM)Use runtime-specific flags (-Dhttp.proxyHost=... for JVM, etc.)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.72%
按下载量换算110

Claude

29.02%
按下载量换算84

Cursor

19.3%
按下载量换算56

Gemini CLI

9.1%
按下载量换算26

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/factory-ai/factory-plugins --skill http-toolkit-intercept 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills