Applies personalized Claude Code settings. Use when setting up Claude Code preferences on a new machine.
Scanned 2/12/2026
Install via CLI
openskills install majiayu000/claude-skill-registry---
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
```bash
mkdir -p ~/.claude
```
### 2. Install status line script
Copy the status line script from this repository:
```bash
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:
```bash
echo '{}' > ~/.claude/settings.json
```
Update the settings using jq:
```bash
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
```bash
cat ~/.claude/settings.json | jq '.includeCoAuthoredBy'
```
Should output: `false`
```bash
cat ~/.claude/settings.json | jq '.statusLine'
```
Should output the statusLine configuration object.
```bash
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:
```bash
jq 'del(.includeCoAuthoredBy, .statusLine)' ~/.claude/settings.json > ~/.claude/settings.json.tmp && mv ~/.claude/settings.json.tmp ~/.claude/settings.json
```
No comments yet. Be the first to comment!
Playbook for creating and editing uCoz landing pages via MCP tools (`templates_tool`, `ftp_tool`, `modules_tool`). Use for tasks such as: "build a landing page", "update the homepage as a landing page", "create a promo page on the homepage", "add a lead form / menu / SEO to the homepage". Homepage: `page_list`, `page_get`; first publish — `page_update` with full `page_tmpl`; HTML edits after generation — `patch_template` (module_id=2, template_id=1), not `update_template`. Activate the mail f...