Agent skill
nushell-config-sync
Sync Nushell configuration files between the repo (os-config/nushell) and the system config path ($nu.config-path). Use when the user wants to push, pull, or diff nushell config files.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/nushell-config-sync
SKILL.md
Nushell Config Sync
Synchronizes Nushell configuration files between this repository and the system.
Paths
- Repo path:
os-config/nushell/in this repository - System path: The directory containing
$nu.config-path(typically~/.config/nushell/on Linux/macOS or%APPDATA%\nushell\on Windows)
Commands
Push (repo -> system)
Copies config files FROM os-config/nushell/ TO the system Nushell config directory.
python .claude/skills/nushell-config-sync/sync.py push
Pull (system -> repo)
Copies config files FROM the system Nushell config directory TO os-config/nushell/.
python .claude/skills/nushell-config-sync/sync.py pull
Diff (compare repo vs system)
Shows unified diff between repo and system config files.
python .claude/skills/nushell-config-sync/sync.py diff
python .claude/skills/nushell-config-sync/sync.py diff -f config.nu # specific file
Files Synced
config.nu- Main Nushell configurationenv.nu- Environment configuration
Usage
When user says:
- "push nushell config" or "sync config to system" -> run push command
- "pull nushell config" or "sync config from system" -> run pull command
- "diff nushell config" or "compare nushell config" -> run diff command
Always run diff before push/pull to show the user what will change.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?