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

defining-issues定义问题

Agent Skill

用于围绕 GitHub 仓库、Issue、Pull Request、分支、提交和代码协作流程提供辅助能力。它适合让 Agent 查询项目状态、整理变更、辅助创建或检查协作事项,并把仓库中的信息转成可执行的下一步。使用时需要区分只读查询和写入操作;涉及创建 PR、修改 Issue、推送分支或访问私有仓库时,应确认 token 权限、目标仓库范围和用户授权。

总安装

279

周安装

12

GitHub Stars

2

下载量

98
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/boojack/skills --skill defining-issues

简介

用于围绕GitHub仓库、Issue和PR提供协作辅助,查询状态或整理变更。

  • 适合将模糊请求转化为具体问题定义,支持代码审查与分支管理。
  • 可生成Issue模板或检查提交历史,但不会自动创建PR或修改代码。
  • 涉及写入操作时需确认token权限与仓库访问范围是否匹配。
  • defining-issues 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Defining Issues

Explores the codebase and converts a vague request into a grounded definition. For complex tasks, researches industry solutions and produces a design.

Does NOT implement code, create PRs, or make architectural changes. Output is definition (always) and design (L-scope only).

Phase 1: Definition

NO SOLUTION LANGUAGE — DEFINE THE PROBLEM, NOT THE FIX

Step 1: Background & Context

  • Describe the domain, system, or user scenario
  • Include history or prior attempts if known
  • Keep factual — no editorializing or solution advocacy

Step 2: Issue Statement

  • Precise engineering language and codebase terminology
  • No subjective, aspirational, or solution-proposing language
  • Single paragraph

Step 3: Current State

  • List exact file paths (verify with Glob or Read)
  • Include line numbers for specific functions or definitions
  • Describe current behavior, not desired behavior
  • If section exceeds 30 lines, summarize and move details to a reference appendix
  • If nothing relevant exists: "No existing implementation found."

Step 4: Non-Goals

When in doubt, mark it a non-goal.

  • What is explicitly out of scope
  • What parts of the system must NOT be redesigned
  • What adjacent issues are intentionally excluded

Step 5: Open Questions

Each item must include a default so downstream work can proceed.

Format: Question? (default: answer)

Step 6: Scope

Assess the size of the work:

  • S — single file, <30 lines, known pattern, clear solution
  • M — 2-3 files, some ambiguity but existing patterns apply
  • L — new subsystem, novel problem, multiple viable approaches

State the scope with a one-sentence justification referencing the current state.

Step 7: Validate Definition

CheckCriteria
Background & ContextFactual, no editorializing or solution advocacy
Issue StatementPrecise, single paragraph, no solution words ("should", "need to", "by adding X")
Current StateReal file paths verified with Glob/Read, current behavior only
Non-GoalsSpecific exclusions, conservative scope
Open QuestionsEach has a (default: answer)
ScopeS/M/L with justification referencing current state

If any check fails, return to the failing step and revise.

Save Definition

Save to docs/plans/YYYY-MM-DD-<slug>/definition.md:

## Background & Context

## Issue Statement

## Current State

## Non-Goals

## Open Questions

## Scope

Missing any section invalidates the output.

If scope is S or M: definition is complete. Proceed to executing-tasks.

If scope is L: continue to Phase 2.


Phase 2: Design (L-scope only)

NO DESIGN DECISION WITHOUT A CITED REFERENCE

Step 8: Research

  1. Web search: Engineering blogs, technical articles, documentation
  2. GitHub: Open-source implementations, issues, PRs showing patterns

Prioritize primary sources from companies that have solved this at scale. Use at least 3 distinct search queries.

Rules:

  • At least 3 references, each with a URL you actually visited
  • Verify each URL loads via WebFetch before including — if verification fails after 2 attempts, note as "unverified" and move on
  • Do NOT fabricate URLs
  • Quality over quantity — 3 highly relevant references beat 5 tangential ones

Step 9: Industry Baseline

  • Common/default solution and widely adopted patterns
  • Trade-offs and known limitations
  • Cite references by title

Step 10: Research Summary

  • Key patterns across sources
  • Which approaches fit the current issue and codebase
  • What research suggests about the issue's open questions

Step 11: Design Goals & Non-Goals

Design Goals — derive from issue statement, order by priority. Each must be verifiable: a measurable metric or testable assertion.

Non-Goals — inherit all from definition, add any discovered during research.

Step 12: Proposed Design

  • Reference specific files/modules from definition's current state
  • Explain key decisions and why alternatives were rejected (cite research)
  • Include interface definitions or data flows where helpful
  • Every decision traces to a design goal
  • Pseudocode acceptable; implementation code is not

Step 13: Validate Design

CheckCriteria
References3+ entries with URLs (verified or marked "unverified")
Industry BaselineCites references by title, no speculation
Design GoalsVerifiable, trace to issue statement
Non-GoalsAll inherited items from definition included
Proposed DesignEvery decision traces to a goal, no implementation code

If any check fails, return to the failing step and revise.

Save Design

Save to docs/plans/YYYY-MM-DD-<slug>/design.md:

## References

## Industry Baseline

## Research Summary

## Design Goals

## Non-Goals

## Proposed Design

Missing any section invalidates the output.


Anti-patterns

Definition

  • ❌ "We need to add X" → ✓ "No X exists"
  • ❌ "The system lacks X" (solution wearing a mask) → ✓ "Behavior Y occurs because Z"
  • ❌ "There is no caching layer" (implies one is needed) → ✓ "Queries hit the database on every request; p95 latency is Nms"
  • ❌ Listing systems not affected → ✓ only code paths exhibiting the issue
  • ❌ "Not changing unrelated code" → ✓ specific exclusions
  • ❌ "Should we log?" → ✓ "Should we log? (default: no)"

Solution language test: Re-read the Issue Statement. If removing it would make a reader think "so what?", it describes a problem. If removing it would make a reader think "OK, so we won't build that" — it describes a solution. Rewrite.

Design

  • ❌ "Most apps probably use X" → ✓ "PDF.js uses X (PR #7793)"
  • keys.filter(k =>...) → ✓ "Collect keys ending with suffix"
  • ❌ Unverified URLs → ✓ every URL visited via WebFetch
  • ❌ Features not traced to goals → ✓ every decision references a goal

Red Flags - STOP

If you catch yourself thinking:

  • "I'll suggest a solution in the background section"
  • "This issue is obvious, I can skip the codebase scan"
  • "The open questions don't need defaults"
  • "This is clearly L-scope" (without checking current state for existing patterns)
  • "This pattern is common enough, I don't need a reference"
  • "I'll skip URL verification, it's a well-known source"
  • "The definition didn't mention this, but I'll add it to the design"
  • "I'll include implementation code to make it clearer"

All of these mean: STOP. Revisit the step and follow the process.

Related Skills

  • executing-tasks — next stage: plans and executes tasks from definition/design
  • syncing-linear — push artifacts to Linear at any point

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude

33.51%
按下载量换算33

Codex

32.84%
按下载量换算32

Cursor

20.75%
按下载量换算20

Gemini CLI

10.35%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills