بنقرة واحدة
create-worktree
Creates a git worktree with branch and copies environment files (.envrc, .mcp.json)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Creates a git worktree with branch and copies environment files (.envrc, .mcp.json)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
| name | create-worktree |
| description | Creates a git worktree with branch and copies environment files (.envrc, .mcp.json) |
| argument-hint | ["branch-name"] |
| user-invocable | true |
CLAUDE: When this skill is invoked with /create-worktree <branch-name>, immediately run:
./.claude/skills/create-worktree/create-worktree.sh <branch-name>
Creates a new git worktree with a feature branch, automatically copying environment files that are not tracked in git.
/create-worktree feature/my-new-feature
../pierre_mcp_server-<branch-name>.envrc from main worktree.mcp.json if presentdirenv allow to activate the environment./.claude/skills/create-worktree/create-worktree.sh <branch-name> [optional-path]
# Examples:
./.claude/skills/create-worktree/create-worktree.sh feature/new-api
./.claude/skills/create-worktree/create-worktree.sh fix/bug-123 /tmp/quick-fix
BRANCH="feature/my-feature"
WORKTREE="../pierre_mcp_server-${BRANCH//\//-}"
git worktree add -b "$BRANCH" "$WORKTREE"
cp .envrc "$WORKTREE/"
cp .mcp.json "$WORKTREE/" 2>/dev/null || true
cd "$WORKTREE" && direnv allow
When done with a worktree:
git worktree remove ../pierre_mcp_server-feature-my-feature
git branch -d feature/my-feature # if merged
finish-worktree - Completes feature branch work with rebase and mergeUse when designing prompts for LLMs, optimizing model performance, building evaluation frameworks, or implementing advanced prompting techniques like chain-of-thought, few-shot learning, or structured outputs.
How to deploy Dravr infrastructure and apply Cloud Run config changes. Use when editing infra/ terraform, when a merged code change is live but a Cloud Run setting (cpu, memory, min/max instances, env var, scaling) hasn't taken effect, or when asked to plan/apply infra. Explains the two-pipeline model (app binary auto-deploys on push; terraform infra config is a separate manual apply) plus the cpu/cpu_idle guardrails.
Enforces zero-tolerance code quality policy using Clippy with strict lints, all warnings treated as errors
Write well-formatted notes to the dravr-vault Obsidian knowledge base. Use this skill whenever creating or updating an ADR, runbook, plan, API doc, guide, session output, or any structured document that should land in the vault — even when the user doesn't say "Obsidian" explicitly. Delegates to obsidian:obsidian-cli to write to the live vault and applies Dravr frontmatter and formatting standards.
Bootstrap Pierre server with database, admin user, coaches, and test users for development and testing
Validates coach markdown files for required frontmatter fields, sections, and naming conventions