Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计提醒

multirepo-space多仓库空间

Agent Skill

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

总安装

734

周安装

30

GitHub Stars

公开资料未说明

下载量

238
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/tacuchi/multirepo-space --skill multirepo-space

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合管理多个仓库间的依赖关系或跨项目代码同步。
  • 可帮助识别重复代码、统一版本或生成多仓库报告。
  • 安装命令:npx skills add https://github.com/tacuchi/multirepo-space --skill multirepo-space。
  • 使用前应确认是否涉及敏感数据或生产环境,确保操作合规。

SKILL.md

multirepo-space

Tools

This SKILL orchestrates two tools:

  • workspace-setup.sh — bundled script for workspace infrastructure (dirs, symlinks, settings.json, AGENTS.md/CLAUDE.md)
  • agent-factory — npm CLI for creating AI agents (npx @tacuchi/agent-factory)

Quick routing

User intent → Action:

  • "Create/scaffold workspace" → Full setup flow
  • "Add a repo" → Add flow
  • "Remove/detach repo" → Remove flow
  • "Check/verify/health" → Status flow
  • "Create an agent" → agent-factory create directly
  • Single repo project → DO NOT use this Skill
  • Monorepo (Nx/Turborepo) → DO NOT use this Skill

Pre-flight checklist

  • Workspace dir exists? If not, mkdir first.
  • New workspace or existing? → setup vs add.
  • All repo paths absolute? Required — symlinks break with relative paths.
  • Always run with --dry-run first and show the user the output before executing.

Security

Write commands (setup, add, remove) perform irreversible filesystem changes: symlinks, file overwrites (AGENTS.md, CLAUDE.md, settings.json), and rm -rf on skill dirs.

Before any write command:

  1. Run the command with --dry-run and show the output to the user.
  2. Ask for explicit approval: "Proceed with the above changes?"
  3. Only after approval, re-run without --dry-run.

Never pass -y to workspace-setup.sh without prior user approval in the current session. agent-factory create writes files; confirm with the user before invoking.

Full setup flow

Step 1: Detect stacks

npx @tacuchi/agent-factory detect <repo_path> --json -q

Capture JSON. Extract alias, primaryTech, stackCsv, verifyCommands. Use stackCsv exactly as returned — pass full value to --stacks.

Step 2: Preview workspace infrastructure (dry-run)

bash "$SKILL_DIR/scripts/workspace-setup.sh" setup <workspace_path> <repo1> <repo2> ... \
  --stacks "stackCsv1|stackCsv2|..." --dry-run

Show output to user. Ask: "Proceed with these changes?" On approval:

bash "$SKILL_DIR/scripts/workspace-setup.sh" setup <workspace_path> <repo1> <repo2> ... \
  --stacks "stackCsv1|stackCsv2|..." -y

Creates: dirs, symlinks, settings.json, AGENTS.md, CLAUDE.md, config.

Step 3: Create specialist agents

Confirm with the user before running. Per repo:

npx @tacuchi/agent-factory create \
  --name repo-<alias> --role specialist --scope <repo_path> \
  --output <workspace_path> --target all -q

Auto-appends -agent suffix: repo-<alias>repo-<alias>-agent.md.

Step 4: Create coordinator agent

Confirm with the user before running.

npx @tacuchi/agent-factory create \
  --name coordinator --role coordinator --model opus \
  --specialists "repo-<alias1>-agent,repo-<alias2>-agent,..." \
  --repo-count <N> --output <workspace_path> --target all -q

--specialists list must use full names with -agent suffix.

Add repo flow

Step 1: Detect stack

npx @tacuchi/agent-factory detect <repo_path> --json -q

Step 2: Preview add (dry-run)

bash "$SKILL_DIR/scripts/workspace-setup.sh" add <workspace_path> <repo_path> \
  --alias <alias> --stack-csv "<stackCsv>" --dry-run

Show output to user. Ask: "Proceed with these changes?" On approval:

bash "$SKILL_DIR/scripts/workspace-setup.sh" add <workspace_path> <repo_path> \
  --alias <alias> --stack-csv "<stackCsv>" -y

Step 3: Create specialist

Confirm with the user before running.

npx @tacuchi/agent-factory create \
  --name repo-<alias> --role specialist --scope <repo_path> \
  --output <workspace_path> --target claude -q

Step 4: Regenerate coordinator

Get updated specialist list (with -agent suffix) from existing symlinks. Confirm with the user before running.

npx @tacuchi/agent-factory create \
  --name coordinator --role coordinator --model opus \
  --specialists "<updated_csv_list_with_agent_suffix>" \
  --repo-count <updated_N> --output <workspace_path> --target all -q

Remove repo flow

Step 1: Preview removal (dry-run)

bash "$SKILL_DIR/scripts/workspace-setup.sh" remove <workspace_path> <alias> --dry-run

Show output to user. Ask: "Proceed with these changes?" On approval:

bash "$SKILL_DIR/scripts/workspace-setup.sh" remove <workspace_path> <alias> -y

Removes: symlink, agent files (.agents/,.claude/agents/,.agents/skills/), regenerates docs.

Step 2: Regenerate coordinator

Get updated specialist list from remaining symlinks. Confirm with the user before running.

npx @tacuchi/agent-factory create \
  --name coordinator --role coordinator --model opus \
  --specialists "<updated_csv_list>" --repo-count <updated_N> \
  --output <workspace_path> --target claude -q

Status flow

bash "$SKILL_DIR/scripts/workspace-setup.sh" status <workspace_path>
npx @tacuchi/agent-factory list <workspace_path>

Custom agent flow

To create additional agents (architecture, style, code-review, etc.). Confirm with the user before running.

npx @tacuchi/agent-factory create \
  --name <agent-name> \
  --role custom \
  --description "<short description>" \
  --instructions "<body text or path to .md file>" \
  --model sonnet \
  --output <workspace_path> \
  --target all -q

If detect returns "Generic"

Ask the user: "Stack was not auto-detected for [repo]. What is the main language/framework?" Then pass --stack-csv to the setup/add command so it persists in config.

Constraints

  • Always run --dry-run and show output to user before any write command.
  • Always confirm with the user before invoking agent-factory create.
  • Never pass -y without explicit user approval in the current session.
  • Always use absolute paths — symlinks break with relative.
  • Do not modify settings.json manually.
  • Single repo or monorepo (Nx/Turborepo) → do NOT use this skill.

Replace $SKILL_DIR with the absolute path to this skill's directory.

Agent hierarchy

coordinator-agent (opus)repo-*-agent (sonnet) per repo. Coordinator delegates to specialists via Task. Specialists execute autonomously.

Compatibility

Supported targets (one at a time, never combined):

  • claude.claude/agents/*.md + .agents/skills/*/SKILL.md
  • codex.agents/*.md + .agents/skills/*/SKILL.md
  • gemini.gemini/agents/*.md + .agents/skills/*/SKILL.md
  • crush.crush.json + .agents/skills/*/SKILL.md
  • warp.agents/skills/*/SKILL.md
  • AGENTS.md → Universal context file (20+ tools)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

31.32%
按下载量换算75

Claude

29.76%
按下载量换算71

Cursor

20.3%
按下载量换算48

Gemini CLI

9.51%
按下载量换算23

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills