Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问clear审计通过

multi-repo多仓库

Agent Skill

multi-repo 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,546

周安装

102

GitHub Stars

55

下载量

824
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:multi-repo(多仓库)
来源仓库:https://github.com/rysweet/amplihack
仓库路径:skills/multi-repo
安装命令:
npx skills add https://github.com/rysweet/amplihack --skill multi-repo
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/rysweet/amplihack --skill multi-repo

简介

同时管理多个关联仓库的操作流程。

  • 支持批量更新与依赖关系维护。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 适用于微服务架构下的代码治理。
  • 应谨慎执行影响范围大的变更。
  • multi-repo 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Multi-Repository Orchestration Skill

Purpose

Coordinate atomic changes across multiple repositories when features span repo boundaries. Track dependencies, manage linked PRs, and detect breaking changes before they propagate.

When to Use This Skill

USE FOR:

  • Changes that require coordinated updates across multiple repositories
  • Managing repository dependency graphs
  • Creating linked PRs that should merge together or in sequence
  • Detecting breaking changes that affect dependent repositories
  • Microservices or monorepo-alternative architectures

AVOID FOR:

  • Single-repository changes (use default workflow)
  • Forking/syncing operations (use git directly)
  • Documentation-only changes
  • Changes with no cross-repo dependencies

Storage Location

All multi-repo data is stored in ~/.amplihack/.claude/data/multi-repo/:

  • dependencies.yaml - Repository dependency graph
  • linked-prs.yaml - Currently active linked PR sets
  • breaking-changes.log - History of detected breaking changes

Dependency Graph Format

The dependency graph uses simple YAML:

# .claude/data/multi-repo/dependencies.yaml
version: "1.0"
repositories:
  my-org/api-server:
    depends_on: []
    exposes:
      - type: api
        name: REST API v2
        contract: openapi.yaml

  my-org/web-client:
    depends_on:
      - repo: my-org/api-server
        type: api
        version: ">=2.0"
    exposes: []

  my-org/mobile-app:
    depends_on:
      - repo: my-org/api-server
        type: api
        version: ">=2.0"
    exposes: []

Core Operations

Operation 1: Initialize Dependency Graph

When: Setting up multi-repo tracking for the first time

Process:

  1. Create ~/.amplihack/.claude/data/multi-repo/ directory if not exists
  2. Create initial dependencies.yaml with current repository
  3. Prompt for known dependencies (repos this one depends on)
  4. Prompt for known dependents (repos that depend on this one)
  5. Save and display the graph

Command: "Initialize multi-repo dependencies"

Operation 2: Add Repository Dependency

When: Registering a new dependency relationship

Process:

  1. Read current dependencies.yaml
  2. Validate both repositories exist (via gh CLI)
  3. Add dependency entry with type and version constraint
  4. Update dependent repo's entry
  5. Save changes

Example:

"Add dependency: my-org/web-client depends on my-org/api-server for REST API"

Operation 3: Detect Breaking Changes

When: Before creating a PR that modifies a public interface

Process:

  1. Identify changed files in current branch
  2. Check if changes touch exposed contracts (API specs, schemas, exports)
  3. Look up dependents in dependency graph
  4. For each dependent:

- Clone/fetch latest (use worktree if local) - Check if dependent uses affected interface - Report potential breakage

  1. Generate impact report

Output:

Breaking Change Impact Report
=============================
Changed: my-org/api-server/openapi.yaml
  - Removed endpoint: DELETE /users/{id}
  - Modified field: User.email now required

Affected Dependents:
  - my-org/web-client (uses DELETE /users/{id})
  - my-org/mobile-app (no impact detected)

Recommendation: Coordinate changes with my-org/web-client

Operation 4: Create Linked PRs

When: Making atomic changes across multiple repositories

Process:

  1. User specifies the set of repos to update
  2. For each repo in order (respecting dependency graph):

- Create worktree or navigate to repo - Create feature branch with common prefix - Make changes - Create PR with links to other PRs in set

  1. Track linked PRs in linked-prs.yaml
  2. Add cross-references in PR descriptions

Linked PR Format:

# .claude/data/multi-repo/linked-prs.yaml
linked_sets:
  - id: "auth-v2-migration"
    created: "2025-11-25T10:00:00Z"
    status: "pending"
    prs:
      - repo: my-org/api-server
        pr: 123
        status: "merged"
        merge_order: 1
      - repo: my-org/web-client
        pr: 456
        status: "approved"
        merge_order: 2
      - repo: my-org/mobile-app
        pr: 789
        status: "open"
        merge_order: 3

Operation 5: Coordinate Merge Sequence

When: Merging a linked PR set

Process:

  1. Read linked PR set from linked-prs.yaml
  2. Verify all PRs are approved/ready
  3. Merge in dependency order (upstream first)
  4. Wait for CI to pass after each merge
  5. Update linked-prs status
  6. Report completion

Merge Order Logic:

  1. Repos with no dependencies merge first
  2. Repos with dependencies merge after their dependencies
  3. Circular dependencies: Error (should not exist in healthy graph)

Integration with Worktree Manager

When working across local repositories, leverage the worktree-manager agent:

  1. For each local repo in dependency graph:

- Use git worktree add to create isolated workspace - Worktrees go in ./worktrees/{repo-name}-{branch}/

  1. Make coordinated changes across worktrees
  2. Commit and push from each worktree
  3. Clean up worktrees after PRs merged

Integration with PM Architect

For complex multi-repo projects:

  1. Use backlog-curator to track cross-repo items
  2. Use workstream-coordinator for multi-repo workstreams
  3. Linked PRs map to single workstream items
  4. Breaking change detection feeds into roadmap planning

Philosophy Alignment

Ruthless Simplicity:

  • YAML-based dependency graph (no database required)
  • Leverage existing git and gh CLI tools
  • Minimal skill surface area

Zero-BS Implementation:

  • All operations are functional from day one
  • No "planned" features - only what works now
  • Breaking change detection actually checks code

Modular Design:

  • Skill is self-contained
  • Data stored in simple files
  • Can be used independently or with PM Architect

Examples

Example 1: API Breaking Change

Scenario: Updating API endpoint signature

User: "I need to change the /users endpoint from GET to POST"

Skill Response:
1. Detected change to api-server/openapi.yaml
2. Scanned dependents:
   - web-client: Uses GET /users in 3 locations
   - mobile-app: Uses GET /users in 2 locations
3. Impact: HIGH - 5 usages across 2 repositories

Recommended approach:
1. Add POST /users endpoint (non-breaking)
2. Create linked PRs to update web-client and mobile-app
3. Deprecate GET /users with sunset date
4. Remove GET /users after clients migrate

Example 2: Coordinated Feature Release

Scenario: New authentication flow spanning 3 repos

User: "Implement OAuth2 across api-server, web-client, and mobile-app"

Skill Response:
1. Created linked PR set: "oauth2-implementation"
2. Dependency order: api-server -> web-client, mobile-app (parallel)
3. Created branches:
   - api-server: feat/oauth2-backend
   - web-client: feat/oauth2-frontend
   - mobile-app: feat/oauth2-mobile
4. PRs created with cross-references:
   - api-server#123 (merge first)
   - web-client#456 (after #123)
   - mobile-app#789 (after #123)

Limitations

  • Dependency graph is per-workspace (not centralized)
  • Requires gh CLI authenticated for PR operations
  • Breaking change detection is heuristic (may miss runtime changes)
  • Circular dependencies are not supported (and shouldn't exist)

Success Criteria

  • Changes across repos are coordinated atomically
  • Breaking changes are detected before they cause production issues
  • PRs merge in correct dependency order
  • Teams have visibility into cross-repo impacts

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

25.81%
按下载量换算213

Antigravity

24.35%
按下载量换算201

OpenCode

18.69%
按下载量换算154

Gemini CLI

11.88%
按下载量换算98

windsurf

7.81%
按下载量换算64

Cursor

3.34%
按下载量换算28

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills