← スキル一覧に戻る

configure-claude-code
by PerArneng
AI skills to configure a developer workstation
⭐ 0🍴 0📅 2026年1月2日
SKILL.md
name: configure-claude-code description: Applies personalized Claude Code settings. Use when setting up Claude Code preferences on a new machine.
Prerequisites
- Claude Code installed
- jq installed (for JSON manipulation)
Configuration
Settings to apply
| Setting | Value | Description |
|---|---|---|
includeCoAuthoredBy | false | Disable co-authored-by line in commits |
statusLine | custom command | Custom status line using ~/.claude/statusline.sh |
Installation
1. Ensure settings directory exists
mkdir -p ~/.claude
2. Install status line script
Copy the status line script from this repository:
cp scripts/status_line.sh ~/.claude/statusline.sh
chmod +x ~/.claude/statusline.sh
3. Apply settings
If ~/.claude/settings.json doesn't exist, create it:
echo '{}' > ~/.claude/settings.json
Update the settings using jq:
jq '. + {"includeCoAuthoredBy": false, "statusLine": {"type": "command", "command": "~/.claude/statusline.sh", "padding": 0}}' ~/.claude/settings.json > ~/.claude/settings.json.tmp && mv ~/.claude/settings.json.tmp ~/.claude/settings.json
Verify
cat ~/.claude/settings.json | jq '.includeCoAuthoredBy'
Should output: false
cat ~/.claude/settings.json | jq '.statusLine'
Should output the statusLine configuration object.
ls -la ~/.claude/statusline.sh
Should show the script with execute permissions.
Update
Re-run the installation steps to apply any new settings added to this skill.
Uninstall
Remove the settings or reset to defaults:
jq 'del(.includeCoAuthoredBy, .statusLine)' ~/.claude/settings.json > ~/.claude/settings.json.tmp && mv ~/.claude/settings.json.tmp ~/.claude/settings.json
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓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
レビュー
💬
レビュー機能は近日公開予定です