resolving-issue — for Claude Code resolving-issue, community, for Claude Code, ide skills, markdown, AGENTS.md, ## Type, feature, refactor, ## Step 3 — Implement Follow

v1.0.0

Об этом навыке

Подходящий сценарий: Ideal for AI agents that need implementing issue. Локализованное описание: Markdown section numbers checker # Implementing Issue Read AGENTS.md for architecture conventions and docs/CONTRIBUTING.md for branch/commit/PR rules. It covers cli, markdown, rust workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Возможности

Implementing Issue
Read AGENTS.md for architecture conventions and docs/CONTRIBUTING.md for branch/commit/PR rules.
Also read docs/PATTERNS.md, docs/TESTING.md, and docs/VALIDATION.md before implementing.
Step 0 — Read the Issue
Determine the issue number from the user's message or context. Fetch the Issue:

# Ключевые темы

23prime 23prime
[0]
[0]
Обновлено: 3/30/2026

Skill Overview

Start with fit, limitations, and setup before diving into the repository.

Подходящий сценарий: Ideal for AI agents that need implementing issue. Локализованное описание: Markdown section numbers checker # Implementing Issue Read AGENTS.md for architecture conventions and docs/CONTRIBUTING.md for branch/commit/PR rules. It covers cli, markdown, rust workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Зачем использовать этот навык

Рекомендация: resolving-issue helps agents implementing issue. Markdown section numbers checker # Implementing Issue Read AGENTS.md for architecture conventions and docs/CONTRIBUTING.md for branch/commit/PR rules. This

Подходит лучше всего

Подходящий сценарий: Ideal for AI agents that need implementing issue.

Реализуемые кейсы использования for resolving-issue

Сценарий использования: Applying Implementing Issue
Сценарий использования: Applying Read AGENTS.md for architecture conventions and docs/CONTRIBUTING.md for branch/commit/PR rules
Сценарий использования: Applying Also read docs/PATTERNS.md, docs/TESTING.md, and docs/VALIDATION.md before implementing

! Безопасность и ограничения

  • Ограничение: Conventional Commits, English only
  • Ограничение: Create a PR following .github/PULL REQUEST TEMPLATE.md. PR body must be in English and include Closes #<N .
  • Ограничение: PR body must be in English and include Closes #<N

About The Source

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Labs-демо

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ и шаги установки

These questions and steps mirror the structured data on this page for better search understanding.

? Частые вопросы

Что такое resolving-issue?

Подходящий сценарий: Ideal for AI agents that need implementing issue. Локализованное описание: Markdown section numbers checker # Implementing Issue Read AGENTS.md for architecture conventions and docs/CONTRIBUTING.md for branch/commit/PR rules. It covers cli, markdown, rust workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Как установить resolving-issue?

Выполните команду: npx killer-skills add 23prime/mdsn. Она работает с Cursor, Windsurf, VS Code, Claude Code и более чем 19 другими IDE.

Для чего можно использовать resolving-issue?

Ключевые сценарии использования: Сценарий использования: Applying Implementing Issue, Сценарий использования: Applying Read AGENTS.md for architecture conventions and docs/CONTRIBUTING.md for branch/commit/PR rules, Сценарий использования: Applying Also read docs/PATTERNS.md, docs/TESTING.md, and docs/VALIDATION.md before implementing.

Какие IDE совместимы с resolving-issue?

Этот навык совместим с Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Для единой установки используйте CLI Killer-Skills.

Есть ли ограничения у resolving-issue?

Ограничение: Conventional Commits, English only. Ограничение: Create a PR following .github/PULL REQUEST TEMPLATE.md. PR body must be in English and include Closes #<N .. Ограничение: PR body must be in English and include Closes #<N.

Как установить этот skill

  1. 1. Откройте терминал

    Откройте терминал или командную строку в директории проекта.

  2. 2. Запустите команду установки

    Выполните: npx killer-skills add 23prime/mdsn. CLI автоматически определит вашу IDE или агента и настроит навык.

  3. 3. Начните использовать skill

    Skill уже активен. Ваш AI-агент может сразу использовать resolving-issue в текущем проекте.

! Source Notes

This page is still useful for installation and source reference. Before using it, compare the fit, limitations, and upstream repository notes above.

Upstream Repository Material

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Upstream Source

resolving-issue

Install resolving-issue, an AI agent skill for AI agent workflows and automation. Explore features, use cases, limitations, and setup guidance.

SKILL.md
Readonly
Upstream Repository Material
The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.
Upstream Source

Implementing Issue

Read AGENTS.md for architecture conventions and docs/CONTRIBUTING.md for branch/commit/PR rules. Also read docs/PATTERNS.md, docs/TESTING.md, and docs/VALIDATION.md before implementing.

Step 0 — Read the Issue

Determine the issue number from the user's message or context. Fetch the Issue:

bash
1REPO=$(gh repo view --json nameWithOwner --jq .nameWithOwner) 2gh issue view <N> -R "$REPO"

