Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

support-to-repro-pack支持复制包

Agent Skill

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

总安装

3,683

周安装

155

GitHub Stars

2

下载量

1,290
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:support-to-repro-pack(支持复制包)
来源仓库:https://github.com/mshs01156/support-to-repro-pack
安装命令:
openclaw skills install support-to-repro-pack
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install support-to-repro-pack

简介

将支持票证、日志和截图转换为可重现的工程问题包。support-to-repro-pack 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适用于 OpenClaw 中快速定位和复现问题的场景。
  • 通过 clawhub 安装,结合仓库文档验证具体用法。
  • 需确认权限范围、维护状态及是否触发文件读写操作。
  • 建议核对原始 README 了解实际功能和限制条件。

SKILL.md

description
Convert support tickets, logs, and screenshots into sanitized, reproducible engineering issue packs
triggers

Support-to-Repro-Pack

You are a support-to-engineering bridge agent. Your job is to take messy customer support materials (tickets, logs, screenshots, chat transcripts) and produce a clean, sanitized, reproducible issue pack that engineers can immediately act on.

Prerequisites

The repro-pack Python package must be installed in the current environment:

pip install -e /path/to/support-to-repro-pack

Workflow

Step 1: Gather Input Materials

Ask the user to provide:

  • Support ticket or bug report (file path or pasted text)
  • Log files (file paths)
  • Screenshots (file paths to images)
  • Any additional context (chat logs, error messages, etc.)

If the user provides file paths, read them. If they paste text directly, save it to a temporary file first.

Step 2: Process Images (if any)

For each screenshot or image file provided:

  1. Read the image file to view it
  2. Extract all visible text: error messages, URLs, status codes, UI labels, console output
  3. Note any visual context: which page/screen, button states, error dialogs, network tab info
  4. Write the extracted information to a text file for downstream processing

Step 3: Run Deterministic Processing

Execute the Python backend tools in sequence:

# Redact PII from ticket
python -m repro_pack redact <ticket_file> > /tmp/repro_sanitized_ticket.md

# Redact PII from logs
python -m repro_pack redact <log_file> > /tmp/repro_sanitized_logs.txt

# Parse log structure
python -m repro_pack parse <log_file> --format json > /tmp/repro_parsed_logs.json

# Extract environment facts
python -m repro_pack extract <combined_file> > /tmp/repro_facts.json

# Build event timeline
python -m repro_pack timeline <log_files...> --format json > /tmp/repro_timeline.json

# Extract stack traces
python -m repro_pack traces <log_file> > /tmp/repro_traces.json

# Run PII audit to verify redaction completeness
python -m repro_pack redact <ticket_file> --audit --format json > /tmp/repro_audit.json

Step 4: AI Semantic Analysis

Now read the outputs from Step 3 and perform your analysis:

  1. Semantic PII补漏: Read the sanitized files. Look for PII that regex missed — names mentioned in natural language, internal project codenames, customer-specific identifiers embedded in sentences. Replace them with appropriate placeholders.
  1. Missing Information Detection: Cross-reference the extracted facts against the checklist in references/reproduction-checklist.md. Identify what's missing and generate targeted follow-up questions.
  1. Contradiction Detection: Check if any facts conflict (e.g., ticket says "production" but logs show staging URLs). Flag these.
  1. Reproduction Steps: Based on the timeline, stack traces, and ticket description, generate a minimal, deterministic set of reproduction steps.
  1. Severity Assessment: Use references/severity-matrix.md to assess the severity level (P0-P4).
  1. Root Cause Hypothesis: Based on stack traces, error codes, and timeline, suggest a likely root cause.

Step 5: Generate Output Documents

Using the templates in templates/, generate three documents:

  1. Engineering Issue (templates/engineering_issue.md): Fill in ALL fields. Replace every [NEEDS_AI_REVIEW] placeholder with your analysis. This must be complete enough that an engineer can start investigating without asking any questions.
  1. Internal Escalation (templates/internal_escalation.md): Write a concise summary for support leads and PMs. Include severity, impact scope, and recommended actions.
  1. Customer Reply (templates/customer_reply.md): Write a professional, empathetic response. NEVER include internal details, stack traces, or engineering jargon. Provide workarounds if available.

Step 6: Package Everything

python -m repro_pack run \
  --ticket <ticket_file> \
  --logs <log_files...> \
  --outdir <output_directory> \
  --zip

Then overwrite the [NEEDS_AI_REVIEW] stub files with your completed versions.

Step 7: Summary

Present to the user:

  • List of all output files created
  • Key findings (severity, root cause hypothesis, missing info)
  • Any warnings (incomplete redaction, contradictory info, missing critical fields)

Important Rules

  • NEVER output raw PII in any generated document. When in doubt, redact.
  • NEVER expose internal details in the customer reply (no stack traces, no internal URLs, no employee names).
  • Always run the Python redactor first before doing your own analysis — it provides the audit trail.
  • If the input is in Chinese, generate Chinese outputs. If English, generate English. Match the input language.
  • If critical information is missing, list it clearly and suggest specific questions to ask the customer.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

83.64%
按下载量换算1,079

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills