Claude Code Plugins

Community-maintained marketplace

Feedback

>-

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name file-distribution
description Automated file distribution across multiple repositories with three-stage workflow. Discovery, parallel distribution, and summary reporting for consistent updates.

File Distribution

When to Use This Skill

Automated file distribution across multiple repositories using GitHub Actions and GitHub Apps.

Pattern Overview

A three-stage workflow that discovers targets, distributes files in parallel, and reports results. Idempotent design ensures safe reruns.

Prerequisites

Implementation

Core Workflow

Configuration

Reliability

Extensions

Operations

Key Principles

  1. Start Small - Test with 2-3 repositories before full rollout
  2. Monitor First Run - Watch logs carefully on initial deployment
  3. Gradual Rollout - Increase max-parallel gradually
  4. Clear Documentation - Document what files are distributed and why
  5. Review Process - Ensure PRs are reviewed before merging

Techniques

Patterns Applied

This workflow implements patterns from the Developer Guide:

Pattern Purpose
Three-Stage Design Separates discovery, execution, and reporting
Matrix Distribution Parallelizes operations with conditional logic
Idempotency Ensures safe reruns after partial failures
Work Avoidance Skips version-only changes

Troubleshooting

See troubleshooting.md for common issues and solutions.

References