testany-trigger

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

A tool for configuring and starting Testany pipeline runs. A pipeline is an ordered set of testing or automation work; triggers are the ways a run starts, such as a schedule, webhook, manual action, or one-time launch.

In plain words
What is it for?
Use it to create, view, update, or delete schedules and webhook triggers, plan manual-trigger usage, run an existing pipeline once, and get integration examples.
Why use it?
It keeps recurring launch rules separate from the execution records that show what happened after a run starts. It also provides a defined place for webhook and continuous-integration setup.

Skill for Claude CodeCodex

Written for Claude Code and Codex: $ARGUMENTS substitution, but also agents/openai.yaml present.

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

Good fit Use it to create, view, update, or delete schedules and webhook triggers, plan manual-trigger usage, run an existing pipeline once, and get integration examples.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/testany-io/testany-agent-skills/testany-trigger
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-trigger
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-trigger

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/testany-io/testany-agent-skills/testany-trigger"><img src="https://agentmods.dev/badge/skills/testany-io/testany-agent-skills/testany-trigger.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 32 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,996 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Data Exfiltration · line 229
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
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.00032 $0.01996
Opus 5 $0.00016 $0.00998
Sonnet 5 $0.00006 $0.00399
Haiku 4.5 $0.00003 $0.00200

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

Security

Grade A, and why

testany-trigger scanned grade A with 1 finding 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -X POST "${{ secrets.TESTANY_GATEKEEPER_WEBHOOK_URL }}" \
plugins/testany-bot/skills/testany-trigger/SKILL.md · 269 lines

How it starts

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

Testany Trigger

管理 Testany 平台上的 trigger,并负责 即时发起一次 pipeline execution

用户输入: $ARGUMENTS


先统一心智模型

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

  • pipeline 是执行与编排单元
  • trigger 是执行入口
  • trigger 决定“如何发起 execution”
  • execution 发起之后的观测与管理属于 testany-execution

重要结论

  • 本 skill 既负责持久化执行入口,也负责即时单次触发
  • 本 skill 不负责查看 execution 历史、轮询、取消或失败诊断

职责范围

  • 创建/查询/更新/删除 Plan(定时计划)
  • 创建/查询/更新/删除 Gatekeeper(Webhook 触发器)
  • 覆盖 Manual Trigger 的平台概念、适用场景和当前支持路径
  • 立即执行一次已有 pipeline(ad-hoc run now)
  • 为已有 pipeline 提供合适的 trigger 方案建议
  • 提供可复制的 Webhook / CI 集成示例

Trigger 类型

Persistent Trigger

长期存在、可重复复用的执行入口:

  • Plan
  • Manual Trigger
  • Gatekeeper

Ad-hoc Trigger

一次性即时触发:

  • testany_execute_pipeline

它会直接返回 execution_key,后续观测与管理交给 testany-execution


MCP 支持现状

类型 平台能力 当前 MCP 支持 本 skill 的处理方式
Plan 完整 直接通过 MCP CRUD
Gatekeeper 完整 有(含 pipeline 绑定与 webhook URL) 直接通过 MCP 完成全流程
Manual Trigger 平台已支持 当前未看到对应 MCP tools 明确纳入 trigger 体系;若当前宿主/MCP 无工具,则指导用户走 UI fallback
Run Now 完整 有 (testany_execute_pipeline) 直接执行一次并返回 execution_key

操作速查

Persistent Trigger

用户意图 操作类型 MCP 工具
列出 Gatekeepers Read testany_list_gatekeepers
查看 Gatekeeper 详情 Read testany_get_gatekeeper
创建 Gatekeeper Create testany_create_gatekeeper(可同时绑定 pipelines)
查看 Gatekeeper 绑定的 Pipelines Read testany_get_gatekeeper_pipelines
绑定/替换 Gatekeeper 的 Pipelines Update testany_bind_gatekeeper_pipelines
更新 Gatekeeper 字段 Update testany_update_gatekeeper
删除 Gatekeeper Delete testany_delete_gatekeeper
列出 Plans Read testany_list_plans
查看 Plan 详情 Read testany_get_plan
创建 Plan Create testany_create_plan
更新 Plan Update testany_update_plan
删除 Plan Delete testany_delete_plan
转移 Plan Owner Update testany_assign_plan

Read the full file on GitHub · 269 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 · 269 lines · 32 tokens per session scan A 22bca86177ab

Subscribe to this mod's changes

testany-trigger is a skill published in the GitHub repository TestAny-io/testany-agent-skills (81 stars, last pushed yesterday), licensed MIT. It adds 32 tokens to every session and 1,996 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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