Skip to content

Commit bf7e661

Browse files
0xkazclaude
andcommitted
📝 Clarify Claude Code CLI subscription requirements
- Add clear documentation about Claude Pro/Team subscription requirement - Specify Claude Code CLI installation methods - Update FAQ with detailed setup instructions - Add prerequisite notice on website homepage Users now understand they need an active Claude subscription before using this tool. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent cdbd1bc commit bf7e661

File tree

3 files changed

+33
-5
lines changed

3 files changed

+33
-5
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,10 @@ Complete documentation and examples available at [claude-auto-commit.0xkaz.com](
5050
## 📋 Requirements
5151

5252
- Git repository
53-
- [Claude CLI](https://docs.anthropic.com/claude/cli) installed and configured
53+
- **Claude Code CLI** (requires active Claude subscription)
54+
- Install Claude Code CLI: `npm install -g @anthropic-ai/claude-cli` or download from [claude.ai/download](https://claude.ai/download)
55+
- Authenticate: `claude login`
56+
- **Note**: Claude Code CLI requires an active Claude Pro or Team subscription
5457
- Bash shell (macOS, Linux, WSL)
5558

5659
## 🎯 Examples

docs/FAQ.md

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,11 @@ claude-auto-commit -s
3131
```
3232

3333
### Is it free to use?
34-
Yes, Claude Auto-Commit is open-source and free to use. However, you need a Claude CLI subscription to use the AI features.
34+
Yes, Claude Auto-Commit is open-source and free to use. However, you need:
35+
- **Claude Pro subscription** ($20/month) or Team plan
36+
- **Claude Code CLI** installed and authenticated
37+
38+
The tool itself is free, but it requires Claude's API services which are paid.
3539

3640
## Installation Issues
3741

@@ -63,9 +67,26 @@ export PATH="$HOME/.local/bin:$PATH"
6367
## Usage Issues
6468

6569
### Claude CLI not found
66-
Install Claude CLI first:
67-
- Visit: https://docs.anthropic.com/claude/cli
68-
- Follow the installation instructions for your platform
70+
You need to install Claude Code CLI first:
71+
72+
1. **Subscribe to Claude Pro or Team**
73+
- Visit: https://claude.ai
74+
- Subscribe to Claude Pro ($20/month) or Team plan
75+
- This is required to use Claude Code CLI
76+
77+
2. **Install Claude Code CLI**
78+
```bash
79+
# Option 1: Using npm
80+
npm install -g @anthropic-ai/claude-cli
81+
82+
# Option 2: Download from website
83+
# Visit: https://claude.ai/download
84+
```
85+
86+
3. **Authenticate**
87+
```bash
88+
claude login
89+
```
6990

7091
### No changes detected
7192
- Ensure you have uncommitted changes

website/index.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,10 @@ <h1>🤖 Claude Auto-Commit</h1>
253253
<strong>⚠️ Important:</strong> By default, this tool will automatically stage all changes, commit, and push to your remote repository. <strong>You will be prompted before pushing</strong> (use <code style="background: #f8f9fa; padding: 2px 4px; border-radius: 3px;">-y</code> to skip). Use <code style="background: #f8f9fa; padding: 2px 4px; border-radius: 3px;">-n</code> flag to disable auto-push.
254254
</div>
255255

256+
<div style="background: #cff4fc; color: #055160; padding: 1rem; border-radius: 8px; margin: 1rem auto; max-width: 600px; border: 1px solid #b6effb;">
257+
<strong>💡 Prerequisite:</strong> This tool requires <strong>Claude Code CLI</strong> with an active Claude Pro subscription ($20/month). <a href="https://claude.ai" style="color: #0c5460; text-decoration: underline;">Get Claude Pro</a>
258+
</div>
259+
256260
<div class="install-box" id="install">
257261
<h3>One-liner Installation</h3>
258262
<div class="install-command">

0 commit comments

Comments
 (0)