Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude/agents/rust-rtk.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: rust-rtk
description: Expert Rust developer for RTK - CLI proxy patterns, filter design, performance optimization
model: claude-sonnet-4-5-20250929
model: sonnet
tools: Read, Write, Edit, MultiEdit, Bash, Grep, Glob
---

Expand Down
4 changes: 2 additions & 2 deletions .claude/commands/diagnose.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ options:

### Fix 1 : Installer RTK localement
```bash
cd /Users/florianbruniaux/Sites/rtk-ai/rtk
# Depuis la racine du repo RTK
cargo install --path .
# Vérifier installation
which rtk && rtk --version
Expand Down Expand Up @@ -345,7 +345,7 @@ chmod +x .claude/hooks/*.sh
**Upgrade recommendation**: If running v0.15.x or older, upgrade to v0.16.x:

```bash
cd /Users/florianbruniaux/Sites/rtk-ai/rtk
# From the RTK repo root
git pull origin main
cargo install --path . --force
rtk --version # Should show 0.16.x or newer
Expand Down
1 change: 1 addition & 0 deletions .claude/commands/tech/codereview.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
model: sonnet
description: RTK Code Review — Review locale pre-PR avec auto-fix
argument-hint: "[--fix] [file-pattern]"
---

# RTK Code Review
Expand Down
1 change: 1 addition & 0 deletions .claude/commands/tech/remove-worktree.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
model: haiku
description: Remove a specific worktree (directory + git reference + branch)
argument-hint: "<branch-name>"
---

# Remove Worktree
Expand Down
1 change: 1 addition & 0 deletions .claude/commands/tech/worktree-status.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
model: haiku
description: Worktree Cargo Check Status
argument-hint: "<branch-name>"
---

# Worktree Status Check
Expand Down
1 change: 1 addition & 0 deletions .claude/commands/tech/worktree.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
model: haiku
description: Git Worktree Setup for RTK
argument-hint: "<branch-name>"
---

# Git Worktree Setup
Expand Down
1 change: 1 addition & 0 deletions .claude/commands/worktree-status.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
model: haiku
description: Check background cargo check status for a git worktree
argument-hint: "<branch-name>"
---

# Worktree Status Check
Expand Down
1 change: 1 addition & 0 deletions .claude/commands/worktree.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
model: haiku
description: Git Worktree Setup for RTK (Rust project)
argument-hint: "<branch-name>"
---

# Git Worktree Setup
Expand Down
11 changes: 10 additions & 1 deletion .claude/skills/issue-triage/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,16 @@ Si toujours ambigu, demander à l'utilisateur via `AskUserQuestion`.

Après affichage du tableau de triage, copier dans le presse-papier :
```bash
pbcopy <<'EOF'
# Cross-platform clipboard
clip() {
if command -v pbcopy &>/dev/null; then pbcopy
elif command -v xclip &>/dev/null; then xclip -selection clipboard
elif command -v wl-copy &>/dev/null; then wl-copy
else cat
fi
Comment on lines +165 to +171
Copy link

Copilot AI Apr 4, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In the clip() helper, the fallback branch uses cat, which does not copy anything to the clipboard. That makes the subsequent instruction to confirm "copied to clipboard" incorrect on systems without pbcopy/xclip/wl-copy. Consider either (1) emitting a clear warning and skipping the "copied" confirmation, or (2) returning a non-zero status and instructing the user to install a clipboard tool.

Copilot uses AI. Check for mistakes.
}

clip <<'EOF'
{tableau de triage complet}
EOF
```
Expand Down
Loading
Loading