Claude-skill-registry config-sync-target-adaptation

Coordinate target-specific adapters for Droid, Qwen, Codex, OpenCode, and Amp CLI environments.

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/config-sync-target-adaptation" ~/.claude/skills/majiayu000-claude-skill-registry-config-sync-target-adaptation && rm -rf "$T"
manifest: skills/data/config-sync-target-adaptation/SKILL.md
source content

Purpose

Coordinate target-specific adapters so that config-sync applies correct rules, permissions, commands, settings, and memory updates for each CLI environment.

IO Semantics

Input: Config-sync plan describing targets and components, adapter scripts under .claude/commands/config-sync/adapters, resolved target configuration and rules directories.
Output: Adapter execution results and updated target configuration files per environment.
Side Effects: Invokes adapter scripts that perform writes to target configuration directories; relies on existing backups created by higher-level workflow phases.

Deterministic Steps

  1. Adapter Selection

    • Read the config-sync plan to determine which targets and components require adapter execution.
    • Map each target to its corresponding adapter script.
  2. Target Directory Resolution

    • Resolve configuration, rules, and commands directories using common helpers (get_target_config_dir, get_target_rules_dir, get_target_commands_dir).
    • Reject hard-coded home-relative paths in adapters.
  3. Adapter Invocation

    • Execute adapter scripts for each target/component combination with required environment variables and paths.
    • Ensure adapters enforce documented safety and permission constraints.
  4. Post-Execution Validation

    • Confirm that backups exist for all modified target configuration files.
    • Record adapter execution status into the plan or run metadata.