Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计异常

fiddler-traffic-debuggingfiddler 流量调试

Agent Skill

fiddler-traffic-debugging 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

247

周安装

10

GitHub Stars

4

下载量

78
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:fiddler-traffic-debugging(fiddler 流量调试)
来源仓库:https://github.com/telerik/fiddler-agent-tools
仓库路径:skills/fiddler-traffic-debugging
安装命令:
npx skills add https://github.com/telerik/fiddler-agent-tools --skill fiddler-traffic-debugging
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/telerik/fiddler-agent-tools --skill fiddler-traffic-debugging

简介

fiddler-traffic-debugging 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于需要根据关键词或任务场景进行信息定位的场景。
  • 通过关键词搜索和来源线索筛选目标信息。
  • 安装命令:npx skills add https://github.com/telerik/fiddler-agent-tools --skill fiddler-traffic-debugging。
  • 建议确认权限范围和维护状态后再使用。

SKILL.md

Fiddler Feature Verification

Analyze the traffic generated by a feature run, decide whether the observed HTTP behavior looks correct, and produce a grouped-by-endpoint summary with likely issues.

Operating rules

  1. This skill is MCP-first. Use Fiddler Everywhere MCP tools for traffic analysis whenever they are available in the current session.
  2. Do not use shell tools, rg, grep, workspace file scans, or exported session dumps to inspect traffic if the Fiddler MCP tools are available.
  3. Use ApplyFilters whenever it helps narrow a large or noisy capture to the traffic that matters for the feature verification.
  4. Keep the analysis practical. The goal is to verify whether the feature appears to work, not to produce an exhaustive packet-level audit.
  5. If the Fiddler MCP tools are not available in the current session, stop and tell the user to run fiddler-mcp-setup first, then retry.
  6. Never manually probe /mcp or send raw MCP protocol requests with curl when the runtime already exposes Fiddler MCP tools.
  7. Use only tool names that the host advertises in tools/list. Never invent or assume tool names beyond the ones available in the session.

Prerequisites check

  1. Verify that Fiddler Everywhere is installed.
  2. Verify that the Fiddler Everywhere MCP tools are available.

Useful tools and how to use them

GetStatus

Use this first to confirm that Fiddler is reachable and in a usable state.

What it helps verify:

  • Whether the user is logged in
  • Whether Fiddler appears to be capturing traffic
  • Whether there are browser or terminal instances attached
  • Whether HTTPS inspection prerequisites look healthy

GetSessionsCount

Use this as a fast sanity check before deeper analysis.

What it helps verify:

  • Whether anything has been captured at all
  • Whether the user likely ran the feature recently enough to analyze it

GetSessions

This is the main tool for verification. Use it to pull the captured session list, then narrow the traffic locally in memory.

Use it to:

  • Find the requests most likely related to the feature run
  • Identify the order of requests
  • Spot failures, retries, redirects, preflights, and slow calls
  • Build endpoint groups for the final summary

When narrowing the list, prefer clues from the user's request such as:

  • Hostname
  • URL path or path fragment
  • HTTP method
  • Feature name or keyword
  • A rough time window such as "just now" or "after clicking Save"

If the session list is already manageable, narrowing locally in memory is usually enough. If the capture is large or noisy, use ApplyFilters to focus Fiddler on the host, endpoint family, method, or failure pattern that matters.

GetSessionDetails(id)

Use this after GetSessions identifies the interesting sessions.

Good candidates for detail inspection:

  • Any session with statusCode >= 400
  • Any session with an empty or missing statusCode
  • The slowest session for an endpoint
  • A representative successful request for an important endpoint
  • OPTIONS preflight requests and the request immediately after them when CORS might be involved

Use the details to inspect:

  • Request headers and response headers
  • Request and response bodies
  • Redirect targets
  • Content length and content type
  • Auth headers, cookies, validation messages, and error payloads

Rate limit: avoid firing more than 5 GetSessionDetails calls in rapid succession.

ApplyFilters

Use this when filtering will make the analysis faster or more reliable.

Possible use cases:

  • Show only traffic for one host
  • Show only failing requests
  • Focus the UI on a particular endpoint family
  • Reduce a very large capture to the recent feature run you actually need to inspect
  • Isolate retries, auth failures, or one request method such as POST

It is often useful when GetSessions returns too much unrelated traffic.

Suggested workflow

This workflow is intentionally flexible. Adapt it to the feature and the amount of captured traffic.

  1. Understand the feature scope.

- Extract any useful clue from the user's request: action performed, host, path fragment, method, or expected endpoint. - If the request is vague, analyze the most recent traffic and say that the result is based on the recent capture.

  1. Pull the session list with GetSessions.

- Shortlist sessions that match the feature scope. - If no clear clue is available, focus on the most recent burst of related sessions rather than the entire capture history. - If the capture is too noisy to reason about comfortably, use ApplyFilters to narrow the visible traffic before continuing.

  1. Group traffic by endpoint.

- Group by host + normalized path. - Strip query strings for grouping. - Treat numeric IDs and UUID-like segments as path variables when useful, so /users/123 and /users/456 are understood as the same endpoint family.

  1. Review the sequence.

- Check whether the request flow looks plausible for the feature. - Look for expected follow-up calls such as create then fetch, preflight then actual request, upload then status poll, or save then refresh. - If a needed follow-up call is absent, call that out as a possible issue rather than a certainty unless the evidence is strong.

  1. Inspect representative details.

- Fetch details for failures, slow calls, mixed-status endpoints, and one or two key successful endpoints. - Use response bodies and headers as evidence when explaining whether the feature appears healthy.

  1. Decide whether the feature appears to work properly.

- A healthy feature run usually shows the expected endpoints, mostly successful status codes, reasonable latency, and no repeated failures. - If the traffic is incomplete or ambiguous, say so directly.

Output format

Do not dump raw JSON. Write a plain-language verification report with these sections.

Feature Verification

Overall verdict: [Feature appears healthy / Feature appears partially successful / Feature likely failed / Inconclusive]

Traffic window: [what part of the capture you analyzed]

Endpoint summary:
- METHOD HOST /normalized/path
  Calls: [N]
  Statuses: [e.g. 200 x3, 401 x1]
  Timing: [avg X ms, max Y ms]
  What happened: [plain-language summary of what this endpoint appears to do]
  Evidence: [optional header/body/status detail when useful]

- METHOD HOST /another/path
  Calls: [N]
  Statuses: [...]
  Timing: [...]
  What happened: [...]

Possible issues:
- ⚠️ [Endpoint] [Issue name] — [what looks wrong and why it matters]
- ⚠️ [Endpoint] [Issue name] — [supporting evidence]

Conclusion:
- [Short answer on whether the feature appears to work properly]

Output requirements

  1. Group the summary by endpoint, not by raw session ID.
  2. Include status-code distribution and timing for each endpoint group.
  3. If there are no obvious issues, say so explicitly: No obvious issues detected in the analyzed traffic.
  4. If there are issues, prefix each issue with ⚠️, name it clearly, and explain what it appears to be.
  5. If the capture is ambiguous or incomplete, say that the conclusion is tentative.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.48%
按下载量换算25

Claude

32.23%
按下载量换算25

Cursor

17.51%
按下载量换算14

Gemini CLI

8.48%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills