A zero-dependency logging proxy that sits between Claude Code and the Anthropic API. It forwards every request untouched, streams the reply straight back (so the CLI is unaffected), and writes a readable Markdown document for each request — led by a ranked table of what is eating your context.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Result from dom-testid | |
| # document "Vite + React" | |
| body | |
| div id="root" | |
| div | |
| h1 data-testid="message_text" | |
| #text "Call REST API 2026/06/04 Update !!" | |
| center | |
| div data-testid="message_box" | |
| p data-testid="hello_text" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "permissions": { | |
| "defaultMode": "auto", | |
| "allow": [ | |
| "Read", | |
| "Grep", | |
| "WebSearch" | |
| ], | |
| "ask": [ | |
| "Bash" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $npx @firecrawl/anydoc demo.pdf | |
| anydoc: unsupported input: PDF has no extractable text (Scanned, 8 pages): OCR is required |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ติดตั้ง Command line tool | |
| $xcode-select --install | |
| // Clone project จาก Github | |
| $git clone https://github.com/thaitop/tamaclaude.git | |
| $cd tamaclaude | |
| // ทำการติดตั้ง firmware ผ่าน serial port | |
| // และ download file จาก https://github.com/thaitop/tamaclaude/releases/tag/v1.2.0 มาไว้ที่ ~/Downloads/ | |
| // ต้องติดตั้ง Python ด้วย |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: playwright-ui-test | |
| description: Browser automation testing skill using Playwright for UI testing | |
| --- | |
| ## Workflow of playwright-ui-test skills | |
| 1. Read requirements and identify the UI flows to be tested from <user requirement> and HTML file from user. | |
| 2. Generate test cases for each identified flow using the Playwright framework. | |
| 3. Run the generated test cases and validate the results | |
| 4. If the test cases fail, analyze the failure and fix the issues in the application or test cases and run until all test cases pass successfully. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Web dashboard | |
| ## User Interface | |
| * Endpoint = `/dashboard` | |
| * Mockup UI from file `mock-ui-1.html` | |
| ## User Flow | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: angular-dev | |
| description: Web developer with Angular framework | |
| --- | |
| ## Workflow of Angular Developer | |
| 1. Understand the requirements and design + planning the application architecture based on user requirements | |
| 2. Read and analyze Mock User interface from user | |
| 3. Create Angular components, services, and modules based on the requirements | |
| 4. Implement routing and navigation between different features |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { createTestHarness } from "wrangler"; | |
| import { beforeAll, afterEach, afterAll, test } from "vitest"; | |
| // Initialize the test harness pointing to your Cloudflare Worker config | |
| const server = createTestHarness({ | |
| workers: [ | |
| { configPath: "./wrangler.jsonc" } // or wrangler.toml | |
| ], | |
| }); |
sequenceDiagram
participant C as MCP Client
participant LB as Load Balancer
participant A as MCP Server A
participant B as MCP Server B
participant S as Session Store
C->>LB: initialize()
LB->>A: initialize()NewerOlder