Claude Code Skills Marketplace is a collection and marketplace of skills, plugins, agents, and instructions that extend Claude Code with specialized development workflows. It is for developers who want to install existing workflows or create, validate, and package their own Claude Code skills.
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.
npx skills add daymade/claude-code-skills --skill read-claude-web-conversationgit clone --depth 1 https://github.com/daymade/claude-code-skillsWrote 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.
[](https://agentmods.dev/skills/daymade/claude-code-skills/read-claude-web-conversation)<a href="https://agentmods.dev/skills/daymade/claude-code-skills/read-claude-web-conversation"><img src="https://agentmods.dev/badge/skills/daymade/claude-code-skills/read-claude-web-conversation/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.
<a href="https://agentmods.dev/skills/daymade/claude-code-skills/read-claude-web-conversation"><img src="https://agentmods.dev/badge/skills/daymade/claude-code-skills/read-claude-web-conversation.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00239 | $0.06362 |
| Opus 5 | $0.00120 | $0.03181 |
| Sonnet 5 | $0.00048 | $0.01272 |
| Haiku 4.5 | $0.00024 | $0.00636 |
Grade A, and why
read-claude-web-conversation scanned grade A with 1 finding 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.
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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
approach fails SILENTLY: curl/WebFetch hit a Cloudflare challenge; get_page_text How it starts
The opening of the file, as written. The whole thing — 459 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Read Claude.ai Web Conversation
Pull a Claude.ai web conversation into a full, structured transcript — every message and every tool call, not just what is currently on screen.
Verified against Claude.ai's web API as of July 2026. These are the same private JSON endpoints the Claude.ai front-end calls; they are not a documented or version-stable public API, so if a request 404s, re-derive the shape from the Network tab (see references/claude-web-api-extraction.md).
This skill vs. its siblings
Pick by the source you are holding, not by the word "conversation":
| Source | Use |
|---|---|
A live claude.ai/chat/… or claude.ai/share/… URL |
This skill |
Local Claude Code sessions (~/.claude/projects/*.jsonl) |
read-claude-code-history |
An already-exported .txt / .json conversation file |
claude-export-txt-better |
Why the obvious approaches fail (read this first)
Four traps, and every one of them fails silently — you get back something that looks like a complete export, and you only notice the loss if you happen to know how long the conversation really was. Assume you are being lied to by default; the fidelity gate in Step 4 exists to make the lies audible.
- Login wall.
curlandWebFetchdon't get an auth redirect — they get a Cloudflare challenge page (HTTP 403,Just a moment...). Nothing you do to the headers fixes this; the page is gated on a session that lives in the user's Chrome. Never reach for curl here, not even to "just check". - Virtual scrolling. With the conversation open,
get_page_textand DOM scraping still only see the handful of messages currently rendered — often just the last one. A 40-message thread comes back as 1. - Default rendering collapses the tool calls. The API's default rendering
turns every tool call into a "not supported on your current device"
placeholder. On a research/agent conversation the tool blocks ARE the content:
measured on a real one, the default rendering returned 9.4k chars against
173k with
render_all_tools=true— 5%. Always request the full rendering. - A /chat/-shaped renderer silently drops /share/ blocks. A share payload
returns web_search hits as
knowledgeitems, nottextitems. A renderer that only knowstextreturns the empty string for them and reports no error — the same real conversation rendered to 8k chars instead of 146k (4.8% retention) and looked completely fine.
What ships with it
11 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.
- .gitignore 235 B
- references/applescript_fallback_channel.md 12 KB
- references/claude-web-api-extraction.md 21 KB
- scripts/cdp_channel.py 28 KB runs code
- scripts/download_files.js 5.3 KB runs code
- scripts/export_conversation.js 2.5 KB runs code
- scripts/fetch_cdp.js 1.9 KB runs code
- scripts/render_transcript.py 57 KB runs code
- scripts/runjs.applescript 917 B
- scripts/selftest_channel.py 3.8 KB runs code
- scripts/selftest_fidelity.py 16 KB runs code
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.
- 9d ago First seen · 459 lines · 239 tokens per session scan A d097dad7b1ee
read-claude-web-conversation is a skill published in the GitHub repository daymade/claude-code-skills (1,384 stars, last pushed today), licensed MIT. It adds 239 tokens to every session and 6,362 once invoked, about $0.0012 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
opencli-sitemap-author
Use when creating or maintaining OpenCLI site sitemaps: agent-facing navigation, page-state, action, workflow, API-reference, pitfall, and fallback knowledge for a website. Use after browser exploration discovers durable site context, when a sitemap is stale, or when promoting local site knowledge into the repo.
debug-optimize-lcp
Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions…
interactive-login
How to complete browser/interactive logins (aws / gh / glab / gcloud). The platform backgrounds the login poller so it survives the human's browser round-trip — and when that does NOT work.
pinchtab-mcp
Use this skill when a task requires browser automation through PinchTab's MCP server connected to a remote browser instance. Covers navigation, element interaction, data extraction, form filling, multi-step flows, and session management via MCP tools.
azure-messaging-webpubsub-java
Build real-time web applications with Azure Web PubSub SDK for Java. Use when implementing WebSocket-based messaging, live updates, chat applications, or server-to-client push notifications.
google-safe-browsing
Prevent and fix Google Safe Browsing "Dangerous site" flags. Use when launching a public web app, buying/picking a domain, building a login or signup page, or when any site shows a red "Dangerous site" / "Deceptive site" warning in Chrome, Brave, Safari, Firefox, or Edge. Triggers on "dangerous site", "deceptive…