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.
Files changed (3) hide show
  1. package/README.md +28 -2
  2. package/package.json +1 -1
  3. 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 Integration
91
+ ## Claude Code Setup
92
+
93
+ Two optional integrations to make Claude aware of the sidebar:
82
94
 
83
- For automatic task completion tracking, add this to your `~/.claude/CLAUDE.md`:
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-sidebar",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Visual sidebar for managing todos, tasks, and context alongside Claude Code",
5
5
  "author": "Tyler Nishida",
6
6
  "license": "MIT",
package/src/cli.ts CHANGED
@@ -24,7 +24,7 @@ import { RawSidebar } from "./components/RawSidebar";
24
24
  program
25
25
  .name("cc-sidebar")
26
26
  .description("Visual sidebar for Claude Code")
27
- .version("0.1.3");
27
+ .version("0.1.4");
28
28
 
29
29
  // Show command - render sidebar in current terminal
30
30
  program