testany-execution

testany-execution is a skill for Claude Code, Codex from TestAny-io/testany-agent-skills. It costs 35 tokens per session (1,966 once invoked), scanned A, original, MIT.

A tool for observing and managing Testany pipeline executions, meaning the individual runs started by a pipeline trigger. It covers progress, history, case-level results, cancellation, and handoff of failed runs for debugging.

In plain words
What is it for?
Use it to list or search execution history, view run and test-case details, refresh or wait for status, cancel runs that have not started, inspect logs, and pass failures to debugging.
Why use it?
It gives you one place to find out what ran, whether it finished, and where a run failed. This avoids confusing the launch of a run with its later monitoring.

Skill for Claude CodeCodex

Written for Claude Code and Codex: argument-hint in frontmatter, but also agents/openai.yaml present.

Part of the testany-bot plugin — 10 skills, 8 commands shipped together

Good fit Use it to list or search execution history, view run and test-case details, refresh or wait for status, cancel runs that have not started, inspect logs, and pass failures to debugging.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/testany-io/testany-agent-skills/testany-execution
Install

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.

Any agent
npx skills add TestAny-io/testany-agent-skills --skill testany-execution
Clone the repo
git clone --depth 1 https://github.com/TestAny-io/testany-agent-skills

Made for: Claude Code, Codex.

Or install testany-bot, the plugin that ships this one along with the rest of its 10 skills, 8 commands.

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-execution

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/testany-io/testany-agent-skills/testany-execution"><img src="https://agentmods.dev/badge/skills/testany-io/testany-agent-skills/testany-execution.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,966 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00035 $0.01966
Opus 5 $0.00017 $0.00983
Sonnet 5 $0.00007 $0.00393
Haiku 4.5 $0.00003 $0.00197

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

Security

Grade A, and why

testany-execution 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 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.

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.

plugins/testany-bot/skills/testany-execution/SKILL.md · 234 lines

How it starts

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

Testany Execution Operations

管理 Testany 平台上的 execution,包括进度观测、历史查询、状态刷新、取消和失败交接。

用户输入: $ARGUMENTS


先统一心智模型

在开始之前,先按 automation-model.md 理解边界:

  • pipeline 是执行与编排单元
  • trigger 负责“怎么发起执行”,包括长期入口和即时运行
  • 本 skill 负责“执行发起之后怎么管理 execution”
  • 失败 execution 的根因分析属于 testany-debug

重要结论

  • 本 skill 不负责创建 Plan / Manual Trigger / Gatekeeper
  • 本 skill 也不负责即时发起一次执行;这属于 testany-trigger
  • 本 skill 关注 execution lifecycle:看、查、刷、停、交接

职责范围

  • 查看 execution 详情与 case 级结果
  • 列出/搜索 execution 历史
  • 刷新 execution 状态
  • 轮询等待 execution 进入终态
  • 取消尚未开始的 execution
  • 汇总执行结果并决定是否转给 testany-debug
  • 在需要时获取 execution case 详情与日志签名入口

操作速查

用户意图 操作类型 MCP 工具
列出执行记录 Read testany_list_executions
查看执行详情 Read testany_get_execution
查看某个 case 在执行中的详情 Read testany_get_execution_case
刷新执行状态 Update testany_refresh_execution
取消未开始执行 Update testany_cancel_execution
获取工作空间执行状态汇总 Read testany_get_workspace_execution_status
获取可筛选状态值 Read testany_filter_execution_status
获取有执行记录的 pipelines Read testany_filter_execution_pipelines
获取日志签名 Read testany_log_sign

核心知识

执行状态

状态 含义 是否终态
NOT_STARTED -1 未开始/排队中(等待并发槽位)
RUNNING 0 执行中
SUCCESS 1 全部通过
FAILURE 2 有失败
SKIPPED 3 跳过(仅 Case)
FAIL_AS_EXPECTED 4 预期失败(仅 Case)
CANCELLED 5 已取消
ERROR 99 系统错误

Workspace 队列状态

Testany 使用 workspace 级并发槽位(Redis semaphore)控制 execution 并行度。通过 testany_get_workspace_execution_status 可获取:

字段 含义
limit workspace 并发上限(Community=2, Paid=4, Enterprise=8,可调)
claimed 正在执行的 execution key 列表(已占据槽位)
pending 排队中的 execution key 列表(等待槽位)

当用户的 execution 状态为 NOT_STARTED 且长时间不变时,应主动查询队列状态:

  • claimed 数量 = limit → 槽位已满,该 execution 在 pending 中排队
  • claimed 中有长时间运行的旧 execution → 旧执行占住了槽位

Read the full file on GitHub · 234 lines

Files

What ships with it

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

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. 9d ago First seen · 234 lines · 35 tokens per session scan A f2d152152b0d

Subscribe to this mod's changes

testany-execution is a skill published in the GitHub repository TestAny-io/testany-agent-skills (81 stars, last pushed yesterday), licensed MIT. It adds 35 tokens to every session and 1,966 once invoked, about $0.0002 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 skills, from other repositories

research-engineer

An uncompromising Academic Research Engineer. Operates with absolute scientific rigor, objective criticism, and zero flair. Focuses on theoretical correctness, formal verification, and optimal implementation across any required technology.

davila7/claude-code-templates · 43 tokens

tika-eval-compare

Compare extracts from two Tika builds over a corpus to detect regressions in content, encoding, exceptions, and embedded-document handling. Use for "compare before/after extracts", "eval this change against the corpus".

apache/tika · 50 tokens

neuron-evaluation-engineer

Create and run AI evaluations with datasets, assertions, and output drivers in Neuron AI. Use this skill whenever the user mentions evaluation, testing AI systems, creating evaluators, dataset-driven testing, assertion-based validation, or wants to measure AI system performance. Also trigger for tasks involving…

neuron-core/neuron-ai · 77 tokens

jetson-validate-image

Use after jetson-flash-image to run static BSP checks, on-target smoke/regression tests on a flashed DUT, or both. Not for build or flash steps. Triggers: validate bsp, on-target validation.

NVIDIA/skills · 50 tokens

atmos-validation

Validate Atmos projects, components, arbitrary JSON Schema inputs, EditorConfig, and GitHub Actions; use affected-file selection and native CI annotations.

cloudposse/atmos · 31 tokens

skill-benchmark

Benchmark AI skill effectiveness by measuring implementation quality against legacy constraints.

HoangNguyen0403/agent-skills-standard · 16 tokens