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.
npx skills add TestAny-io/testany-agent-skills --skill testany-triggergit clone --depth 1 https://github.com/TestAny-io/testany-agent-skillsWrote 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.
[](https://agentmods.dev/skills/testany-io/testany-agent-skills/testany-trigger)<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.
<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>- NVIDIA SkillSpector warn
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.
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.
| Model | Per session | Once 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 |
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 }}" \ 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
长期存在、可重复复用的执行入口:
PlanManual TriggerGatekeeper
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 |
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.
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.
- 9d ago First seen · 269 lines · 32 tokens per session scan A 22bca86177ab
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.
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.
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".
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…
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.
atmos-validation
Validate Atmos projects, components, arbitrary JSON Schema inputs, EditorConfig, and GitHub Actions; use affected-file selection and native CI annotations.
skill-benchmark
Benchmark AI skill effectiveness by measuring implementation quality against legacy constraints.