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

v1.0.0

このスキルについて

分散化された知識の同期とピアボールト間の競合仮説の生成が必要なAIエージェントに最適です。 ローカライズされた概要: 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, and Windsurf

機能

/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.

分散化された知識の同期とピアボールト間の競合仮説の生成が必要なAIエージェントに最適です。 ローカライズされた概要: 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, and Windsurf

このスキルを使用する理由

エージェントがピアボールト間で声明と仮説を同期する能力を提供し、共有された交換ディレクトリを使用し、信頼レベルと隔離ポリシーを尊重し、ops/federation.yamlに記載されているようにファイルベースのフェデレーション交換を実装し、サーバーインフラストラクチャは必要ありません。

おすすめ

分散化された知識の同期とピアボールト間の競合仮説の生成が必要なAIエージェントに最適です。

実現可能なユースケース 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 とは何ですか?

分散化された知識の同期とピアボールト間の競合仮説の生成が必要なAIエージェントに最適です。 ローカライズされた概要: 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, and Windsurf

federation-sync はどうやって導入しますか?

次のコマンドを実行してください: npx killer-skills add achousal/EngramR/federation-sync。Cursor、Windsurf、VS Code、Claude Code など19以上のIDEで使えます。

federation-sync の主な用途は?

主な用途は次のとおりです: 複数のボールト間で声明を同期する, ピアエージェント間で競合仮説を生成する, 知識の交換中に信頼レベルと隔離ポリシーを尊重する。

federation-sync に対応するIDEは?

このスキルは 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 に対応しています。統一された導入には Killer-Skills CLI を使えます。

federation-sync に制限はありますか?

共有ディレクトリへのアクセス(gitリポジトリ、共有ドライブ、またはマウントボリューム)が必要. サーバーインフラストラクチャはサポートされません. ops/federation.yamlの設定に依存する.

このスキルの導入方法

  1. 1. ターミナルを開く

    プロジェクトディレクトリでターミナルまたはコマンドラインを開きます。

  2. 2. インストールコマンドを実行

    npx killer-skills add achousal/EngramR/federation-sync を実行してください。CLI がIDEまたはエージェントを自動検出し、スキルを設定します。

  3. 3. スキルを使い始める

    このスキルはすぐに有効になります。現在のプロジェクトで 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.

333.8k
0
AI

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, and Windsurf

149.6k
0
AI

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
開発者