claude-code-status-line 1.2.2

A configurable status line for Claude Code with powerline arrows, context tracking, and quota monitoring
Documentation
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Claude Code Status Line</title>
    <meta name="description" content="Beautiful, configurable status line for Claude Code with git status, model info, context usage, and quota tracking">
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <div class="container">
        <header>
            <h1>Claude Code Status Line</h1>
            <p class="tagline">Beautiful, configurable statusline for Claude Code</p>
        </header>

        <section class="screenshot">
            <img src="https://github.com/user-attachments/assets/bbf1173a-e77b-4ea2-a1fe-3bd3868779d1"
                 alt="Claude Code Status Line Screenshot"
                 width="904"
                 height="99">
        </section>

        <section class="install">
            <h2>Quick Install</h2>

            <div class="install-block">
                <h3>macOS / Linux</h3>
                <div class="code-block">
                    <code id="unix-cmd">mkdir -p ~/.claude/commands && curl -o ~/.claude/commands/install-statusline.md https://raw.githubusercontent.com/ndave92/claude-code-status-line/master/.claude/commands/install-statusline.md</code>
                    <button class="copy-btn" data-target="unix-cmd" aria-label="Copy to clipboard">
                        <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
                            <path d="M13.5 2H6.5C5.67 2 5 2.67 5 3.5V10.5C5 11.33 5.67 12 6.5 12H13.5C14.33 12 15 11.33 15 10.5V3.5C15 2.67 14.33 2 13.5 2ZM13.5 10.5H6.5V3.5H13.5V10.5ZM2.5 5H4V6.5H2.5V13.5H9.5V12H11V13.5C11 14.33 10.33 15 9.5 15H2.5C1.67 15 1 14.33 1 13.5V6.5C1 5.67 1.67 5 2.5 5Z" fill="currentColor"/>
                        </svg>
                    </button>
                </div>
            </div>

            <div class="install-block">
                <h3>Windows (PowerShell)</h3>
                <div class="code-block">
                    <code id="windows-cmd">New-Item -Path "$env:USERPROFILE\.claude\commands" -ItemType Directory -Force; Invoke-WebRequest -Uri "https://raw.githubusercontent.com/ndave92/claude-code-status-line/master/.claude/commands/install-statusline.md" -OutFile "$env:USERPROFILE\.claude\commands\install-statusline.md"</code>
                    <button class="copy-btn" data-target="windows-cmd" aria-label="Copy to clipboard">
                        <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
                            <path d="M13.5 2H6.5C5.67 2 5 2.67 5 3.5V10.5C5 11.33 5.67 12 6.5 12H13.5C14.33 12 15 11.33 15 10.5V3.5C15 2.67 14.33 2 13.5 2ZM13.5 10.5H6.5V3.5H13.5V10.5ZM2.5 5H4V6.5H2.5V13.5H9.5V12H11V13.5C11 14.33 10.33 15 9.5 15H2.5C1.67 15 1 14.33 1 13.5V6.5C1 5.67 1.67 5 2.5 5Z" fill="currentColor"/>
                        </svg>
                    </button>
                </div>
            </div>

            <div class="next-step">
                Then restart Claude Code and run: <code>/install-statusline</code>
            </div>
        </section>

        <section class="features">
            <h2>Features</h2>
            <div class="feature-grid">
                <div class="feature">
                    <h3>📊 Rich Information</h3>
                    <p>Working directory, git branch, model name, context usage, quota tracking (5h/7d)</p>
                </div>
                <div class="feature">
                    <h3>🎨 Fully Customizable</h3>
                    <p>Per-section colors, Powerline arrows or custom separators, multiline mode</p>
                </div>
                <div class="feature">
                    <h3>📱 Responsive Design</h3>
                    <p>Automatically drops low-priority sections on narrow terminals</p>
                </div>
                <div class="feature">
                    <h3>🚀 Cross-Platform</h3>
                    <p>macOS, Linux, and Windows support with easy installation</p>
                </div>
            </div>
        </section>

        <section class="links">
            <a href="https://github.com/ndave92/claude-code-status-line/wiki" class="btn btn-primary">Documentation</a>
            <a href="https://github.com/ndave92/claude-code-status-line" class="btn btn-secondary">GitHub</a>
            <a href="https://github.com/ndave92/claude-code-status-line/releases/latest" class="btn btn-secondary">Download</a>
        </section>

        <footer>
            <div class="support">
                <p>Support this project</p>
                <a href="https://ko-fi.com/ndave" target="_blank" rel="noopener">
                    <img src="https://ko-fi.com/img/githubbutton_sm.svg" alt="Support on Ko-fi">
                </a>
            </div>
            <div class="footer-info">
                <p>Made with ❤️ for the Claude Code community</p>
                <p><a href="https://github.com/ndave92/claude-code-status-line/blob/master/LICENSE">MIT License</a></p>
            </div>
        </footer>
    </div>

    <script src="script.js"></script>
</body>
</html>