Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

tiered-test-generator分层测试生成器

Agent Skill

用于辅助测试设计、自动化测试、用例整理和回归验证。它适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。使用时需要确认项目测试框架、运行命令和夹具数据,避免为了通过测试而改坏真实逻辑;涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。

总安装

324

周安装

13

GitHub Stars

34

下载量

105
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:tiered-test-generator(分层测试生成器)
来源仓库:https://github.com/whynowlab/stack-skills
仓库路径:skills/tiered-test-generator
安装命令:
npx skills add https://github.com/whynowlab/stack-skills --skill tiered-test-generator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/whynowlab/stack-skills --skill tiered-test-generator

简介

用于辅助测试设计、自动化测试、用例整理和回归验证。

  • 适合编写单元测试、端到端测试、测试计划或根据失败日志定位问题。
  • 使用时需确认项目测试框架、运行命令和夹具数据,避免为通过而改坏逻辑。
  • 涉及浏览器或外部服务时,应区分本地模拟、测试环境与生产环境。
  • 安装方式:通过 npx 从指定 GitHub 仓库添加技能。

SKILL.md

Tiered Test Generator

Multi-level verification question and test scenario generator.

Rules (Absolute)

  1. Questions must be answerable. Every question has a definite correct answer or clear evaluation criteria. No subjective trick questions.
  2. Difficulty must be genuine. Tier 3 questions should be genuinely hard, not just verbose versions of Tier 1.
  3. Coverage must be systematic. Questions should cover the full topic, not cluster around one subtopic.
  4. Source traceability. For code-based questions, every question must reference specific files, lines, or behaviors.
  5. No answer leakage. Questions must not contain hints that give away the answer. After generating questions, re-read each one and verify no phrasing, emphasis, or structural pattern reveals the correct answer.

Tier System

Tier 1: Conceptual (Understanding)

  • Difficulty: Foundation
  • Tests: Can you explain what this does and why?
  • Format: Definition, purpose, comparison questions
  • Bloom's Level: Remember, Understand

Tier 2: Applied (Usage)

  • Difficulty: Intermediate
  • Tests: Can you use this correctly in context?
  • Format: Scenario-based, debugging, "what happens when" questions
  • Bloom's Level: Apply, Analyze

Tier 3: Expert (Mastery)

  • Difficulty: Advanced
  • Tests: Can you handle edge cases, design alternatives, and teach it?
  • Format: Edge cases, trade-off analysis, design challenges, "teach this to someone" prompts
  • Bloom's Level: Evaluate, Create

Test Types

Type A: Code Comprehension

For testing understanding of specific code.

**[T1] Q1.** What is the primary responsibility of the `UserService` class?
a) Database access
b) Authentication
c) User CRUD operations
d) Session management

**[T2] Q2.** Given this function, what happens when `input` is `null`?

def process(input): return input.strip().lower()


a) Returns empty string b) Raises AttributeError c) Returns None d) Silently fails

**[T3] Q3.** The current error handling in `api/routes.py:45-60` catches all exceptions generically. Design a more robust error handling strategy that:

- Distinguishes client errors from server errors
- Provides actionable error messages
- Doesn't leak internal details
- Supports error aggregation for monitoring

Type B: Architecture & Design

For testing system-level understanding.

**[T1] Q1.** What architectural pattern does this codebase follow?

**[T2] Q2.** If read traffic increases 100x, which component becomes the bottleneck first? What's your mitigation strategy?

**[T3] Q3.** The current system uses synchronous inter-service communication. Design a migration path to event-driven architecture that:
- Has zero downtime
- Can be rolled back at any stage
- Preserves data consistency guarantees

Type C: Process & Methodology

For testing workflow and best-practice knowledge.

**[T1] Q1.** What is the purpose of a code review?

**[T2] Q2.** Given this PR with 3 changed files, identify the 2 most important review comments you would make.

**[T3] Q3.** Design a CI/CD pipeline for this project that balances speed with safety. Justify each stage's inclusion and the order.

Type D: Concept Mastery

For testing domain knowledge.

**[T1] Q1.** Define "eventual consistency" in your own words.

**[T2] Q2.** Your system uses eventual consistency for user profiles. A user updates their email and immediately tries to log in with the new email. What happens? How do you handle it?

**[T3] Q3.** Compare eventual consistency vs. strong consistency for a financial transaction system. Under what specific conditions would you choose eventual consistency despite the risks?

Process

Step 1: Analyze the Subject

  • If code: Read the files, understand the structure
  • If concept: Define the scope and depth
  • If architecture: Map the components

Step 2: Generate Question Set

Default: 3 questions per tier (9 total). Customizable: user can specify count per tier.

Distribution:

Tier 1 (Conceptual):  3 questions — foundation verification
Tier 2 (Applied):     3 questions — practical understanding
Tier 3 (Expert):      3 questions — mastery and edge cases

Step 3: Create Answer Key

For each question:

  • Correct answer with explanation
  • Why wrong answers are wrong (for multiple choice)
  • Grading rubric (for open-ended questions)

Step 4: Deliver

Present questions without answers. Hold answer key until user submits responses.

Output Format

## Test: [Topic]

### Instructions
- [N] questions across 3 difficulty tiers
- Answer all questions, then submit for grading
- Open-ended questions: aim for 2-3 sentences

---

### Tier 1: Conceptual

**Q1.** [question]
a) [option]  b) [option]  c) [option]  d) [option]

**Q2.** [question]

**Q3.** [question]

---

### Tier 2: Applied

**Q4.** [scenario + question]

**Q5.** [debugging scenario]

**Q6.** [what-happens-when scenario]

---

### Tier 3: Expert

**Q7.** [edge case challenge]

**Q8.** [design challenge]

**Q9.** [trade-off analysis]

---

> Submit your answers and I'll grade them with detailed feedback.

Grading (Post-Submission)

When user submits answers:

## Results: [Topic]

### Score: [X]/[Total] ([percentage]%)

Scoring weights by tier:
- Tier 1 (Conceptual): 5 pts each (×3 = 15)
- Tier 2 (Applied): 10 pts each (×3 = 30)
- Tier 3 (Expert): 15 pts each (×3 = 45)
- **Total: 90 points**

### Answer Review
| Q# | Tier | Result | Score |
|----|------|--------|-------|
| 1  | T1   | O/X    | /5    |
| 2  | T1   | O/X    | /5    |
| 3  | T1   | O/X    | /5    |
| 4  | T2   | O/X    | /10   |
| 5  | T2   | O/X    | /10   |
| 6  | T2   | O/X    | /10   |
| 7  | T3   | O/X    | /15   |
| 8  | T3   | O/X    | /15   |
| 9  | T3   | O/X    | /15   |

### Detailed Feedback

#### Q[N] — [X] Incorrect
**Your answer:** [what they said]
**Correct answer:** [what it should be]
**Why:** [explanation of the correct answer]
**Key insight:** [what understanding gap this reveals]

### Diagnostic Summary
| Dimension | Assessment |
|-----------|-----------|
| Concept Connectivity | [How well fundamentals are linked] |
| Procedural Stability | [How reliably they can apply knowledge] |
| Meta-Cognition | [How well they know what they don't know] |

### Recommended Next Steps
- [Specific topics to review based on wrong answers]

When to Use

  • After learning something new — verify understanding
  • Before a code review — test your own knowledge of the codebase
  • Interview preparation — generate practice questions
  • Team knowledge assessment — create standardized tests
  • After refactoring — verify nothing was lost in translation
  • Teaching/documentation — create practice exercises

When NOT to Use

  • For subjective opinion questions (no right answer)
  • When the user just wants information (use deep-dive-analyzer)
  • For trivial topics that don't warrant testing

Integration Notes

  • After deep-dive-analyzer: Analyze → Generate tests to verify understanding
  • With skill-composer: Part of the "Deep Learning Pipeline" (analyze → test → fill gaps → iterate)
  • With adversarial-review: Tests verify understanding; adversarial review challenges decisions

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.74%
按下载量换算36

Claude

27.43%
按下载量换算29

Cursor

20.9%
按下载量换算22

Gemini CLI

9.07%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills