Agent skill
add-app-config
Use when adding configuration for a new application to the dotfiles, setting up a new tool's config, or when user says "add config for X"
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/add-app-config
SKILL.md
Add App Configuration
Add a new application's configuration to Juliet dotfiles with proper stow symlinks.
Process
-
Create config directory
bashmkdir -p ~/.config/Juliet/symlinked/config/<app-name>/ -
Add configuration files
- Create config files inside
symlinked/config/<app-name>/ - Use the app's expected filenames (e.g.,
config,config.toml,settings.json)
- Create config files inside
-
Run stow to create symlinks
bashstow --target=$HOME/.config --dir=$HOME/.config/Juliet/symlinked config -
Apply Bamboo theme (if applicable)
- Check if app supports Bamboo theme
- Apply consistent colors: dark green-tinted background, soft white foreground
- Document theme setting in
.claude/rules/theming.md
Pre-flight Check
Before creating, verify the target doesn't already exist:
ls -la ~/.config/<app-name>
If it exists and is NOT a symlink, back it up first:
mv ~/.config/<app-name> ~/.config/<app-name>.backup
Example: Adding Fuzzel Config
# Create directory
mkdir -p ~/.config/Juliet/symlinked/config/fuzzel/
# Create config file
# (write fuzzel.ini content)
# Stow it
stow --target=$HOME/.config --dir=$HOME/.config/Juliet/symlinked config
# Verify
ls -la ~/.config/fuzzel # Should show symlink to Juliet
Common Mistakes
- Creating files directly in
~/.config/instead ofsymlinked/config/ - Forgetting to run
stowafter adding files - Not checking if target folder already exists (could overwrite user data)
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?