Quickly spin up isolated Claude Code sessions using git worktrees.
- Creates a git worktree for your feature branch
- Opens Claude Code with
--dangerously-skip-permissionsin that worktree - Tab completion for existing worktrees and branches
| #!/bin/bash | |
| # Check for Claude Code plugin updates | |
| # Compares installed plugin versions with latest available in marketplaces | |
| set -euo pipefail | |
| CLAUDE_DIR="$HOME/.claude" | |
| PLUGINS_FILE="$CLAUDE_DIR/plugins/installed_plugins_v2.json" | |
| MARKETPLACES_DIR="$CLAUDE_DIR/plugins/marketplaces" |
name: Hook Development description: >- This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "implement agent hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", "frontmatter hooks", "scoped hooks", "once: true", or mentions hook events (PreToolUse, PostToolUse, Stop,
| rules_version = '2'; | |
| service cloud.firestore { | |
| match /databases/{database}/documents { | |
| function isAuthenticated() { | |
| return request.auth != null; | |
| } | |
| function isDefined(field) { | |
| return field in request.resource.data |
| {"lastUpload":"2021-11-07T20:23:16.167Z","extensionVersion":"v3.4.3"} |
| import Controller from '@ember/controller'; | |
| import { computed, set } from '@ember/object'; | |
| import { later } from '@ember/runloop'; | |
| import { tracked } from '@glimmer/tracking'; | |
| export default class ApplicationController extends Controller { | |
| @tracked _cart = null; | |
| @computed('cart') | |
| get outputDude() { |
| // eslint-disable-next-line no-unused-vars | |
| import { timestamp, files, shell, routes } from '@sapper/service-worker'; | |
| const ASSETS = `cache${timestamp}`; | |
| // `shell` is an array of all the files generated by the bundler, | |
| // `files` is an array of everything in the `static` directory | |
| const to_cache = shell.concat(files); | |
| const cached = new Set(to_cache); |
| echo code --install-extension | |
| code --install-extension aaron-bond.better-comments | |
| code --install-extension alefragnani.project-manager | |
| code --install-extension ardenivanov.svelte-intellisense | |
| code --install-extension cbuelter.vscode-toggle-max-editor | |
| code --install-extension christian-kohler.path-intellisense | |
| code --install-extension DavidAnson.vscode-markdownlint | |
| code --install-extension dbaeumer.vscode-eslint | |
| code --install-extension donjayamanne.githistory | |
| code --install-extension dracula-theme.theme-dracula |
| {"lastUpload":"2020-08-13T16:51:00.817Z","extensionVersion":"v3.4.3"} |