weixin-devtools-mcp: Instructions file for Claude Code

CLAUDE.md

weixin-devtools-mcp CLAUDE.md is an instructions file for Claude Code from wooter-s/weixin-devtools-mcp. It costs 3,785 tokens per session, scanned A, original, MIT.

Project instructions for weixin-devtools-mcp, a TypeScript server that provides tools for automating and testing WeChat Mini Programs.

In plain words
What is it for?
They help build the server, run it in development mode, select tool profiles, inspect its tools, and run its different test layers.
Why use it?
They explain how the project is structured, built, tested, and configured, so development work follows its existing process.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: mentions CLAUDE.md; mentions Claude Code.

This is wooter-s/weixin-devtools-mcp's own configuration. It tells Claude Code how to work on weixin-devtools-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything weixin-devtools-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to wooter-s/weixin-devtools-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/wooter-s/weixin-devtools-mcp/main/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/wooter-s/weixin-devtools-mcp

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 weixin-devtools-mcp CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/wooter-s/weixin-devtools-mcp/claude-md/github.svg)](https://agentmods.dev/instructions/wooter-s/weixin-devtools-mcp/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/wooter-s/weixin-devtools-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/wooter-s/weixin-devtools-mcp/claude-md/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 weixin-devtools-mcp CLAUDE.md

Your own site · 80×15
<a href="https://agentmods.dev/instructions/wooter-s/weixin-devtools-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/wooter-s/weixin-devtools-mcp/claude-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 3,785 This file is loaded in full into every session.
When invoked 3,785 The same file — it is already loaded in full.
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.03785 $0.03785
Opus 5 $0.01893 $0.01893
Sonnet 5 $0.00757 $0.00757
Haiku 4.5 $0.00379 $0.00379

Measured 8d ago against content hash 5e78e9dacba3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

weixin-devtools-mcp CLAUDE.md 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 8d 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.

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.

CLAUDE.md · 408 lines

How it starts

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

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

Project Overview

微信开发者工具自动化 MCP 服务器,共实现 31 个工具用于微信小程序的自动化测试。基于 TypeScript 和 miniprogram-automator SDK 实现。

工具暴露按 profile 裁剪(见 src/config/tool-profile.ts):默认 core profile 仅暴露 20 个核心工具;minimal 暴露 10 个;通过 --tools-profile=full(或环境变量 WEIXIN_MCP_TOOLS_PROFILE=full)可启用全部 31 个工具(含 console / network / screenshot / diagnose 类)。也可用 --enable-categories / --disable-categories 按类别精细控制。

Common Commands

开发和构建

# 构建项目(TypeScript → JavaScript + 设置可执行权限)
npm run build

# 开发模式(监听文件变化自动重新构建)
npm run watch

# 使用 MCP Inspector 调试
npm run inspector

测试

项目采用分层测试架构,参考 chrome-devtools-mcp 模式:

tests/
├── protocol/          # 协议层测试(需要MCP服务器)
│   ├── server.test.ts
│   └── index.test.ts
├── tools/            # 工具逻辑测试(直接调用handler,无需服务器)
│   ├── connection.test.ts
│   ├── console.test.ts
│   ├── navigate.test.ts
│   ├── network.test.ts
│   ├── page.test.ts
│   └── screenshot.test.ts
├── integration/      # 集成测试(需要真实环境)
│   ├── connect-devtools.integration.test.ts
│   ├── console.integration.test.ts
│   ├── enhanced-connection.integration.test.ts
│   ├── navigation.integration.test.ts
│   ├── network.integration.test.ts
│   └── network-auto-start.integration.test.ts
└── utils/            # 测试工具
    └── test-utils.ts

测试命令

# 单元测试(协议 + 工具 + 工具类,224个测试)
npm test

# 分类运行单元测试
npm run test:protocol      # 协议层测试(19个)
npm run test:tools         # 工具逻辑测试(196个)

# 集成测试(需要微信开发者工具 + playground/wx/)
npm run test:integration   # 46个集成测试

# 所有测试(单元 + 集成)
npm run test:all

# 测试覆盖率
npm run test:coverage

# 监听模式
npm run test:watch                # 单元测试监听
npm run test:integration:watch    # 集成测试监听

集成测试要求

  • 微信开发者工具已安装并开启自动化功能
  • 测试项目位于 playground/wx/
  • 通过环境变量 RUN_INTEGRATION_TESTS=true 控制执行
  • 不设置该环境变量时,集成测试会自动跳过

运行单个测试

# 协议测试
npx vitest tests/protocol/server.test.ts

# 工具测试
npx vitest tests/tools/console.test.ts

# 集成测试
RUN_INTEGRATION_TESTS=true npx vitest tests/integration/console.integration.test.ts

# 指定测试用例
npm test -- tests/tools/console.test.ts -t "测试用例名称"

Read the full file on GitHub · 408 lines

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. 8d ago First seen · 408 lines · 3,785 tokens per session scan A 5e78e9dacba3

Subscribe to this mod's changes

weixin-devtools-mcp CLAUDE.md is an instructions file published in the GitHub repository wooter-s/weixin-devtools-mcp (78 stars, last pushed yesterday), licensed MIT. It adds 3,785 tokens to every session, about $0.0189 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-08-30.

Related

Other instructions, from other repositories

next.js AGENTS.md

AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,153 tokens

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,469 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens