federation-sync — for Claude Code federation-sync, EngramR, community, for Claude Code, ide skills, Cross-Vault, Federation, Synchronize, claims, hypotheses

v1.0.0

Об этом навыке

Идеально для агентов ИИ, которым требуется децентрализованная синхронизация знаний и конкурентная генерация гипотез между пиринговыми хранилищами. Локализованное описание: Synchronize claims and hypotheses with peer vaults via shared exchange directory # /federation-sync -- Cross-Vault Federation Agent Synchronize claims and hypotheses between peer vaults using a shared exchange directory. This AI agent skill supports Claude Code, Cursor

Возможности

/federation-sync -- Cross-Vault Federation Agent
Synchronize claims and hypotheses between peer vaults using a shared
exchange directory. Respects trust levels and quarantine policies.
Implements file-based federation exchange as described in ops/federation.yaml.
No server infrastructure required -- peers share a directory (git repo,

# Ключевые темы

achousal achousal
[1]
[0]
Обновлено: 3/15/2026

Skill Overview

Start with fit, limitations, and setup before diving into the repository.

Идеально для агентов ИИ, которым требуется децентрализованная синхронизация знаний и конкурентная генерация гипотез между пиринговыми хранилищами. Локализованное описание: Synchronize claims and hypotheses with peer vaults via shared exchange directory # /federation-sync -- Cross-Vault Federation Agent Synchronize claims and hypotheses between peer vaults using a shared exchange directory. This AI agent skill supports Claude Code, Cursor

Зачем использовать этот навык

Наделяет агентов возможностью синхронизировать утверждения и гипотезы между пиринговыми хранилищами с использованием общего каталога обмена, соблюдая уровни доверия и политики карантина, и реализуя файловый обмен федерацией, как описано в ops/federation.yaml, без необходимости серверной

Подходит лучше всего

Идеально для агентов ИИ, которым требуется децентрализованная синхронизация знаний и конкурентная генерация гипотез между пиринговыми хранилищами.

Реализуемые кейсы использования for federation-sync

Синхронизация утверждений в нескольких хранилищах
Генерация конкурентных гипотез между пиринговыми агентами
Соблюдение уровней доверия и политик карантина во время обмена знаниями

! Безопасность и ограничения

  • Требуется доступ к общему каталогу (репозиторий git, общий диск или смонтированный том)
  • Нет поддержки серверной инфраструктуры
  • Зависит от конфигурации ops/federation.yaml

About The Source

The section below is adapted from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Labs-демо

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ и шаги установки

These questions and steps mirror the structured data on this page for better search understanding.

? Частые вопросы

Что такое federation-sync?

Идеально для агентов ИИ, которым требуется децентрализованная синхронизация знаний и конкурентная генерация гипотез между пиринговыми хранилищами. Локализованное описание: Synchronize claims and hypotheses with peer vaults via shared exchange directory # /federation-sync -- Cross-Vault Federation Agent Synchronize claims and hypotheses between peer vaults using a shared exchange directory. This AI agent skill supports Claude Code, Cursor

Как установить federation-sync?

Выполните команду: npx killer-skills add achousal/EngramR/federation-sync. Она работает с Cursor, Windsurf, VS Code, Claude Code и более чем 19 другими IDE.

Для чего можно использовать federation-sync?

Ключевые сценарии использования: Синхронизация утверждений в нескольких хранилищах, Генерация конкурентных гипотез между пиринговыми агентами, Соблюдение уровней доверия и политик карантина во время обмена знаниями.

Какие IDE совместимы с federation-sync?

Этот навык совместим с Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Для единой установки используйте CLI Killer-Skills.

Есть ли ограничения у federation-sync?

Требуется доступ к общему каталогу (репозиторий git, общий диск или смонтированный том). Нет поддержки серверной инфраструктуры. Зависит от конфигурации ops/federation.yaml.

Как установить этот skill

  1. 1. Откройте терминал

    Откройте терминал или командную строку в директории проекта.

  2. 2. Запустите команду установки

    Выполните: npx killer-skills add achousal/EngramR/federation-sync. CLI автоматически определит вашу IDE или агента и настроит навык.

  3. 3. Начните использовать skill

    Skill уже активен. Ваш AI-агент может сразу использовать federation-sync в текущем проекте.

! Source Notes

This page is still useful for installation and source reference. Before using it, compare the fit, limitations, and upstream repository notes above.

Upstream Repository Material

The section below is adapted from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Upstream Source

federation-sync

Install federation-sync, an AI agent skill for AI agent workflows and automation. Explore features, use cases, limitations, and setup guidance.

SKILL.md
Readonly
Upstream Repository Material
The section below is adapted from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.
Upstream Source

/federation-sync -- Cross-Vault Federation Agent

Synchronize claims and hypotheses between peer vaults using a shared exchange directory. Respects trust levels and quarantine policies.

Architecture

Implements file-based federation exchange as described in ops/federation.yaml. No server infrastructure required -- peers share a directory (git repo, shared drive, or mounted volume).

Vault paths

  • Config: ops/federation.yaml
  • Claims: notes/ (export source), imported claims also go here
  • Hypotheses: _research/hypotheses/ (export + import)
  • Exchange dir: configured in ops/federation.yaml under sync.exchange_dir

Code

  • _code/src/engram_r/claim_exchange.py -- export_claims(), import_claims()
  • _code/src/engram_r/hypothesis_exchange.py -- export_hypotheses(), import_hypotheses()
  • _code/src/engram_r/federation_config.py -- load_federation_config()

Exchange directory structure

exchange_dir/
  {vault_id}/
    claims.yaml          -- exported claims from this vault
    hypotheses.yaml      -- exported hypotheses from this vault
    manifest.yaml        -- vault identity + export timestamp

Workflow

  1. Read ops/federation.yaml to get federation config.
  2. If federation is disabled, exit with message.
  3. Validate exchange directory exists and is writable.

Export phase

  1. Export claims from notes/ according to export policy:
    • Filter by confidence levels in export.claims.filter_confidence
    • Limit to export.claims.max_per_sync
    • Strip wiki-links (not portable across vaults)
  2. Export hypotheses from _research/hypotheses/ according to export policy:
    • Filter by export.hypotheses.min_elo
    • Limit to export.hypotheses.max_per_sync
  3. Write exports to exchange_dir/{vault_id}/claims.yaml and hypotheses.yaml.
  4. Write a manifest.yaml with vault identity and export timestamp.

Import phase

  1. List peer directories in the exchange dir (any dir that is not this vault's).
  2. For each peer: a. Read their manifest.yaml to identify the peer. b. Check trust level in federation.yaml peers config. c. If untrusted (and default trust is untrusted), skip with log message. d. If verified or full:
    • Import claims: import_claims() with quarantine based on trust level.
    • Import hypotheses: import_hypotheses() with federated Elo fields.
  3. Write sync summary to ops/daemon-inbox.md:
    • Claims exported / imported per peer
    • Hypotheses exported / imported per peer
    • Peers skipped (untrusted)

Trust levels

LevelClaimsHypothesesQuarantineFederated Tournament
fullAcceptAcceptNoYes
verifiedAcceptAcceptYesYes
untrustedRejectRejectN/ANo

Safety rules

  • NEVER import from peers whose trust level blocks import.
  • ALWAYS quarantine verified-peer imports (unless quarantine is disabled globally).
  • NEVER overwrite existing notes during import (use overwrite=False).
  • NEVER export private/quarantined notes.
  • Log every import/export action for provenance.

Federated Elo

Imported hypotheses get:

  • elo_federated: 1200 (starting federated rating)
  • elo_source: {original_elo} (informational, from source vault)
  • matches_federated: 0
  • matches_source: {original_matches}

The /tournament --federated mode updates elo_federated (not elo), keeping local and federated rankings separate.

Daemon integration

The daemon scheduler checks ops/federation.yaml for:

  • enabled: true -- master switch
  • sync.exchange_dir -- must be non-empty

When both conditions are met, the scheduler includes federation-sync in the P3.5 priority tier (after background tasks, before idle).

Связанные навыки

Looking for an alternative to federation-sync or another community skill for your workflow? Explore these related open-source skills.

Показать все

openclaw-release-maintainer

Logo of openclaw
openclaw

Локализованное описание: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

widget-generator

Logo of f
f

Локализованное описание: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat. It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor

flags

Logo of vercel
vercel

Локализованное описание: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Браузер

pr-review

Logo of pytorch
pytorch

Локализованное описание: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review. It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
Разработчик