Read the title, body, and comments to understand the task fully before proceeding.

The Issue body follows .github/ISSUE_TEMPLATE/default.md. Extract the Type field from the ## Type section if present.

Step 1 — Clarify task type

Use the Type extracted from the Issue body. If the ## Type section is missing or unclear, determine the type from context:

TypeBranch prefixCommit type
featfeature/feat
fixfeature/fix
refactorfeature/refactor
perffeature/perf
docsfeature/docs
aifeature/ai
chorefeature/chore

Confirm the task and type with the user before proceeding.

Step 2 — Create branch

Include the Issue number in the branch name:

bash
1git switch -c feature/<N>-<short-description>

Step 3 — Implement

Follow AGENTS.md conventions. Consult the docs before writing code:

  • docs/PATTERNS.md — source layout, how to add a rule, clap and output patterns
  • docs/TESTING.md — test structure, helper patterns, DirGuard
  • docs/VALIDATION.md — layer boundaries and what each layer validates

Step 4 — Update docs/SPEC.md if needed

If the implementation changes user-visible behavior (new flags, new error codes, output format changes, new validation rules), update docs/SPEC.md accordingly.

Step 5 — Test against real files

bash
1mise run rs-run -- -- 'examples/*.md'

Step 6 — Auto-fix and check

bash
1mise run fix

If any errors remain that cannot be auto-fixed, resolve them manually, then verify:

bash
1mise run check

Repeat until clean.

Step 7 — CodeRabbit review

Invoke the coderabbit skill. Fix each actionable finding and re-review until clean.

Step 8 — Commit

Follow docs/CONTRIBUTING.md:

  • Conventional Commits, English only
  • No Co-Authored-By: line
bash
1git add <files> 2git commit -m "<type>: <description>"

Step 9 — Push and open PR

bash
1git push -u origin feature/<N>-<short-description>

Create a PR following .github/PULL_REQUEST_TEMPLATE.md. PR body must be in English and include Closes #<N>.

bash
1gh pr create --title "<type>: ..." --body "$(cat <<'EOF' 2## Checklist 3 4- [ ] Target branch is `main` 5- [ ] Status checks are passing 6 7## Summary 8 9## Reason for change 10 11## Changes 12 13## Notes 14 15Closes #<N> 16EOF 17)"

Step 10 — Address PR review comments

After opening the PR, GitHub Copilot and CodeRabbit will post review comments automatically. Check whether reviews have arrived:

bash
1gh pr view <PR_NUMBER> --json reviews | jq '[.reviews[].author.login]'
  • If the array is empty, reviews have not arrived yet. Wait ~2–3 minutes and check again.
  • If still empty after ~5 minutes, automated reviews are likely disabled — skip this step.
  • If copilot-pull-request-reviewer or coderabbitai appear, invoke the implementing-pr-review skill to evaluate and apply valid suggestions.

Step 11 — Reflect learnings into docs/

After the PR is merged, review what was encountered during implementation and PR review. If anything is generalizable — useful for future implementations in this project — add it to the appropriate file under docs/.

Sources to review:

  • Accepted review comments: patterns or pitfalls that reviewers pointed out
  • User corrections: when the user said "no, not that — do X instead", consider whether X is a project-wide rule worth documenting
  • Compilation/check failures: if mise run check failed for a non-obvious reason, note the fix

Choose the target file based on the nature of the learning:

Learning typeTarget file
Code patterns, clap/serde conventions, output formattingdocs/PATTERNS.md
Test structure, helper patterns, working directory gotchasdocs/TESTING.md
Validation boundary decisions, try_new vs newdocs/VALIDATION.md

Criteria for adding:

  • Would a future implementer likely make the same mistake?
  • Is it specific to this codebase (not just "read the Rust docs")?
  • Is it concrete enough to be actionable?

If any of the above apply, open a separate PR for the docs updates:

bash
1git switch main && git pull 2git switch -c docs/patterns-from-issue-<N> 3git add docs/ 4git commit -m "docs: add patterns from issue-<N> implementation" 5git push -u origin docs/patterns-from-issue-<N> 6gh pr create --title "docs: add patterns from issue-<N> implementation" --body "$(cat <<'EOF' 7## Checklist 8 9- [ ] Target branch is `main` 10- [ ] Status checks are passing 11 12## Summary 13 14Add generalizable patterns learned during issue-<N> implementation. 15 16## Notes 17 18Related: #<PR_NUMBER> 19EOF 20)"

If nothing generalizable was found, skip this step.

Связанные навыки

Looking for an alternative to resolving-issue or another community skill for your workflow? Explore these related open-source skills.

Показать все

openclaw-release-maintainer

Logo of openclaw
openclaw

Локализованное описание: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

widget-generator

Logo of f
f

Локализованное описание: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor

flags

Logo of vercel
vercel

Локализованное описание: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Браузер

pr-review

Logo of pytorch
pytorch

Локализованное описание: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
Разработчик