creating-github-issues — cross-platform creating-github-issues, marlin, community, cross-platform, ide skills, desktop-app, file-browser, file-manager, typescript

v1.0.0

About this Skill

Perfect for Code Review Agents needing advanced issue tracking and management capabilities for cross-platform desktop apps Use when creating GitHub issues, making new issues, filing bugs, requesting features, or before running `gh issue create`. Triggers on new issue, create issue, file issue, gh issue, open issue. Ensure

# Core Topics

StirlingMarketingGroup StirlingMarketingGroup
[9]
[2]
Updated: 3/12/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 7/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Locale and body language aligned
Review Score
7/11
Quality Score
42
Canonical Locale
en
Detected Body Locale
en

Perfect for Code Review Agents needing advanced issue tracking and management capabilities for cross-platform desktop apps Use when creating GitHub issues, making new issues, filing bugs, requesting features, or before running `gh issue create`. Triggers on new issue, create issue, file issue, gh issue, open issue. Ensure

Core Value

Empowers agents to create well-researched and clearly documented GitHub issues, utilizing Explore agent or search tools to understand codebase structure, including file paths, functions, components, and database tables, ensuring seamless collaboration and implementation for developers and teams

Ideal Agent Persona

Perfect for Code Review Agents needing advanced issue tracking and management capabilities for cross-platform desktop apps

Capabilities Granted for creating-github-issues

Researching codebases to identify relevant functionality and implementation details
Documenting issues with sufficient context for efficient understanding and resolution
Streamlining cross-platform desktop app development by ensuring GitHub issues contain necessary information for implementation

! Prerequisites & Limits

  • Requires access to GitHub repository and issue tracking system
  • Needs understanding of codebase structure and relevant technologies such as API endpoints and UI components

Why this page is reference-only

  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

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 & Installation Steps

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

? Frequently Asked Questions

What is creating-github-issues?

Perfect for Code Review Agents needing advanced issue tracking and management capabilities for cross-platform desktop apps Use when creating GitHub issues, making new issues, filing bugs, requesting features, or before running `gh issue create`. Triggers on new issue, create issue, file issue, gh issue, open issue. Ensure

How do I install creating-github-issues?

Run the command: npx killer-skills add StirlingMarketingGroup/marlin/creating-github-issues. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for creating-github-issues?

Key use cases include: Researching codebases to identify relevant functionality and implementation details, Documenting issues with sufficient context for efficient understanding and resolution, Streamlining cross-platform desktop app development by ensuring GitHub issues contain necessary information for implementation.

Which IDEs are compatible with creating-github-issues?

This skill is compatible with 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. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for creating-github-issues?

Requires access to GitHub repository and issue tracking system. Needs understanding of codebase structure and relevant technologies such as API endpoints and UI components.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add StirlingMarketingGroup/marlin/creating-github-issues. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use creating-github-issues immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

creating-github-issues

Install creating-github-issues, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Creating GitHub Issues

Overview

Every GitHub issue should be well-researched and clearly documented. This skill ensures issues contain enough context for anyone to understand and implement them.

Mandatory Workflow

Step 1: Research the Codebase

Before writing the issue, use the Explore agent or search tools to understand:

  • Where relevant code lives (file paths, functions, components)
  • How similar functionality is currently implemented
  • Database tables, API endpoints, or UI components involved
  • Existing patterns that should be followed

Include in the issue:

  • Specific file paths and line numbers
  • Code snippets showing current implementation
  • References to similar existing code as examples

Why: Issues with research reduce back-and-forth questions and give implementers a head start.

Step 2: Create the Issue

Use gh issue create with a well-structured body:

bash
1gh issue create --title "Brief descriptive title" --body "$(cat <<'EOF' 2## Summary 3<1-3 sentences describing what needs to be done> 4 5## Current State 6<What exists now, with file paths and code references> 7 8## Proposed Changes 9<What should change, with specific details> 10 11## Technical Notes 12<File paths, database tables, API endpoints, code snippets> 13 14## Acceptance Criteria 15- [ ] Specific testable requirement 16- [ ] Another requirement 17EOF 18)"

Step 3: Add Labels

Discover current labels and apply appropriate ones:

bash
1gh label list --limit 50

Common label categories:

  1. Type (pick one):

    • enhancement - New feature or improvement
    • bug - Something isn't working
    • documentation - Documentation improvements
    • question - Further information requested
  2. Priority (if applicable):

    • priority: critical - Production broken, blocking issue
    • priority: high - Important bug fix, urgent feature
    • priority: low - Nice to have, can wait
  3. Area (if applicable):

    • Labels indicating which part of the codebase is affected
bash
1gh issue edit <number> --add-label "enhancement"

Step 4: Add to Project (if applicable)

If the repository uses GitHub Projects:

bash
1gh issue edit <number> --add-project "Project Name"

Issue Template

markdown
1## Summary 2<1-3 sentences describing what needs to be done> 3 4## Current State 5<What exists now> 6- File: `path/to/file.ts:123` 7- Current behavior: <description> 8 9## Proposed Changes 10<What should change> 111. Change X to do Y 122. Add Z functionality 13 14## Technical Notes 15- Relevant files: `src/components/Feature.tsx`, `src/utils/helpers.ts` 16- Related functions: `handleSubmit()`, `validateInput()` 17- Consider: <architectural notes, edge cases> 18 19## Acceptance Criteria 20- [ ] Specific testable requirement 21- [ ] Another requirement 22- [ ] Tests pass 23 24## Additional Context 25<Screenshots, error messages, related issues>

Field Selection Guidelines

Priority

  • Critical - Production broken, blocking issue
  • High - Important bug fix, urgent feature (most bugs default here)
  • Medium - Standard feature work
  • Low - Nice to have, can wait

Default guidance: Bugs default to High unless trivial. Enhancements default to Medium unless urgent.

Common Mistakes

MistakeFix
Create issue without researching code firstUse Explore agent to find relevant files
Generic issue descriptionInclude specific file paths, line numbers, code snippets
Missing acceptance criteriaAlways include testable requirements
No labelsAlways add at least a type label
Vague titleMake titles specific and searchable

Related Skills

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

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Developer