Synchronisation de spécification delta

Fusionne la spécification delta d'un changement dans la source de vérité du domaine sans archiver.

Spar Skills Guide Bot
DeveloppementIntermédiaire
1022/07/2026
Claude Code
#sync#delta-spec#domain-spec#merge#automation

Recommandé pour


name: sync description: Merge delta spec into the domain spec source of truth argument-hint: "<slug>" disable-model-invocation: false

Sync

Merge a change's delta spec into the domain spec source of truth without archiving. The change folder remains active.

Setup

Parse $ARGUMENTS:

  • slug (required)

Process

  1. Read the delta:
    .venv/bin/python -m agents.lib.spec_state show-change {slug}
    
  2. Validate delta against domain spec:
    .venv/bin/python -m agents.lib.spec_state validate --change {slug}
    
  3. Apply delta (merge into domain spec):
    .venv/bin/python -m agents.lib.spec_state apply {slug} --write
    
  4. Report what changed (requirements added, modified, removed, renamed)

Notes

  • No task gate — sync does not check tasks.md completion. Can sync at any time.
  • Repeatable — unlike archive, sync can be run multiple times. Each run re-applies the current delta.
  • Change folder remains active — not archived. Use /archive to finalize.
Skills similaires