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

github-multi-projectGitHub multi project 前端

Agent Skill

用于围绕 GitHub 仓库、Issue、Pull Request、分支、提交和代码协作流程提供辅助能力。它适合让 Agent 查询项目状态、整理变更、辅助创建或检查协作事项,并把仓库中的信息转成可执行的下一步。使用时需要区分只读查询和写入操作;涉及创建 PR、修改 Issue、推送分支或访问私有仓库时,应确认 token 权限、目标仓库范围和用户授权。

总安装

470

周安装

20

GitHub Stars

127

下载量

165
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/anton-abyzov/specweave --skill github-multi-project

简介

用于统一管理多个 GitHub 项目的界面组件。

  • 提供项目概览卡片和快速导航功能。
  • 支持跨项目搜索和状态聚合显示。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 适合同时维护多个关联项目的情况。
  • 界面布局可自定义调整。github-multi-project 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

GitHub Multi-Project Management Skill

Expert skill for managing SpecWeave projects across multiple GitHub repositories.

Core Capabilities

1. Spec Organization

  • Organizes specs in .specweave/docs/internal/projects/{project-id}/ structure
  • Maps increments to specific projects/repos
  • Maintains traceability across repositories
  • Handles cross-project dependencies

2. Task Splitting

When a SpecWeave increment spans multiple repositories:

  • Analyzes tasks in tasks.md
  • Identifies which tasks belong to which repo
  • Creates repo-specific task lists
  • Maintains cross-repo coordination

3. Repository Architectures

Single Repository

my-app/
├── .specweave/
│   └── docs/internal/projects/default/
└── src/

Multi-Repository (Polyrepo)

my-app-frontend/
├── .git
└── src/

my-app-backend/
├── .git
└── src/

my-app-shared/
├── .git
└── src/

Parent Repository Approach (Recommended for Multi-Repo)

my-app-parent/              # Parent repo with .specweave
├── .specweave/
│   └── docs/internal/projects/
│       ├── frontend/
│       ├── backend/
│       └── shared/
└── services/               # Implementation repos
    ├── frontend/
    ├── backend/
    └── shared/

Monorepo

my-app/
├── .specweave/
│   └── docs/internal/projects/
│       ├── frontend/
│       ├── backend/
│       └── shared/
└── packages/
    ├── frontend/
    ├── backend/
    └── shared/

Task Splitting Examples

Example 1: E-commerce Platform

Increment: Add shopping cart functionality

Tasks split by repository:

Frontend (my-app-frontend):

  • T-001: Create CartItem component
  • T-002: Implement cart state management
  • T-003: Add cart UI with add/remove buttons

Backend (my-app-backend):

  • T-004: Create cart database schema
  • T-005: Implement cart API endpoints
  • T-006: Add cart validation logic

Shared (my-app-shared):

  • T-007: Define cart TypeScript types
  • T-008: Create cart utility functions

Example 2: Microservices Architecture

Increment: Implement user notifications

Tasks split by service:

User Service:

  • T-001: Add notification preferences to user profile
  • T-002: Create preference API endpoints

Notification Service:

  • T-003: Implement notification queue
  • T-004: Create email sender
  • T-005: Create push notification sender

Gateway Service:

  • T-006: Add notification routes
  • T-007: Implement rate limiting

Commands

Analyze Task Distribution

// Analyze which tasks belong to which repository
function analyzeTaskDistribution(tasks: Task[]): Map<string, Task[]> {
  const distribution = new Map();

  for (const task of tasks) {
    const repo = detectRepository(task);
    if (!distribution.has(repo)) {
      distribution.set(repo, []);
    }
    distribution.get(repo).push(task);
  }

  return distribution;
}

Create Repository-Specific Issues

// Create GitHub issues in each repository
async function createRepoSpecificIssues(
  increment: Increment,
  distribution: Map<string, Task[]>
) {
  for (const [repo, tasks] of distribution) {
    const issue = await createGitHubIssue({
      repo,
      title: `[${increment.id}] ${increment.name} - ${repo}`,
      body: formatTasksAsChecklist(tasks),
      labels: ['specweave', 'increment', repo]
    });

    console.log(`Created issue #${issue.number} in ${repo}`);
  }
}

Best Practices

1. Parent Repository Approach

Recommended for multi-repo projects:

  • Central.specweave/ folder in parent repo
  • Living docs sync to parent (single source of truth)
  • Implementation repos stay clean
  • Better for enterprise/multi-team projects

2. Task Naming Convention

T-{repo}-{number}: {description}
T-FE-001: Create user profile component
T-BE-001: Implement user API
T-SHARED-001: Define user types

3. Cross-Repository Dependencies

Mark dependencies clearly:

T-FE-002: Consume user API
  Dependencies: T-BE-001 (must complete first)

4. Spec Organization

.specweave/docs/internal/projects/
├── frontend/
│   └── specs/
│       ├── spec-001-user-interface.md
│       └── spec-002-cart-ui.md
├── backend/
│   └── specs/
│       ├── spec-001-api-design.md
│       └── spec-002-database.md
└── shared/
    └── specs/
        └── spec-001-types.md

Integration with GitHub Projects

Multi-Repo GitHub Project

Create a GitHub Project that spans multiple repositories:

  1. Create project at organization level
  2. Add issues from all repos
  3. Use project boards for cross-repo coordination
  4. Track overall increment progress

Repository-Specific Projects

Each repository can have its own project:

  • Frontend Project: UI tasks
  • Backend Project: API tasks
  • Shared Project: Common tasks

Automation

GitHub Actions Integration

# .github/workflows/specweave-sync.yml
name: SpecWeave Multi-Repo Sync

on:
  workflow_dispatch:
  schedule:
    - cron: '0 */6 * * *' # Every 6 hours

jobs:
  sync:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - name: Sync to repositories
        run: |
          # Sync tasks to frontend repo
          gh issue create --repo myorg/frontend ...

          # Sync tasks to backend repo
          gh issue create --repo myorg/backend ...

Error Handling

Common Issues

  1. Repository not found: Ensure repos exist and token has access
  2. Task ambiguity: Use clear naming to indicate target repo
  3. Cross-repo conflicts: Use parent repo as single source of truth
  4. Permission errors: Token needs repo scope for all repositories

Related Skills

  • github-sync: Basic GitHub synchronization
  • github-issue-tracker: Task-level tracking
  • specweave:multi-project-spec-mapper: Intelligent spec splitting

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude Code

30.79%
按下载量换算51

Antigravity

21.29%
按下载量换算35

Cursor

18.04%
按下载量换算30

Gemini CLI

13.58%
按下载量换算22

OpenCode

8.31%
按下载量换算14

Codex

3.33%
按下载量换算5

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills