cc-sidebar 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +28 -2
- package/package.json +1 -1
- package/src/cli.ts +1 -1
package/README.md
CHANGED
|
@@ -31,6 +31,16 @@ Requires [Bun](https://bun.sh) runtime.
|
|
|
31
31
|
bun add -g cc-sidebar
|
|
32
32
|
```
|
|
33
33
|
|
|
34
|
+
### Shell Alias (Recommended)
|
|
35
|
+
|
|
36
|
+
Add to your `~/.zshrc` or `~/.bashrc`:
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
alias sidebar='cc-sidebar show'
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Then just type `sidebar` from any project directory.
|
|
43
|
+
|
|
34
44
|
## Quick Start
|
|
35
45
|
|
|
36
46
|
### Option 1: iTerm2 (Recommended)
|
|
@@ -78,9 +88,13 @@ Data is stored in `~/.claude-sidebar/`:
|
|
|
78
88
|
| `active.json` | Current active task |
|
|
79
89
|
| `history.log` | Completed tasks |
|
|
80
90
|
|
|
81
|
-
## Claude
|
|
91
|
+
## Claude Code Setup
|
|
92
|
+
|
|
93
|
+
Two optional integrations to make Claude aware of the sidebar:
|
|
82
94
|
|
|
83
|
-
|
|
95
|
+
### 1. Auto-completion (Recommended)
|
|
96
|
+
|
|
97
|
+
Add this to your `~/.claude/CLAUDE.md` so Claude automatically marks sidebar tasks as done:
|
|
84
98
|
|
|
85
99
|
```markdown
|
|
86
100
|
## Sidebar Integration
|
|
@@ -108,6 +122,18 @@ Keep it simple - if no clear match, don't move anything. User can manually mark
|
|
|
108
122
|
```
|
|
109
123
|
```
|
|
110
124
|
|
|
125
|
+
### 2. Sidebar Awareness Skill (Optional)
|
|
126
|
+
|
|
127
|
+
Install the bundled skill to give Claude context about the sidebar:
|
|
128
|
+
|
|
129
|
+
```bash
|
|
130
|
+
# Copy the skill to your Claude skills directory
|
|
131
|
+
mkdir -p ~/.claude/skills
|
|
132
|
+
cp -r ~/.bun/install/global/node_modules/cc-sidebar/skills/sidebar-awareness ~/.claude/skills/
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
This skill tells Claude about the sidebar's data files and how tasks flow through it.
|
|
136
|
+
|
|
111
137
|
## Commands
|
|
112
138
|
|
|
113
139
|
```bash
|
package/package.json
CHANGED
package/src/cli.ts
CHANGED