octanejs/octane✦ 精选0°

handle-issue

仓库创建 2026年6月23日最近提交 2 小时前SkillHot 收录 1 小时前
▸ 精选理由

集成问题抓取与归属判定流程,便于快速制定修复计划或交接。

这个 Skill 做什么

获取并分类 Octane 仓库的 GitHub issue,提出并可实现解决方案。

给出 Octane 仓库的 issue 编号或链接后,它会把 issue 拉下来看上下文、判断负责区域并提出可行的修复计划,必要时还能去实现并提交 PR。适合需要快速把问题分类、列出修复步骤或直接交付补丁的场景。会抓取标题、正文、评论和标签等信息,帮你省去手动排查的时间。

▸ 展开 SKILL.md 英文原文

Work a GitHub issue in the octane repo. Use when given an issue number or link. Fetches the issue, classifies the owning area, and plans the fix.

开发编程issue分类实施通用
1.2k
Stars
41
Forks
40
仓库内 Skill
积累中
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/octanejs/octane/main/.rulesync/skills/handle-issue/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/octanejs/octane/main/.rulesync/skills/handle-issue/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Skill: Handle an Octane GitHub issue

Use this to inspect an issue, triage it, propose a solution, and optionally implement it.

## Inputs

- Issue number or URL.
- Optional scope constraints: triage-only, propose-only, implement, or create PR.

## Workflow

1. **Fetch issue context**
   ```bash
   gh issue view <number> --json number,title,body,author,labels,state,comments,assignees,milestone,url
   ```
   If linked PRs/commits are mentioned, inspect them too.

2. **Classify**
   - bug, feature, docs, test gap, performance, parity gap, ecosystem binding, question.
   - affected area: core runtime, compiler, SSR/hydration, Vite plugin, binding package, benchmarks/docs.
   - severity and li
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有