Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

qa质量保证

Agent Skill

qa 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

307

周安装

17

GitHub Stars

3

下载量

140
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:qa(质量保证)
来源仓库:https://github.com/alpoxdev/hypercore
仓库路径:skills/qa
安装命令:
npx skills add https://github.com/alpoxdev/hypercore --skill qa
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/alpoxdev/hypercore --skill qa

简介

qa 用于将非技术需求转化为精确的技术任务,支持复杂度评估与阶段跟踪。

  • 适用于来自利益相关者的模糊请求,提供结构化分析与实施建议。
  • 可自动分类任务难度并决定是否直接修复或进入计划流程。
  • 安装前应确认输入来源是否为非开发者渠道(如邮件、Slack)。
  • 注意不适用于纯技术性实现或已有明确技术描述的需求。

SKILL.md

QA — Stakeholder Request Analyzer

Translate non-developer change requests into precise technical work — classify complexity, then either fix directly or track progress through structured phases.

<request_routing>

Positive triggers

  • A relayed stakeholder request in non-technical language: "The client asked for this", "Leadership wants this changed", "The client wants this changed".
  • A pasted message from a non-developer (email, Slack, Jira ticket): "The PM sent this; please analyze it", "Here's what the client sent".
  • A vague change request that needs technical interpretation before implementation: "Analyze this request", "What would this request actually mean for our codebase?".
  • An ambiguous feature or UI change request from a business stakeholder.

Out-of-scope

  • Clear technical tasks with a specific deliverable. Route to execute.
  • Bug reports with error messages or failing symptoms. Route to bug-fix.
  • Repository-wide build or CI failures. Route to build-fix.
  • Architecture decisions or strategic planning. Route to plan.

Boundary cases

  • If the stakeholder request is already technically precise, still run analysis to surface risks and side effects — then fast-track to execution.
  • If the request is actually a bug disguised as a feature request, own the interpretation phase and note it as a finding.
  • If scope is too large for a single implementation pass, surface this and recommend breaking it down or routing to plan.

</request_routing>

<argument_validation>

If ARGUMENT is missing or has no actionable request, ask:

What did the stakeholder request?
- Paste the original message (email, Slack, ticket, verbal summary)
- Who requested it (client, executive, PM, etc.)
- Any additional context or constraints you know

One round of clarification maximum. The point is to work with imperfect information — that's what this skill is for.

</argument_validation>

<mandatory_reasoning>

Mandatory Sequential Thinking

Always run sequential-thinking before presenting candidates. Depth scales with complexity:

  • Simple (3-5 thoughts): Parse request → map to code → identify single interpretation → assess risk → recommend
  • Complex (7+ thoughts): Parse request → identify ambiguities → map to code across systems → assess cross-cutting risks → formulate multiple candidates → compare tradeoffs → recommend

Recommended sequence:

  1. Parse the non-technical language — what is the stakeholder actually asking for?
  2. Identify ambiguities — what could this mean in multiple ways?
  3. Map to codebase — which files, components, or systems are affected?
  4. Assess risks — what could break, what are the side effects?
  5. Formulate interpretation candidates — distinct technical readings of the request.

</mandatory_reasoning>

<complexity_classification>

Complexity Classification

Classify immediately after sequential-thinking:

ComplexitySignalsPath
SimpleSingle file/component affected, clear mapping from request to code, ≤1 valid interpretation, low riskDirect — proceed without flow tracking
ComplexMulti-system impact, 2+ valid interpretations, phased implementation needed, stakeholder clarification expected, scope estimate is medium/largeTracked — create .hypercore/qa/flow.json

Announce the classification:

Complexity: [simple/complex] — [one-line reason]

When uncertain, classify as complex. It is cheaper to track than to lose progress.

</complexity_classification>

<flow_tracking>

Flow Tracking (Complex Path Only)

When classified as complex, initialize the flow:

mkdir -p .hypercore/qa

Write .hypercore/qa/flow.json and update it as each phase progresses. See references/flow-schema.md for the full schema.

Phase progression

PhaseDescriptionNext
analyzeParse request, search codebase for affected areaspresent
presentPresent interpretation candidates with risksconfirm
confirmWait for and record user feedbackimplement
implementExecute confirmed interpretationverify
verifyRun validation, report outcomedone

