Token导航 LogoToken导航TokenDH.com
AI 工具只读github未标认证来源可访问clear审计通过

config-backup配置备份

Agent Skill

config-backup 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

466

周安装

20

GitHub Stars

公开资料未说明

下载量

163
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:config-backup(配置备份)
来源仓库:https://github.com/ppx123-web/claude-config
仓库路径:skills/config-backup
安装命令:
npx skills add https://github.com/ppx123-web/claude-config --skill config-backup
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/ppx123-web/claude-config --skill config-backup

简介

config-backup 备份 Claude Code 的配置文件,包括 commands、skills 和 agents 目录。

  • 适用于定期保存自定义行为定义,防止配置丢失。
  • 支持选择性备份,用户可控制保留内容。
  • 安装前请确认权限范围、维护状态及是否会覆盖现有文件。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Config Backup Skill

This skill helps users backup their Claude Code configuration files from ~/.claude/ to a specified target directory. It copies the commands/, skills/, and agents/ directories with options for selective backup.

What Gets Backed Up

By default, this skill backs up three directories from ~/.claude/:

  • commands/ - All slash command definitions
  • skills/ - All agent skills and their resources
  • agents/ - All subagent definitions

These are the user-created configurations that define custom Claude Code behavior.

When to Use This Skill

Use this skill when users want to:

  • Backup Claude configurations before making changes
  • Copy configurations to another machine or project
  • Share custom setup with others
  • Migrate to a new system
  • Version control configurations

Backup Workflow

Follow this workflow when performing a backup:

1. Confirm Target Directory

Always confirm the target directory, even though the default is the current working directory. Ask like this:

"Target directory: [current-working-directory]
Is this correct, or would you like to specify a different location?"

Wait for user confirmation before proceeding.

2. Select Directories to Backup

Ask the user which directories to include. Present this interactive prompt:

"Which directories would you like to backup?
- commands/
- skills/
- agents/

Backup all three, or specify which ones to include?"

If the user doesn't specify, backup all three. If they specify a subset, only backup those.

3. Execute the Backup Script

Use the backup script located at scripts/backup.sh within this skill directory. Execute it with appropriate parameters:

~/.claude/skills/config-backup/scripts/backup.sh [target-dir] [directories...]

Parameters:

  • target-dir: Target directory (default: current directory if not specified)
  • directories...: Space-separated list of directories to backup (commands, skills, agents)

The script will:

  • Create target directory if it doesn't exist
  • Use rsync if available (efficient copying), otherwise fallback to cp -r
  • Overwrite existing files without prompting
  • Preserve directory structure
  • Exit with error if source ~/.claude/ doesn't exist

4. Report Results

After the backup completes, show the user a detailed list of what was copied:

✅ Backup complete!

Copied directories:
- commands/ (15 files)
- skills/ (8 directories, 42 files)
- agents/ (23 files)

Target: /path/to/target/directory

If any errors occurred during the backup (permission errors, missing source, etc.), report them clearly to the user.

Error Handling

The backup script handles these scenarios:

Target Directory Doesn't Exist

Creates the directory automatically. No user action needed.

Source Directory Missing

If ~/.claude/ doesn't exist, the script exits with error message:

❌ Error: Source directory ~/.claude/ not found

No Write Permissions

If target directory isn't writable, shows:

❌ Error: Permission denied writing to [target-dir]

rsync Not Available

Automatically falls back to cp -r command. User sees:

⚠️ rsync not available, using cp instead

Examples

Example 1: Backup All Directories to Current Location

User: "save my claude settings"

Assistant: "I'll backup your Claude configurations.

Target directory: /Users/choi/work/claude-config Is this correct, or would you like to specify a different location?

Which directories would you like to backup?

  • commands/
  • skills/
  • agents/

Backup all three, or specify which ones to include?"

[User confirms]

[Executes backup, reports results]

Example 2: Backup Only Commands and Skills

User: "backup my commands and skills"

[Asks about target directory, then only backs up commands/ and skills/]

Example 3: Specify Custom Target

User: "copy ~/.claude to ~/backups/claude-config"

[Asks for confirmation, then backs up to ~/backups/claude-config]

Best Practices

  • Always confirm target directory before copying to avoid accidental overwrites
  • Show clear feedback about what was copied so user knows backup succeeded
  • Handle errors gracefully with helpful error messages
  • Use rsync when available for efficient incremental backups
  • Preserve structure so restore is straightforward
  • Overwrite without asking per user requirements (user should confirm target upfront)

Technical Details

Script Location

The backup script is at: ~/.claude/skills/config-backup/scripts/backup.sh

Copy Method

  • Prefers rsync -av --delete for efficient copying with deletion of orphaned files
  • Falls back to cp -rf if rsync unavailable
  • Always preserves permissions and timestamps
  • Creates target directories as needed with mkdir -p

Directory Structure

The backup preserves this structure:

target-dir/
├── commands/
│   ├── command1.md
│   └── command2.md
├── skills/
│   ├── skill1/
│   └── skill2/
└── agents/
    ├── agent1.md
    └── agent2.md

See Also

  • Troubleshooting common issues: references/troubleshooting.md
  • Detailed backup workflow examples: examples/backup-workflows.md
  • The backup script implementation: scripts/backup.sh
  • Claude Code skill documentation for skill structure
  • Advanced usage: Pipe backup to tar for archiving, sync to remote with rsync over ssh

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

29.06%
按下载量换算47

Antigravity

19.79%
按下载量换算32

Gemini CLI

17.99%
按下载量换算29

windsurf

10.96%
按下载量换算18

trae

7.77%
按下载量换算13

OpenCode

3.43%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills