← ClaudeAtlas

configure-pappardellelisted

Interactively configure Pappardelle by editing .pappardelle.yml and .pappardelle.local.yml. Helps add profiles, keybindings, hooks, watchlists, and more. Use when the user asks to configure, customize, or tweak their Pappardelle setup.
chardigio/pappardelle · ★ 17 · Data & Documents · score 80
Install: claude install-skill chardigio/pappardelle
# /configure-pappardelle — Interactive Configuration Editor Help the user configure their Pappardelle setup by editing `.pappardelle.yml` (shared, checked into git) and/or `.pappardelle.local.yml` (personal, gitignored). ## Getting Started 1. **Find the config files** at the git repository root: ```bash REPO_ROOT=$(git rev-parse --show-toplevel) echo "Repo root: $REPO_ROOT" ls -la "$REPO_ROOT/.pappardelle.yml" "$REPO_ROOT/.pappardelle.local.yml" 2>/dev/null ``` 2. **Read the existing config** (if it exists). If no `.pappardelle.yml` exists, suggest running `/init-pappardelle` first. 3. **Ask what the user wants to configure** using `AskUserQuestion`: Options: - **Add or edit a profile** — create a new project profile or modify an existing one - **Assign emojis to profiles** — suggest a ticket-rail emoji for each profile (STA-924) - **Configure keybindings** — add, change, or remove keyboard shortcuts - **Set up workspace init commands** — commands to run after worktree creation (`post_workspace_init`) - **Set up workspace deinit commands** — commands to run before workspace deletion (`pre_workspace_deinit`) - **Configure issue watchlist** — auto-create workspaces for assigned issues - **Edit local overrides** — personal keybinding overrides in `.pappardelle.local.yml` - **Change providers** — switch issue tracker or VCS host - **Configure Claude settings** — initialization command, permissions Then follow the appropriate section below based on their choice. ### Proac