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

grace-multiagent-executeGrace 多 Agent 执行

Agent Skill

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

总安装

724

周安装

29

GitHub Stars

150

下载量

234
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/osovv/grace-marketplace --skill grace-multiagent-execute

简介

grace-multiagent-execute 用于查找和筛选相关信息,支持关键词驱动的任务检索。

  • 适合在需要快速定位资料或验证技术概念时使用。
  • 通过 GitHub 安装后,可在 Codex、Claude 等宿主环境中调用。
  • 使用前需确认是否允许联网及数据访问权限。
  • 建议结合具体任务查看 README 了解搜索范围与策略。

SKILL.md

Execute a GRACE development plan with multiple agents while keeping planning artifacts and shared context consistent.

Prerequisites

  • docs/development-plan.xml must exist with module contracts and implementation order
  • docs/knowledge-graph.xml must exist
  • docs/verification-plan.xml should exist with module-local verification commands and gate expectations
  • if docs/operational-packets.xml exists, use it as the canonical packet and delta reference
  • If the plan or graph is missing, stop immediately and tell the user to run $grace-plan themselves before dispatching a large wave
  • If the verification plan is missing or still skeletal, stop immediately and tell the user to run $grace-verification themselves before dispatching a large wave
  • Prefer this skill only when module-local verification commands already exist or can be defined clearly

Core Principle

Parallelize module implementation, not architectural truth.

  • One controller owns shared artifacts: docs/development-plan.xml, docs/knowledge-graph.xml, docs/verification-plan.xml, phase status, and execution queue
  • Worker agents own only their assigned module files and module-local tests
  • Reviewers validate module outputs before the controller merges graph and plan updates
  • Speed should come from better context packaging, batched shared-artifact work, and scoped reviews - not from letting workers invent architecture
  • Packets should be good enough that workers do not need mid-wave goal reinterpretation
  • Controller checkpoints matter more than chatty mid-flight intervention; revise packets between waves, not by hoping the worker will self-correct from vague new prompts

If multiple agents edit the same module, the same shared XML file, or the same tightly coupled slice, this is not a multi-agent wave. Use $grace-execute instead.

Execution Profiles

Default to balanced unless the user asks otherwise.

safe

  • Ask for approval on the proposed waves before dispatch
  • Run contract review and verification review for every module output
  • Run targeted graph sync after each wave and a full refresh at each phase boundary
  • Use when modules are novel, risky, or touch poorly understood integration surfaces

balanced (default)

  • Parse plan and graph once at the start of the run
  • Ask for one approval on the execution schedule up front unless the plan changes mid-run
  • Give workers compact execution packets instead of making each worker reread full XML artifacts
  • Run module-local verification per worker, scoped gate reviews per module, and batched integrity checks per wave or phase
  • Run targeted graph sync after each wave and full refresh only at phase boundaries, when drift is suspected, or at final wrap-up

fast

  • Use only for mature codebases with strong verification and stable architecture
  • Ask for one approval for the whole run unless a blocker or plan change appears
  • Keep worker packets compact and require only the minimum context needed for exact scope execution
  • Block only on critical scoped review issues during a wave, then batch the deeper integrity audit at phase end or final wrap-up
  • Reserve full refresh for phase completion or final reconciliation

Every module still gets a fresh worker. Do not optimize this workflow by reusing worker sessions across modules.

Process

Step 1: Build the Execution Waves Once

Read docs/development-plan.xml, docs/knowledge-graph.xml, and docs/verification-plan.xml once per run, then build the controller view of the execution queue.

  1. Parse pending Phase-N and step-N entries
  2. Group steps into parallel-safe waves
  3. A step is parallel-safe only if:

- all of its dependencies are already complete - it has a disjoint write scope from every other step in the wave - it does not require shared edits to the same integration surface

  1. Choose the execution profile: safe, balanced, or fast
  2. For each wave, prepare a compact execution packet for every module containing: When docs/operational-packets.xml exists, shape packets and delta proposals to the canonical ExecutionPacket, GraphDelta, and VerificationDelta templates.

- module ID and purpose - target file paths and exact write scope - preferred stack or tooling excerpt from docs/technology.xml when the project defines one - module contract excerpt from docs/development-plan.xml - module graph entry excerpt from docs/knowledge-graph.xml - dependency contract summaries for every module in DEPENDS - verification excerpt from docs/verification-plan.xml, including module-local commands, required scenarios, required log markers, and target test files - assumptions or unresolved edges that remain acceptable inside the write scope - stop conditions or replan triggers that should halt the worker immediately - retry budget for fix or review loops - wave-level integration checks that will run after merge - expected graph delta fields: imports, public exports, public annotations, and CrossLinks - expected verification delta fields: test files, commands, markers, and phase follow-up notes

Present the proposed waves, selected profile, and packet scopes to the user. In safe, wait for approval before each dispatch. In balanced and fast, one up-front approval is enough unless the plan changes.

Step 2: Assign Ownership

Before dispatching, define ownership explicitly:

  • Controller:

- owns docs/development-plan.xml - owns docs/knowledge-graph.xml - owns docs/verification-plan.xml - owns wave packets, phase completion, and commits that touch shared artifacts

  • Worker agent:

- owns one module or one explicitly bounded slice - may edit only that module's source files and module-local tests - must not change shared planning artifacts directly

  • Reviewer agent:

- read-only validation of contract compliance, GRACE markup, imports, graph delta accuracy, and verification evidence

If a worker discovers that a missing module or new dependency is required, stop that worker and ask the user to revise the plan before proceeding. Do not allow silent architectural drift.

Step 3: Dispatch Fresh Worker Agents Per Wave

For each approved wave:

  1. Dispatch one fresh worker agent per module
  2. Give each worker only the execution packet and the files inside its write scope
  3. Require the worker to:

- generate or update code using the module contract and verification excerpt from the packet - preserve MODULE_CONTRACT, MODULE_MAP, CHANGE_SUMMARY, function contracts, and semantic blocks - add or update module-local tests only - preserve or add required stable log markers for critical branches - run module-local verification only - return a short checkpoint report: assumptions kept, commands run, evidence captured, and whether any retry budget was consumed - commit their work after module-local verification passes with format: grace(MODULE_ID): <imperative verb phrase describing what was done> <File|Function|Export> <name>: <what changed and why> <File|Function|Export> <name>: <what changed and why> Every commit body must enumerate the concrete files, functions, or exports that changed and explain what was done to each. Generic phrases like "harden X", "add Y evidence", or "enforce Z" are forbidden. Prefer specific descriptions such as "catch ENOENT in loadPivvConfig and throw CONFIG_NOT_FOUND", "add dedup key collision regression for memory-store.reuseRecord", or "guard write-phase transcript against partial flush". Keep each checkpoint commit focused on a single coherent change so the history reads like a narrative. - return a result packet with changed files, verification evidence, graph delta proposal, verification delta proposal, commit hash, and any integration assumptions

Shared-artifact rule for workers:

  • execution packets may include local file-header detail for implementation
  • graph and plan deltas must cover only public module contract/interface changes, not private helper churn

Step 4: Review with the Smallest Safe Scope

After each worker finishes:

  1. Run a scoped contract review against the changed files and execution packet
  2. Run a scoped verification review against the module-local tests and verification evidence
  3. Escalate to a full $grace-reviewer audit only when:

- cross-module drift is suspected - the graph delta contradicts the packet or actual imports - the verification delta contradicts the packet or actual tests/log markers - verification is too weak for the chosen profile - a phase boundary audit is due

  1. If issues are found:

- send the same worker back to fix them - keep the fix loop bounded; default to at most 2 review cycles per worker when the packet does not define a budget - re-run only the affected reviews unless escalation is required

  1. Only approved module outputs may move to controller integration

Step 5: Controller Integration and Batch Graph Sync

After all modules in the wave are approved:

  1. Integrate the accepted module outputs
  2. Apply graph delta proposals once, centrally, to docs/knowledge-graph.xml
  3. Apply verification delta proposals once, centrally, to docs/verification-plan.xml
  4. Update docs/development-plan.xml step status once per wave
  5. Run targeted $grace-refresh against the changed modules and touched dependency surfaces
  6. If targeted refresh reports wider drift, escalate to a full refresh before the next wave
  7. If the wave reveals weak or missing automated checks, stop the run and tell the user to run $grace-verification themselves before continuing
  8. If the wave changed packet shape, execution policy, or verification depth materially, run grace lint --profile autonomous --path <project-root> before dispatching the next wave

Step 6: Verify by Level

Run verification at the smallest level that still protects correctness.

  • Worker level: module-local typecheck, lint, unit tests, and deterministic local assertions
  • Wave level: integration checks only for the merged surfaces touched by the wave
  • Phase level: full suite, full integrity audit, and final graph plus verification reconciliation before marking the phase done

Do not run full-repository tests and full-repository graph scans after every successful module unless the risk profile requires it.

Step 7: Controller Shared-Artifact Commits and Report

After each wave, the controller commits only shared artifacts that changed:

  • Update docs/knowledge-graph.xml, docs/verification-plan.xml, and docs/development-plan.xml with wave results
  • Commit with format: grace(meta): sync <artifacts updated> after wave N <module-id>: <what changed in the graph/plan/verification for this module> <module-id>: <what changed in the graph/plan/verification for this module> List only the modules whose shared-artifact entries actually changed and describe what was updated (e.g. "M-CONFIG: marked step-1 complete, added public exports to graph"). Omit modules with no delta.

Worker implementation commits are already done per module in Step 3. Controller commits are only for shared planning artifacts.

After each wave, report:

=== WAVE COMPLETE ===
Wave: N
Profile: safe / balanced / fast
Modules: M-xxx, M-yyy
Approved: count/count
Graph sync: targeted passed / targeted fixed / escalated to full refresh
Verification: module-local passed / wave checks passed / follow-up required
Remaining waves: count

Dispatch Rules

  • Parse shared XML artifacts once per run unless the plan changes
  • Prefer controller-built execution packets over repeated raw XML reads by workers
  • Parallelize only across independent modules, never across unknown coupling
  • Do not let workers invent new architecture
  • Do not let workers edit the same shared XML artifacts in parallel
  • Do not reuse worker sessions across modules; keep workers fresh and packets compact
  • Give every worker exact file ownership and exact success criteria
  • Workers must commit their implementation after verification passes - do not wait for controller
  • Controller commits only shared artifacts (graph, plan, verification), not implementation files
  • Prefer targeted refresh and scoped review during active waves
  • Reserve full reviewer audits and full refresh scans for phase boundaries, drift suspicion, or critical failures
  • If verification is weak, slow down and move to safe rather than pretending fast is safe

When NOT to Use

  • Only one module remains
  • Steps are tightly coupled and share the same files
  • The plan is still changing frequently
  • The team has not defined reliable module-local verification yet

Use $grace-execute for sequential execution when dependency risk is higher than the parallelism gain.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.62%
按下载量换算86

Claude

29.44%
按下载量换算69

Cursor

16.19%
按下载量换算38

Gemini CLI

8.32%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills