testany-agent-skills: Instructions file for Claude Code

AGENTS.md

testany-agent-skills AGENTS.md is an instructions file for Claude Code, Codex, OpenCode from TestAny-io/testany-agent-skills. It costs 1,144 tokens per session, scanned A, original, MIT.

Repository instructions for maintaining the TestAny-io/testany-agent-skills collection. It explains the repository structure, development process, architecture, and rules for writing skills.

In plain words
What is it for?
Use it when adding or maintaining skills, commands, plugin metadata, documentation, changelogs, and related repository files.
Why use it?
It gives coding agents a shared understanding of how this repository is organised and how its files should be changed. This reduces inconsistent updates and missed release files.

Instructions file for Claude CodeCodexOpenCode

Written for Claude Code and Codex and OpenCode: Claude Code plugin machinery, but also the file is AGENTS.md. Also seen: mentions Claude Code; mentions AGENTS.md; mentions Codex.

This is TestAny-io/testany-agent-skills's own configuration. It tells Claude Code, Codex and OpenCode 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/AGENTS.md
Clone the repo
git clone --depth 1 https://github.com/TestAny-io/testany-agent-skills

Made for: Claude Code, Codex, OpenCode.

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 AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/testany-io/testany-agent-skills/agents-md.svg)](https://agentmods.dev/instructions/testany-io/testany-agent-skills/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/testany-io/testany-agent-skills/agents-md"><img src="https://agentmods.dev/badge/instructions/testany-io/testany-agent-skills/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,144 This file is loaded in full into every session.
When invoked 1,144 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.01144 $0.01144
Opus 5 $0.00572 $0.00572
Sonnet 5 $0.00229 $0.00229
Haiku 4.5 $0.00114 $0.00114

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

Security

Grade A, and why

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

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

AGENTS.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.

AGENTS.md

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

仓库概述

Testany 公司的 Agent Skills 集合,为 Codex 提供产品研发流程中的专业技能。仓库按领域聚合 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. 8d ago First seen · 68 lines · 1,144 tokens per session scan A 98ea203c1409

Subscribe to this mod's changes

testany-agent-skills AGENTS.md is an instructions file published in the GitHub repository TestAny-io/testany-agent-skills (81 stars, last pushed 11d ago), licensed MIT. It adds 1,144 tokens to every session, about $0.0057 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