testany-agent-skills: Instructions file for Claude Code

CLAUDE.md

testany-agent-skills CLAUDE.md is an instructions file for Claude Code from TestAny-io/testany-agent-skills. It costs 1,145 tokens per session, scanned A, a copy of testany-agent-skills AGENTS.md, MIT.

Repository instructions for TestAny-io/testany-agent-skills, an organised collection of skills for Claude Code, including its structure, development process, and writing rules.

In plain words
What is it for?
Use it when developing or maintaining skills in that repository, including its plugin folders, commands, manifests, and documentation.
Why use it?
It gives an agent the project-specific rules needed to edit skills and keep related metadata and documentation consistent.

Instructions file for Claude Code

Written for Claude Code: Claude Code plugin machinery. Also seen: mentions CLAUDE.md; mentions Claude Code.

This is TestAny-io/testany-agent-skills's own configuration. It tells Claude Code how to work on testany-agent-skills 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 testany-agent-skills configures →

Reuse

Borrowing it

Nothing to install: this file belongs to TestAny-io/testany-agent-skills. 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/TestAny-io/testany-agent-skills/main/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/TestAny-io/testany-agent-skills

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 testany-agent-skills CLAUDE.md

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

Your own site · 80×15
<a href="https://agentmods.dev/instructions/testany-io/testany-agent-skills/claude-md"><img src="https://agentmods.dev/badge/instructions/testany-io/testany-agent-skills/claude-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 1,145 This file is loaded in full into every session.
When invoked 1,145 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 89% copy Near-identical to another mod 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.01145 $0.01145
Opus 5 $0.00573 $0.00573
Sonnet 5 $0.00229 $0.00229
Haiku 4.5 $0.00114 $0.00114

Measured 10d ago against content hash 6db681b3a271, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

testany-agent-skills 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 10d 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.

Origin

This is a copy

89% identical to testany-agent-skills AGENTS.md — 6 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

CLAUDE.md · 68 lines

How it starts

The opening of the file, as written. The whole thing — 68 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.

仓库概述

Testany 公司的 Agent Skills 集合,为 Claude Code 提供产品研发流程中的专业技能。仓库按领域聚合 plugin(例如 testany-eng);每个 plugin 可在自己的 skills/ 目录中包含多个 skill。每个 skill 至少包含 SKILL.md,并可按需附带 references/scripts/assets/agents/ 等资源。

开发方式

当前仓库已不再内置 skill-creator 初始化 / 校验 / 打包脚本。

  • 新增或维护 skill 时,直接在对应 plugin 下编辑 skills/<skill-name>/SKILL.md
  • 如需暴露 slash command,同步维护对应 plugin 的 commands/
  • 发布前同步更新根目录 README.md.claude-plugin/marketplace.json、plugin 级 README.md / .claude-plugin/plugin.jsonCHANGELOG.md

架构

.claude-plugin/marketplace.json    # 插件注册与发现层描述
plugins/
├── testany-eng/                   # 研发流程聚合 plugin
│   ├── .claude-plugin/plugin.json # 本仓库保留的 plugin 元数据;宿主允许省略
│   ├── skills/<skill-name>/      # 同一领域内的多个 skill
│   └── commands/                  # 可选 slash command 入口
├── testany-llm/                   # AI/LLM 聚合 plugin
├── testany-mrkt/                  # 营销内容聚合 plugin
└── testany-bot/                   # Testany 测试平台聚合 plugin

Skill 编写规范

规范项 要求
命名 英文 kebab-case
必须文件 SKILL.md
行数限制 < 500 行
语言 中文(技术术语可保留英文)
Frontmatter 必须包含触发词
示例 必须有使用示例

Plugin 注册与 Skill 发现

.claude-plugin/marketplace.json 按领域注册聚合 plugin,source 指向对应的 plugins/<plugin-name>

{
  "plugins": [
    {
      "name": "testany-eng",
      "description": "研发流程与导航工具集……",
      "source": "./plugins/testany-eng"
    }
  ]
}

Claude Code 会自动发现 plugin 根目录 skills/<skill-name>/SKILL.mdplugin.json 本身在上游规范中可选,本仓库为版本、描述和明确组件配置而保留。plugin.json.skills 通常在默认 skills/ 之外追加发现范围;marketplace entry 在默认 strict: true 下可继续补充并合并组件。strict: false 时 marketplace entry 是完整组件 authority,若 plugin.json 同时声明组件则冲突并 fail closed。只有当 marketplace entry 的 source 解析到 marketplace root,且该 entry 自身 skills 列出实际存在的特定子目录时,这些路径才按官方例外成为完整集合;列 ./skills//plugin root 保持全量扫描,全部列出路径均不存在时回退默认扫描。一旦显式声明,路径必须是 .(plugin root)或以 ./ 开头的非空相对路径/路径数组,null 不是“未声明”。同一 marketplace 内可用 symlink 复用 skill/resource;dangling target 或越出 marketplace root 的 target 必须 fail closed。commands 等其他组件遵循各自合并规则。在既有领域中新增 skill 时,应增加 skills/<skill-name>/,而不是新增 marketplace plugin;只有新建独立领域级 plugin 时才增加 marketplace 条目。上游规则见 Claude Code Plugins referencePlugin marketplace strict mode

Read the full file on GitHub · 68 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. 10d ago First seen · 68 lines · 1,145 tokens per session scan A 6db681b3a271

Subscribe to this mod's changes

testany-agent-skills CLAUDE.md is an instructions file published in the GitHub repository TestAny-io/testany-agent-skills (81 stars, last pushed yesterday), licensed MIT. It adds 1,145 tokens to every session, about $0.0057 per session on Opus 5. A static security scan graded it A with 0 findings. It is 89% identical to testany-agent-skills AGENTS.md, differing in 6 lines, and is treated as a copy.

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

deepseek-harness AGENTS.md

AGENTS.md instructions for deepseek-ai/deepseek-harness, covering agents.md, pre-stable apis and released session data, repository layout, commands and host sandbox failures.

deepseek-ai/deepseek-harness · 3,735 tokens