Skip to main content

stress-strategy

Build multi-profile stress tests from brute complexity and constraints, then execute with traceable evidence.

跳到安装

来源信息

仓库
SummerOneTwo/AutoCode
最近来源活动
2026年4月30日 10:17
检测到的 SKILL.md 语言
英语
星标
0
分支
0

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
stress-strategy
description
Build multi-profile stress tests from brute complexity and constraints, then execute with traceable evidence.
disable-model-invocation
false
# Stress Strategy Skill Goal: build a reproducible and explainable multi-profile stress strategy from brute complexity and constraints, instead of running a single random profile. ## Rules - Include at least 3 profiles: `tiny_exhaustive`, `random_small`, and `edge_small`. - Use `type=1` for `tiny_exhaustive`, `type=2` for `random_small`, and `type=3/4` for `edge_small`. - Keep semantic boundaries explicit: - `type=3`: boundary and extreme constraints coverage. - `type=4`: targeted worst-case/TLE-inducing patterns, not simple max-parameter scaling. - When brute complexity is higher than `O(n^2)`, automatically lower `n_max` and `trials`. - Every profile must be reproducible (fixed seed rules and replayable parameters). ## Execution When calling `stress_test_run`, pass `stress_profiles` and record completed rounds and failure points for each profile. ## Output Requirements - `decision`: `go` / `no_go` - `stress_profiles`: each profile's `name/trials/types/generator_args` - `execution_summary`: completion status and failed rounds per profile - `next_fix_hint`: if failed, provide prioritized fix direction (`std/brute/generator/validator`) ## Decision Rules - `go`: all required profiles complete and no correctness mismatch remains. - `no_go`: any required profile is incomplete, or mismatches remain unresolved. ## Forbidden Behavior - Do not run only a single random profile. - Do not treat `type=4` as a duplicate of `type=3`. - Do not continue after unresolved mismatches.
在 GitHub 查看