zircote/.github

Organization shared workflows, policies, and community health files

0 stars0 forksUpdated Jan 25, 2026
npx skills add zircote/.github

README

zircote/.github

Organization-wide GitHub configuration, reusable workflows, and AI assistant integrations for my repositories.

Overview

This repository provides shared infrastructure across all zircote/* repos:

ComponentPurposeLocation
Community Health FilesDefault SECURITY.md, CONTRIBUTING.mdRoot directory
Organization ProfilePublic profile at github.com/zircoteprofile/README.md
Reusable WorkflowsCI/CD pipelines callable from any repo.github/workflows/
Composite ActionsShared action building blocksactions/
Label DefinitionsStandardized issue/PR labelslabels.yml
Copilot SkillsAI-assisted development capabilities.github/skills/
Autonomous AgentsMulti-step AI workflow automationagents/

Repository Structure

.github/
├── .github/
│   ├── workflows/               # Reusable workflows
│   │   ├── reusable-ci-python.yml
│   │   ├── reusable-ci-typescript.yml
│   │   ├── reusable-ci-go.yml
│   │   ├── reusable-release.yml
│   │   ├── reusable-security.yml
│   │   ├── reusable-docs.yml
│   │   └── sync-labels.yml
│   ├── skills/                  # Copilot Skills
│   │   ├── template-creation/
│   │   ├── workflow-development/
│   │   ├── security-baseline/
│   │   ├── content-pipeline/
│   │   ├── ecosystem-migration/
│   │   └── ai-tuning/
│   └── copilot-instructions.md
├── actions/                     # Composite Actions
│   ├── setup-python-uv/
│   ├── setup-node-pnpm/
│   ├── release-notes/
│   └── security-scan/
├── agents/                      # Autonomous Agents
│   ├── template-architect.md
│   ├── workflow-engineer.md
│   ├── security-auditor.md
│   ├── content-strategist.md
│   ├── ecosystem-migrator.md
│   └── copilot-tuner.md
├── profile/
│   └── README.md
├── labels.yml
├── SECURITY.md
├── CONTRIBUTING.md
└── FUNDING.yml

Reusable Workflows

Python CI

jobs:
  ci:
    uses: zircote/.github/.github/workflows/reusable-ci-python.yml@main
    with:
      python-version: "3.12"
      run-tests: true
      coverage-threshold: 80

TypeScript CI

jobs:
  ci:
    uses: zircote/.github/.github/workflows/reusable-ci-typescript.yml@main
    with:
      node-version: "22"
      run-tests: true

Go CI

jobs:
  ci:
    uses: zircote/.github/.github/workflows/reusable-ci-go.yml@main
    with:
      go-version: "1.23"
      run-race-detector: true

Security Scanning

jobs:
  security:
    uses: zircote/.github/.github/workflows/reusable-security.yml@main
    with:
      scan-secrets: true
      scan-dependencies: true

Release Automation

jobs:
  release:
    uses: zircote/.github/.github/workflows/reusable-release.yml@main
    with:
      generate-changelog: true

Documentation Deployment

jobs:
  docs:
    uses: zircote/.github/.github/workflows/reusable-docs.yml@main
    with:
      framework: astro  # or mkdocs, sphinx, docusaurus
      deploy-to-pages: true

Composite Actions

setup-python-uv

- uses: zircote/.github/actions/setup-python-uv@main
  with:
    python-version: "3.12"
    cache: true

setup-node-pnpm

- uses: zircote/.github/actions/setup-node-pnpm@main
  with:
    node-version: "22"
    cache: true

security-scan

- uses: zircote/.github/actions/security-scan@main
  with:
    scan-secrets: true
    scan-dependencies: true
    language: python  # or javascript, go, rust

release-notes

- uses: zircote/.github/actions/release-notes@main
  with:
    version: ${{ github.ref_name }}
    output-file: CHANGELOG.md

Label Sync

Standardized labels maintained via sync-labels.yml:

CategoryLabels
Prioritypriority: critical, priority: high, priority: medium, priority: low
Typetype: bug, type: feature, type: enhancement, type: docs, type: security
Statusstatus: blocked, status: in-progress, status: needs-review, status: ready
Areaarea: ci-cd, area: testing, area: infrastructure, area: dependencies
Efforteffort: small, effort: medium, effort: large, effort: epic
# Sync labels to a repo
gh workflow run sync-labels.yml -f repo=zircote/my-repo

AI Integration

Copilot Skills

| Skill | Trigger | Purpose | | ------------------------ | ----------

...

Read full README

Publisher

zircotezircote

Statistics

Stars0
Forks0
Open Issues0
CreatedDec 25, 2025