Token导航 LogoToken导航TokenDH.com
前端设计操作浏览器github未标认证来源可访问许可证需确认审计提醒

reproducereproduce 命令行

Agent Skill

reproduce 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,008

周安装

42

GitHub Stars

公开资料未说明

下载量

336
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/tharsanan1/wso2-se-agent-skills --skill reproduce

简介

reproduce 用于处理 GitHub 仓库、Issue、Pull Request 等协作信息。

  • 它适合围绕代码变更和项目状态进行整理。
  • 可辅助检查仓库状态或生成协作事项摘要。
  • 安装命令为 npx skills add https://github.com/tharsanan1/wso2-se-agent-skills --skill reproduce。
  • 注意权限范围及是否访问私有仓库。

SKILL.md

/reproduce — Issue Analysis & Bug Reproduction

You are a Software Engineer determining if a GitHub issue is a valid, reproducible bug. Follow the procedure below precisely.

Step 1: Classify the Issue

Determine whether this is a Bug, Feature Request, Question, or Enhancement.

  • If it is not a bug, report the classification and stop. Do not proceed further.
  • If the issue bundles multiple bugs, ask the developer to split it before proceeding.

Step 2: Environment Setup

  1. If a product zip is available use it, else build the product from the relevant branch.
  2. Verify: Ports available, product starts and passes health check.

If setup fails, report the failure and stop

Step 3: Reproduce the Bug

THIS STEP IS MANDATORY. YOU MUST ACTUALLY TRIGGER THE BUG IN A RUNNING PRODUCT.

"Reproduction" means observing the bug happen at runtime — NOT reading source code, NOT analyzing logic, NOT grepping compiled output. If you have not seen the actual incorrect behavior with your own eyes (via Playwright screenshots, curl responses, or log output from a running server), you have NOT reproduced the bug. Do not mark it as reproduced.

Code inspection is useful for root cause analysis (Step 5), but it is NOT reproduction. You must complete this step before writing any root cause analysis.

How to reproduce

  1. Start the product server and wait for it to be ready.
  2. Follow the reproduction steps from the issue (or infer reasonable steps if not provided).
  3. Determine whether this is a frontend or backend issue:

- Frontend issue (involves UI behavior — clicking, forms, navigation): Use Playwright to drive a real browser. Save the script as .ai/reproduce-<issue_number>.mjs so verify-fix can reuse it. Refer CLAUDE.md for Playwright guides. - Backend issue (involves REST API responses, server errors): Use curl to make real HTTP requests to the running server.

  1. Capture concrete evidence:

- Frontend: Screenshots at each key step showing the actual buggy behavior. - Backend: Full HTTP responses (status code, headers, body), error logs from the server.

  1. Record expected vs. actual behavior based on what you observed, not what you read in code.

What counts as reproduction evidence

  • Playwright screenshot showing a UI element is hidden when it should be visible
  • curl response showing HTTP 500 when it should be 200
  • Server log showing an exception during an API call you made

What does NOT count as reproduction evidence

  • "Code analysis confirms the bug" — this is NOT reproduction
  • "The logic shows enableDirectToken is never restored" — this is analysis, NOT reproduction
  • curl -sk -o /dev/null -w "%{http_code}" <url> returning 200 — this only proves the page loads, NOT that the bug exists REST API reference: See the REST API Reference section in CLAUDE.md

Step 4: Locate Related Tests

Analyze only the unit test coverage related to the issue.

Step 5: Write the Output Artifact

Create the directory .ai/ at the repo root if it doesn't exist. Write the analysis to .ai/ia-<issue_number>.md using this exact format:

# Issue Analysis — [Issue #ID]: [Issue Title]

## Classification
- **Type:** Bug / Not a Bug (with explanation)
- **Severity Assessment:** Critical / High / Medium / Low
- **Affected Component(s):** [component names]
- **Affected Feature(s):** [feature names]

## Reproducibility
- **Reproducible:** Yes / No (ONLY "Yes" if you triggered the bug at runtime and observed it. Code analysis alone = "No")
- **Reproduction method:** Playwright / curl / server logs (specify which)
- **Environment:** [branch, language/runtime version, OS, relevant config]
- **Steps Executed:**
  1. [step]
  2. [step]
- **Expected Behavior:** [what should happen]
- **Actual Behavior:** [what actually happened — describe what you OBSERVED, not what you read in code]
- **Evidence:** [screenshots in .ai/screenshots-<issue_number>/, curl output, or server log excerpts — MUST be from runtime, not code]

## Root Cause Analysis
Brief analysis of what is likely causing the bug based on reproduction results.

## Test Coverage Assessment
- **Existing tests covering this path:** [list test files/functions]
- **Coverage gaps identified:** [paths with no tests]
- **Proposed test plan:**
  - Unit test: [description]
  - Negative/edge cases: [description]

Step 6: Cleanup

  • Revert any temporary config or data changes.
  • Ensure the working tree is clean.

Important Rules

  • Never guess. If you encounter ambiguity you cannot resolve from available documents, stop and ask the developer.
  • Artifacts over memory. The output artifact must be complete enough for a different agent to pick up where you left off.
  • Server startup: The start command and the log polling loop MUST be in the same Bash tool call with timeout: 200000. Do not split them into separate calls.
  • Playwright best practices: Wait for elements rather than using fixed sleeps (page.waitForSelector(), page.locator().waitFor()). Log assertions clearly — print expected vs actual so the output is useful in artifacts.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.55%
按下载量换算109

Claude

29.29%
按下载量换算98

Cursor

19.2%
按下载量换算65

Gemini CLI

9.26%
按下载量换算31

安全审计

Gen Agent Trust Hub

可疑

Socket

可疑

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills