Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

gathering-migration聚集迁徙

Agent Skill

gathering-migration 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,458

周安装

62

GitHub Stars

4

下载量

511
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/autumnsgrove/groveengine --skill gathering-migration

简介

gathering-migration 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 它支持通过关键词、任务场景或来源线索进行信息检索与筛选,适用于研究类工作流。
  • 可通过 npx skills add 命令从 GitHub 仓库安装,具体用法请参考原始 README。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Gathering Migration 🌲🐻🐕

The drum echoes through the valleys. The conductor stands at the pass, orchestrating two very different strengths. The Bloodhound arrives first with fresh eyes — no assumptions about what's connected, just a nose for dependencies. Then the Bear wakes, receiving a map it didn't draw — no shortcuts, no "I already know where things are." Together they move mountains safely, each with isolated context, each trusting only what it verified itself.

When to Summon

  • Complex migrations requiring codebase exploration before execution
  • Moving between systems, libraries, or architectural patterns
  • Schema changes affecting multiple relationships
  • Component or API migrations spanning many files
  • Icon, asset, or content migrations with downstream dependencies
  • Any migration where you need to understand the territory before moving

IMPORTANT: This gathering is a conductor. It never scouts or migrates directly. It dispatches subagents — one per animal — each with isolated context and an intentional model. The conductor only manages handoffs and gate checks.


The Gathering

SUMMON → DISPATCH → GATE → DISPATCH → GATE → VERIFY
  ↓         ↓        ↓        ↓        ↓        ↓
Spec    Bloodhound  Check    Bear    Check    Final
(self)   (haiku)     ✓     (opus)    ✓     Verify

Animals Dispatched

OrderAnimalModelRoleFresh Eyes?
1🐕 BloodhoundhaikuScout dependencies, map territoryYes — sees only the migration spec
2🐻 BearopusExecute migration safelyYes — sees only territory map, not scouting process

Reference: Load references/conductor-dispatch.md for exact subagent prompts and handoff formats


Phase 1: SUMMON

*The drum sounds. The valley listens...*

The conductor receives the migration request and prepares the dispatch plan:

Clarify the Migration:

  • What needs to migrate? (data, components, icons, config, conventions...)
  • From where to where? (old pattern → new pattern)
  • What downstream dependencies exist?
  • What does "undo" look like if something goes wrong?

Determine the Bear's domain guide:

Migration TypeDomain Guide
Database schema, tables, D1/SQLitedomain-database.md
Component props, API upgrades, importsdomain-components.md
Icons, assets, documents, file formatsdomain-content.md
Config, conventions, dependenciesdomain-general.md

Confirm with the human, then proceed.

Output: Migration specification, domain guide identified, dispatch plan confirmed.


Phase 2: SCOUT (Bloodhound)

*The conductor signals. The Bloodhound puts its nose to the ground...*

Agent(bloodhound, model: haiku)
  Input:  migration specification only
  Reads:  bloodhound-scout/SKILL.md (MANDATORY)
  Output: territory map

Dispatch a haiku subagent to scout the codebase. The Bloodhound receives ONLY the migration specification — no pre-analysis, no assumptions. It reads its own skill file and executes its full SCENT → TRACK → HUNT → REPORT → RETURN workflow.

What the Bloodhound maps:

  • Every reference to the items being migrated
  • Dependency relationships (what depends on what)
  • Downstream consumers
  • Edge cases and unusual usage patterns
  • Current state counts (how many items, how many references)

Handoff to conductor: Territory map (affected files, dependency graph, edge cases, current state counts, risk assessment).

Gate check: Territory map has: file lists, dependency relationships, item counts, edge cases identified. If incomplete, resume Bloodhound with specific questions.


Phase 3: MIGRATE (Bear)

*The Bear wakes. It receives a map it didn't draw...*

Agent(bear, model: opus)
  Input:  migration spec + territory map (from Bloodhound)
  Reads:  bear-migrate/SKILL.md + references/{domain-guide} (MANDATORY)
  Output: migration results + file list

Dispatch an opus subagent to execute the migration. The Bear receives the spec and the Bloodhound's territory map — NOT the Bloodhound's scouting process, just its structured output.

What the Bear does:

  • Preserve original state (branch, backup, or snapshot)
  • Execute migration in manageable chunks
  • Validate after each chunk
  • Verify item counts match (source vs destination)
  • Run integrity checks (references resolve, imports work, no orphans)

Handoff to conductor: Migration results (items migrated, items skipped, validation reports), file list.

Gate check:

pnpm install
gw dev ci --affected --fail-fast --diagnose

Must compile and pass. If it fails, resume Bear with the error.


Phase 4: VERIFY

*The journey ends. The conductor confirms safe arrival...*

Validation Checklist:

  • Bloodhound: All dependencies mapped
  • Bloodhound: All references found
  • Bloodhound: Edge cases documented
  • Bear: Original state preserved (branch, backup, or snapshot)
  • Bear: Item counts match (source vs destination)
  • Bear: Integrity checks pass (references resolve, imports work, no orphans)
  • Bear: Tests pass (gw dev ci --affected)
  • Bear: Rollback path documented

Completion Report:

🌲 GATHERING MIGRATION COMPLETE

Migration: [Description]

DISPATCH LOG
  🐕 Bloodhound (haiku) — [territory mapped, X files identified, Y dependencies found]
  🐻 Bear (opus)         — [Z items migrated, domain guide: {guide}]

GATE LOG
  After Bloodhound: ✅ territory map complete
  After Bear:       ✅ compiles clean, migration verified
  Final CI:         ✅ gw dev ci --affected passes

MIGRATION RESULTS
  Items migrated: [count]
  Items skipped: [count, reason]
  Item count match: ✅ [source] = [dest]
  Integrity checks: ✅
  Rollback: [branch/backup location]

Everything found its new home.

Conductor Rules

Never Do Animal Work

The conductor dispatches. It does not scout dependencies or execute migrations.

Fresh Eyes Are a Feature

The Bear receives the territory map, not the Bloodhound's scouting process. It trusts the map but verifies what it finds during migration.

Gate Every Transition

Territory map must be complete before Bear starts. CI must pass after Bear finishes.

Resume, Don't Restart

If a gate check fails, resume the failing agent. The Bear especially benefits from resumption — it has the migration context and can fix issues faster than starting fresh.


Anti-Patterns

The conductor does NOT:

  • Scout the codebase itself
  • Execute migration steps directly
  • Let Bear start without a complete territory map
  • Skip count validation (source must equal destination)
  • Skip rollback documentation

Quick Decision Guide

Migration ScopeStrategy
Simple rename (< 5 files)Bear only (no Bloodhound needed)
Cross-cutting migration (5-50 files)Standard: Bloodhound → Bear
Large migration (50+ files)Bloodhound → Bear with chunked execution
Unknown scope ("migrate X")Always start with Bloodhound

*When no single animal suffices, the gathering answers.* 🌲🐾

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.14%
按下载量换算185

Claude

29.22%
按下载量换算149

Cursor

17.35%
按下载量换算89

Gemini CLI

8.47%
按下载量换算43

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills