← Back to list

dev-processes
by sethcarlton
Personal dotfiles management via bare git repo
⭐ 0🍴 0📅 Jan 24, 2026
SKILL.md
name: dev-processes description: Run dev servers, tests, long running processes, and watch processes in tmux windows
Run watch processes in tmux windows. Use descriptive names: dev, test, build
If not in tmux ($TMUX empty), ensure session exists:
SESSION="$(basename "$PWD" | tr . _)"
tmux has-session -t "$SESSION" 2>/dev/null || tmux new-session -d -s "$SESSION" -c "$PWD"
Check if window exists before creating. If exists, check output instead of restarting:
tmux select-window -t "$SESSION:dev" 2>/dev/null # check exists
tmux capture-pane -pt "$SESSION:dev" -S -100 # check output
tmux neww -dn dev -t "$SESSION" 'bun run dev' # create new
Turborepo
Always use --ui=stream (TUI doesn't work in detached sessions):
turbo run dev --ui=stream
bun run dev -- --ui=stream
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon