charles-proxy-extract

charles-proxy-extract is a skill for Claude Code from eric861129/SKILLS_All-in-one. It costs 69 tokens per session (1,411 once invoked), scanned A, original, MIT.

A parser for Charles Proxy session files, which contain captured HTTP and HTTPS network traffic. It extracts request and response details such as URLs, methods, headers, bodies, and status codes.

In plain words
What is it for?
Use it to examine Charles sessions, filter calls by URL or HTTP method, inspect API payloads, and export captured traffic data.
Why use it?
It turns recorded network traffic into structured data that is easier to inspect when an API call or web request behaves unexpectedly.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it to examine Charles sessions, filter calls by URL or HTTP method, inspect API payloads, and export captured traffic data.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/eric861129/skills_all-in-one/charles-proxy-extract
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add eric861129/SKILLS_All-in-one --skill charles-proxy-extract
Clone the repo
git clone --depth 1 https://github.com/eric861129/SKILLS_All-in-one

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for charles-proxy-extract

README.md
[![agentmods](https://agentmods.dev/badge/skills/eric861129/skills_all-in-one/charles-proxy-extract/github.svg)](https://agentmods.dev/skills/eric861129/skills_all-in-one/charles-proxy-extract)
Your own site
<a href="https://agentmods.dev/skills/eric861129/skills_all-in-one/charles-proxy-extract"><img src="https://agentmods.dev/badge/skills/eric861129/skills_all-in-one/charles-proxy-extract/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for charles-proxy-extract

Your own site · 80×15
<a href="https://agentmods.dev/skills/eric861129/skills_all-in-one/charles-proxy-extract"><img src="https://agentmods.dev/badge/skills/eric861129/skills_all-in-one/charles-proxy-extract.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 69 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,411 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00069 $0.01411
Opus 5 $0.00034 $0.00705
Sonnet 5 $0.00014 $0.00282
Haiku 4.5 $0.00007 $0.00141

Measured 9d ago against content hash 250a6ea722ad, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

charles-proxy-extract scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (extract_responses.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

public/SKILLS/Development & Code Tools/charles-proxy-extract/SKILL.md · 181 lines

How it starts

The opening of the file, as written. The whole thing — 181 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Charles Proxy Session Extractor

Parses and extracts structured data from Charles Proxy session files (.chlsj format).

Prerequisites

  • Python 3.x (no external dependencies required)
  • Charles Proxy session file in .chlsj format

When to Use This Skill

Use this skill when the user:

  • Mentions "Charles Proxy" or "Charles session"
  • Asks to "extract", "analyze", or "inspect" .chlsj files
  • Wants to filter HTTP/HTTPS requests by endpoint or method
  • Needs to examine API request/response data from proxy logs
  • Wants to export network traffic data to JSON

How to Execute This Skill

When the user asks to extract, analyze, or inspect Charles Proxy session files, run the Python script using the Bash tool:

python3 ./extract_responses.py <file.chlsj> <pattern> [options]

Required Parameters

  1. <file.chlsj> - Path to the Charles Proxy session file (use exact path provided by user)
  2. <pattern> - URL path pattern to match (e.g., "/today", "/logs", "/" for all)

Optional Flags

  • -m, --method METHOD - Filter by HTTP method (GET, POST, PUT, PATCH, DELETE)
  • -f, --first-only - Show only first matching request (for quick inspection)
  • -s, --summary-only - Show statistics without response bodies
  • -o, --output FILE - Save responses to JSON file
  • --no-pretty - Disable JSON pretty-printing

Execution Examples

Extract all /today responses:

python3 ./extract_responses.py session.chlsj "/today"

Filter by POST method (automatically shows request bodies):

python3 ./extract_responses.py session.chlsj "/logs" --method POST

Quick peek (first result only):

python3 ./extract_responses.py session.chlsj "/users" --first-only

Summary without bodies:

python3 ./extract_responses.py session.chlsj "/" --summary-only

Export to file:

python3 ./extract_responses.py session.chlsj "/items" --output items_data.json

User Request Patterns

When users say things like:

  • "Extract [endpoint] from [file]" → Use basic extraction with pattern matching
  • "Show POST/PUT/PATCH to [endpoint]" → Add --method flag (request bodies auto-shown)
  • "First [endpoint] response" → Add --first-only flag
  • "Summarize [file]" or "What's in [file]" → Add --summary-only flag
  • "Save [endpoint] to [output]" → Add --output flag
  • "Compare [endpoint] with model" → Extract first response, then analyze structure

Read the full file on GitHub · 181 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 181 lines · 69 tokens per session scan A 250a6ea722ad

Subscribe to this mod's changes

charles-proxy-extract is a skill published in the GitHub repository eric861129/SKILLS_All-in-one (52 stars, last pushed 4mo ago), licensed MIT. It adds 69 tokens to every session and 1,411 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

codexless-browser-repair

Diagnose and temporarily repair Codexless Browser compatibility after a Codex, Chrome Skill, or Browser runtime update when Codexless Browser stopped working. Use for current-version Codexless Browser compatibility drift, not ordinary website bugs, general Browser operation, Codexless install/update work, or long-term…

liyana31811/Codexless · 70 tokens

skillnote-doctor

A diagnostic tool for OpenClaw agents -- checks skill registry connectivity, AGENTS.md setup, config file validity, and installed skill health. Use when your setup seems broken, skills aren't loading, or you want to audit your agent's configuration.

luna-prompts/skillnote · 54 tokens

rubber-ducky

Use when you've planned a non-trivial change and are about to implement it, finished a complex or multi-file piece of work, just wrote tests, or are stuck on repeated failures — and any time the user says "rubber duck this", "rubber ducky", "get a second opinion", "sanity-check my plan", "poke holes in this", "what am…

harnessprotocol/harness-kit · 186 tokens

investigate-ci

Investigates GitHub Actions workflow failures for any repo. Fetches recent runs, identifies failures, extracts error logs, diagnoses root causes, and suggests fixes. Use when a deploy or CI workflow fails and you need to understand why.

mostafa-drz/claude-skills · 50 tokens

rel-ai-investigation

Use for read-only repository questions that need evidence, including architecture audits, feasibility studies, dependency or caller tracing, impact analysis, implementation-status checks, and proof of how something works. Do not use to implement fixes or for final completion or release verification of changes already…

Kyne0328/rel-ai-local-coding-agent · 59 tokens

reconcile

Tripwire check for multi-session drift. Scans state files, recent commits, and file conflicts caused by parallel Claude Code sessions.

conorbronsdon/agent-skills · 29 tokens