🎯

github-ecosystem

🎯Skill

from zircote/.claude

VibeIndex|
What it does

github-ecosystem skill from zircote/.claude

πŸ“¦

Part of

zircote/.claude(22 items)

github-ecosystem

Installation

PythonRun Python server
python scripts/generate_github_config.py --project-path .
πŸ“– Extracted from docs: zircote/.claude
1Installs
10
-
Last UpdatedDec 14, 2025

Skill Details

SKILL.md

Generate comprehensive GitHub ecosystem configuration including CI/CD workflows, issue templates, PR templates, CODEOWNERS, dependabot, and Copilot instructions. Language-agnostic with Python, Go, and TypeScript support. Auto-detects project language from pyproject.toml, go.mod, or package.json. Use when setting up GitHub repos, adding CI/CD pipelines, creating issue/PR templates, configuring dependabot, adding CODEOWNERS, setting up Copilot instructions, or enhancing existing projects with GitHub tooling. Works on new or existing repositories with smart merging.

Overview

# GitHub Ecosystem Configuration Generator

Generates production-ready GitHub configuration for any project.

Quick Start

Run in a project directory to auto-detect language and generate configuration:

```bash

python scripts/generate_github_config.py --project-path .

```

Supported Languages

| Language | Detection Files | CI Tools |

|------------|-------------------------------|------------------------------------|

| Python | pyproject.toml, setup.py | ruff, mypy, bandit, pytest |

| Go | go.mod | golangci-lint, go test |

| TypeScript | package.json + tsconfig.json | eslint, prettier, tsc, vitest/jest |

Components

GitHub Actions Workflows

ci.yml - Continuous Integration

  • Multi-version test matrix
  • Code quality checks (lint, format, typecheck)
  • Security scanning
  • Coverage reporting
  • Build verification

release.yml (optional) - Release Automation

  • Version bumping
  • GitHub Release creation
  • Package publishing
  • Changelog generation

docker.yml (optional) - Container Builds

  • Multi-platform builds (amd64, arm64)
  • GHCR publishing
  • Caching optimization

Issue Templates

  • bug_report.md - Structured bug reporting
  • feature_request.md - Feature proposals with API examples
  • config.yml - Template chooser configuration

Other Templates

  • PULL_REQUEST_TEMPLATE.md - PR checklist with change types
  • CODEOWNERS - Code ownership definitions
  • dependabot.yml - Automated dependency updates
  • copilot-instructions.md - GitHub Copilot context

Configuration Options

| Option | Default | Description |

|--------|---------|-------------|

| --project-path | . | Project directory |

| --language | (auto) | Force language: python, go, typescript |

| --components | all | Comma-separated: workflows,templates,dependabot,codeowners,copilot |

| --include-release | false | Include release workflow |

| --include-docker | false | Include docker workflow |

| --codeowners | (optional) | CODEOWNERS entries (e.g., "* @team") |

| --overwrite | false | Overwrite existing files |

Enhancement Mode

When .github/ already exists, the skill enters enhancement mode:

  • Detects existing configuration
  • Shows what will be added/modified
  • Merges without overwriting (unless --overwrite)
  • Preserves custom modifications

Generated Structure

```

.github/

β”œβ”€β”€ workflows/

β”‚ β”œβ”€β”€ ci.yml # Always generated

β”‚ β”œβ”€β”€ release.yml # With --include-release

β”‚ └── docker.yml # With --include-docker

β”œβ”€β”€ ISSUE_TEMPLATE/

β”‚ β”œβ”€β”€ bug_report.md

β”‚ β”œβ”€β”€ feature_request.md

β”‚ └── config.yml

β”œβ”€β”€ PULL_REQUEST_TEMPLATE.md

β”œβ”€β”€ CODEOWNERS # With --codeowners

β”œβ”€β”€ dependabot.yml

└── copilot-instructions.md

```

Language-Specific Details

See reference files for detailed workflow patterns:

  • references/python-workflow.md - Python CI/CD patterns
  • references/go-workflow.md - Go CI/CD patterns
  • references/typescript-workflow.md - TypeScript CI/CD patterns

Post-Generation

After generation:

  1. Review generated workflows for your needs
  2. Add any required secrets (e.g., PYPI_API_TOKEN for publishing)
  3. Customize version matrices if needed
  4. Update CODEOWNERS with actual team handles

More from this repository10

🎯
frontend-dev-guidelines🎯Skill

Provides comprehensive frontend development best practices, coding standards, and style guidelines for consistent and high-quality web application development.

🎯
openai-prompt-engineer🎯Skill

Generates and improves AI prompts using advanced techniques like chain-of-thought, few-shot prompting, and model-specific optimization strategies.

🎯
web-frameworks🎯Skill

Builds modern full-stack web applications using Next.js, Turborepo, and RemixIcon for optimized, scalable React development.

🎯
frontend-design🎯Skill

Designs distinctive, production-grade frontend interfaces with creative aesthetics, avoiding generic AI design and focusing on unique, memorable visual experiences.

🎯
docs-seeker🎯Skill

Searches and retrieves technical documentation from multiple sources like context7.com, GitHub repositories, and websites using advanced parallel exploration strategies.

🎯
ui-styling🎯Skill

Skill

🎯
anthropic-prompt-engineer🎯Skill

Generates and optimizes Claude AI prompts using Anthropic's best practices to create precise, reliable, and high-performance instructions.

🎯
sequential-thinking🎯Skill

Systematically breaks down complex problems through iterative, adaptive reasoning with dynamic scoping and branching capabilities.

🎯
repomix🎯Skill

Merges, combines, or synchronizes repository configurations, dependencies, or code structures across multiple project repositories.

🎯
mcp-builder🎯Skill

Builds high-quality MCP servers that enable LLMs to seamlessly interact with external services through well-designed, discoverable tools across Python and TypeScript.