Resume support

If .hypercore/qa/flow.json already exists, read it first and continue from the last incomplete phase (in_progress or pending). Do not restart completed phases.

</flow_tracking>

Simple Path

StepTaskTool
1Validate input, sequential-thinking (3-5 thoughts)sequential-thinking
2Classify as simple-
3Quick codebase scanRead/Grep/Glob
4Present brief analysis + recommended interpretation-
5Wait for user confirmation-
6Implement confirmed interpretationEdit/Write
7Validate (typecheck/test/build)Bash
8Report outcome-

Complex Path

StepTaskTool
1Validate input, sequential-thinking (7+ thoughts)sequential-thinking
2Classify as complex, create .hypercore/qa/flow.jsonWrite
3Deep codebase exploration → update flow analyze: completedRead/Grep/Glob + Edit
4Present interpretation candidates (2+) → update flow present: completedEdit
5Wait for user feedback → update flow confirm: completedEdit
6Implement confirmed interpretation → update flow implement: completedEdit/Write
7Run validation → update flow verify: completedBash + Edit
8Report outcome, set flow status to completedEdit

Do not skip phases. Do not implement before user feedback.

<candidate_presentation>

Present findings in this format:

## Stakeholder Request Analysis

**Original request**: [paste or summarize the raw request]
**Requested by**: [client/executive/PM/etc.]
**Complexity**: [simple/complex]

### Codebase Impact
- **Affected areas**: [list files, components, or systems]
- **Scope estimate**: [small / medium / large]

### Interpretation Candidates

#### Candidate 1: [technical summary] ⭐ Recommended
- **What this means**: [detailed technical description]
- **Changes needed**: [specific files and modifications]
- **Risks/Side effects**: [what could break or be affected]

#### Candidate 2: [technical summary]
- **What this means**: [detailed technical description]
- **Changes needed**: [specific files and modifications]
- **Risks/Side effects**: [what could break or be affected]

### Potential Issues
- [Issue 1: something the stakeholder may not have considered]
- [Issue 2: technical constraint or limitation]

### Questions for Stakeholder (if any)
- [Question that would resolve ambiguity before implementation]

---
Which interpretation is correct? Any adjustments needed?

Rules for candidates:

  • Always present at least 2 candidates unless the request is completely unambiguous.
  • Mark the most likely interpretation with ⭐ Recommended.
  • Each candidate must reference specific files and changes.
  • Issues section must include things the stakeholder likely didn't consider.

</candidate_presentation>

<execution_rules>

After user feedback

  • Implement only the confirmed interpretation.
  • If the user provides corrections or additional context, adjust scope accordingly.
  • Keep changes scoped to what was confirmed — do not add unrequested improvements.
  • Run targeted validation after changes.
  • If validation fails, fix within scope.

Reporting

After execution, report:

## Done

**Request**: [original stakeholder request]
**Interpretation applied**: [which candidate, with any adjustments]
**Changes**: [list of changed files]
**Validation**: [what was verified and result]
**Notes for stakeholder**: [anything they should know about what was done]

For complex path: also update .hypercore/qa/flow.json status to completed.

</execution_rules>

Execution checklist:

  • ARGUMENT validated — stakeholder request identified
  • sequential-thinking completed (depth matches complexity)
  • Complexity classified (simple/complex)
  • Flow JSON created and maintained (complex path only)
  • Codebase searched for affected areas
  • Interpretation candidates presented (2+ unless unambiguous)
  • Potential issues and risks listed
  • User feedback received before implementation
  • Implementation matches confirmed interpretation
  • Validation executed (typecheck/test/build)
  • Outcome reported with changed files
  • Flow JSON finalized with completed status (complex path only)

Forbidden:

  • Implementing before user feedback (this is not execute)
  • Presenting only one candidate without justification
  • Ignoring potential issues or risks
  • Expanding scope beyond confirmed interpretation
  • Claiming completion without running validation
  • Skipping flow JSON updates in complex path

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.11%
按下载量换算51

Claude

28.3%
按下载量换算40

Cursor

18.91%
按下载量换算26

Gemini CLI

8.86%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills