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

sdd-issueSD 问题

Agent Skill

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

总安装

242

周安装

10

GitHub Stars

公开资料未说明

下载量

79
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/andresnator/agents-orchestrator --skill sdd-issue

简介

sdd-issue 用于围绕 GitHub 仓库、Issue、Pull Request、分支、提交和代码协作流程提供辅助能力。

  • 适合让 Agent 查询项目状态、整理变更、辅助创建或检查协作事项。
  • 使用时需要区分只读查询和写入操作;涉及创建 PR、修改 Issue 等操作时需确认 token 权限和用户授权。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 确认具体用法。
  • 注意该技能当前分类为研究检索,实际功能以来源仓库文档为准。

SKILL.md

SDD Issue Creator

You create GitHub issues that serve as the entry contract for an SDD orchestrator cycle. The issue must contain enough structured information so that an agent can run:

@sdd-orchestrator build the issue <number>

and execute the full SDD lifecycle (Explore → Propose → Implement → Verify → Archive → Merge) without asking clarifying questions.

Why Structure Matters

The SDD orchestrator delegates to specialized subagents:

SubagentWhat it reads from the issue
sdd-scannerIntent, scope, and technical context to know WHERE to look in the codebase
sdd-spec-writerIntent, scope, constraints, and acceptance scenarios to write proposal.md, delta specs, design.md, and tasks.md
sdd-coderIndirectly — the specs and tasks derived from the issue
sdd-verifierAcceptance scenarios become the verification checklist

A vague issue forces the orchestrator to guess. A well-structured issue lets it run autonomously.

Issue Template

Every SDD issue MUST follow this structure. Fill ALL sections — empty sections cause the orchestrator to halt or make assumptions.

## Intent

<!-- WHY this change is needed. 2-3 sentences. The orchestrator uses this to generate
     the change-name and the proposal.md intent section. -->

## Type

<!-- One of: feature | bugfix | refactor | chore -->

## Scope

### In Scope
<!-- Bullet list of what WILL be built or changed. Be specific about:
     - Components, modules, or layers affected
     - New endpoints, entities, or UI elements
     - Behavioral changes -->

### Out of Scope
<!-- Bullet list of what will NOT be done. This prevents scope creep during the
     automated cycle. The spec-writer uses this to set boundaries. -->

## Acceptance Scenarios

<!-- Each scenario becomes a GIVEN/WHEN/THEN in the delta specs and a verification
     checkpoint. Write at least 2 scenarios per in-scope item. -->

### Scenario: <descriptive name>
- GIVEN <precondition>
- WHEN <action or trigger>
- THEN <observable expected result>

### Scenario: <descriptive name>
- GIVEN <precondition>
- WHEN <action or trigger>
- THEN <observable expected result>

## Technical Context

<!-- Information the scanner needs to find relevant code faster. Optional but highly
     valuable for large codebases. -->

- **Affected files/modules**: <!-- e.g., src/auth/, api/routes/users.ts -->
- **Related specs**: <!-- e.g., openspec/specs/auth/spec.md -->
- **Dependencies**: <!-- e.g., needs jsonwebtoken library -->
- **Breaking changes**: <!-- e.g., changes the User entity schema -->

## Constraints

<!-- Non-functional requirements, architectural rules, or team conventions the
     orchestrator must respect. -->

- <!-- e.g., Must maintain backward compatibility with v2 API -->
- <!-- e.g., No new external dependencies without approval -->
- <!-- e.g., Must support PostgreSQL and SQLite -->

## Priority

<!-- One of: critical | high | medium | low -->

Workflow

1. Gather requirements from the user (interview if needed)
2. Search existing issues for duplicates: gh issue list --search "keyword"
3. Fill ALL template sections — leave nothing as placeholder
4. Validate: every in-scope item has at least 2 acceptance scenarios
5. Create the issue with appropriate labels
6. Return the issue URL to the user

Creating the Issue

Use gh issue create with the filled template. Apply labels based on type:

TypeLabels
featureenhancement, sdd-ready
bugfixbug, sdd-ready
refactorrefactor, sdd-ready
chorechore, sdd-ready

The sdd-ready label signals that the issue has the structure needed for automated SDD consumption.

gh issue create \
  --title "<type>(<scope>): <concise description>" \
  --label "<type-label>,sdd-ready" \
  --body "$(cat <<'EOF'
<filled template content>
EOF
)"

Title Convention

Follow the commit convention: <type>(<scope>): <description>

Examples:

  • feat(auth): add OAuth2 social login with Google and GitHub
  • fix(api): resolve race condition in concurrent task updates
  • refactor(db): migrate from raw SQL to repository pattern

Enriching an Existing Issue

When the user references an existing issue number (e.g., "enrich issue #7 for SDD"):

  1. Fetch the issue: gh issue view <number>
  2. Extract whatever information exists
  3. Interview the user to fill gaps in the template
  4. Update the issue: gh issue edit <number> --body "$(cat <<'EOF'...EOF)"
  5. Add the sdd-ready label: gh issue edit <number> --add-label "sdd-ready"

Quality Checklist

Before submitting, verify:

  • Intent explains WHY, not just WHAT
  • Every in-scope item has at least 2 acceptance scenarios
  • Scenarios use GIVEN/WHEN/THEN format (the spec-writer depends on this)
  • Out of scope is explicitly defined (prevents orchestrator scope creep)
  • Type is one of: feature, bugfix, refactor, chore
  • Title follows type(scope): description convention
  • No placeholder text remains in the body

Example: Complete SDD-Ready Issue

## Intent

Users currently authenticate only with email/password. We need to add OAuth2 social login
with Google and GitHub to reduce signup friction and improve conversion rates.

## Type

feature

## Scope

### In Scope
- OAuth2 authorization code flow for Google and GitHub providers
- New `/auth/oauth/callback` endpoint to handle provider redirects
- User entity extension to store provider ID and linked accounts
- Login page UI buttons for "Sign in with Google" and "Sign in with GitHub"
- Account linking: if an OAuth email matches an existing account, link them

### Out of Scope
- Other OAuth providers (Apple, Microsoft) — future iteration
- OAuth token refresh for API access to provider data
- Migration of existing users to OAuth

## Acceptance Scenarios

### Scenario: First-time Google OAuth login creates account
- GIVEN a user with no existing account
- WHEN the user clicks "Sign in with Google" and authorizes the app
- THEN a new user account is created with the Google email and provider ID

### Scenario: GitHub OAuth login with existing email links accounts
- GIVEN a user with an existing email/password account matching the GitHub email
- WHEN the user clicks "Sign in with GitHub" and authorizes the app
- THEN the GitHub provider is linked to the existing account without creating a duplicate

### Scenario: OAuth callback with invalid state parameter
- GIVEN an OAuth callback request with a tampered or expired state parameter
- WHEN the callback endpoint receives the request
- THEN it returns 403 Forbidden and logs the attempt as a security event

### Scenario: OAuth provider is unavailable
- GIVEN the Google OAuth service is unreachable
- WHEN the user clicks "Sign in with Google"
- THEN the user sees an error message and can still log in with email/password

## Technical Context

- **Affected files/modules**: src/auth/, src/users/user.entity.ts, src/web/pages/login.tsx
- **Related specs**: openspec/specs/auth/spec.md
- **Dependencies**: needs passport-google-oauth20 and passport-github2 libraries
- **Breaking changes**: adds columns to the User table (non-destructive migration)

## Constraints

- Must not break existing email/password authentication
- OAuth secrets must come from environment variables, never hardcoded
- Must work in both development (localhost redirect) and production environments

## Priority

high

Decision Tree

User wants to create something new     → feature issue
User reports broken behavior           → bugfix issue
User wants to improve existing code    → refactor issue
User wants infra/tooling/config change → chore issue
User has a vague idea                  → Interview first, then create issue
User references existing issue number  → Enrich the existing issue for SDD

Inspired by the issue workflow from Gentleman Programming.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.41%
按下载量换算30

Claude

27.93%
按下载量换算22

Cursor

20.27%
按下载量换算16

Gemini CLI

10.35%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills