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

v1.0.0

À propos de ce Skill

Parfait pour les agents IA nécessitant une synchronisation des connaissances décentralisée et une génération d'hypothèses compétitives entre les coffres de pairs. Resume localise : 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

Fonctionnalités

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

# Sujets clés

achousal achousal
[1]
[0]
Mis à jour: 3/15/2026

Skill Overview

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

Parfait pour les agents IA nécessitant une synchronisation des connaissances décentralisée et une génération d'hypothèses compétitives entre les coffres de pairs. Resume localise : 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

Pourquoi utiliser cette compétence

Permet aux agents de synchroniser les réclamations et les hypothèses entre les coffres de pairs en utilisant un répertoire d'échange partagé, en respectant les niveaux de confiance et les politiques de quarantaine, et en mettant en œuvre l'échange de fédération basé sur les fichiers comme décrit

Meilleur pour

Parfait pour les agents IA nécessitant une synchronisation des connaissances décentralisée et une génération d'hypothèses compétitives entre les coffres de pairs.

Cas d'utilisation exploitables for federation-sync

Synchronisation des réclamations entre plusieurs coffres
Génération d'hypothèses compétitives entre les agents de pairs
Respect des niveaux de confiance et des politiques de quarantaine lors de l'échange de connaissances

! Sécurité et Limitations

  • Nécessite un accès à un répertoire partagé (dépôt git, lecteur partagé ou volume monté)
  • Ne prend pas en charge l'infrastructure de serveur
  • Dépend de la configuration de ops/federation.yaml

About The Source

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

Démo 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 et étapes d’installation

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

? Questions fréquentes

Qu’est-ce que federation-sync ?

Parfait pour les agents IA nécessitant une synchronisation des connaissances décentralisée et une génération d'hypothèses compétitives entre les coffres de pairs. Resume localise : 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

Comment installer federation-sync ?

Exécutez la commande : npx killer-skills add achousal/EngramR/federation-sync. Elle fonctionne avec Cursor, Windsurf, VS Code, Claude Code et plus de 19 autres IDE.

Quels sont les cas d’usage de federation-sync ?

Les principaux cas d’usage incluent : Synchronisation des réclamations entre plusieurs coffres, Génération d'hypothèses compétitives entre les agents de pairs, Respect des niveaux de confiance et des politiques de quarantaine lors de l'échange de connaissances.

Quels IDE sont compatibles avec federation-sync ?

Cette skill est compatible avec 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. Utilisez la CLI Killer-Skills pour une installation unifiée.

Y a-t-il des limites pour federation-sync ?

Nécessite un accès à un répertoire partagé (dépôt git, lecteur partagé ou volume monté). Ne prend pas en charge l'infrastructure de serveur. Dépend de la configuration de ops/federation.yaml.

Comment installer ce skill

  1. 1. Ouvrir le terminal

    Ouvrez le terminal ou la ligne de commande dans le dossier du projet.

  2. 2. Lancer la commande d’installation

    Exécutez : npx killer-skills add achousal/EngramR/federation-sync. La CLI détectera automatiquement votre IDE ou votre agent et configurera la skill.

  3. 3. Commencer à utiliser le skill

    Le skill est maintenant actif. Votre agent IA peut utiliser federation-sync immédiatement dans le projet.

! 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 comes 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 comes 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).

Compétences associées

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

Voir tout

openclaw-release-maintainer

Logo of openclaw
openclaw

Resume localise : 🦞 # 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

Resume localise : 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

flags

Logo of vercel
vercel

Resume localise : 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
Navigateur

pr-review

Logo of pytorch
pytorch

Resume localise : 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
Développeur