claudecto 0.1.5 → 0.1.6

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 (2) hide show
  1. package/README.md +3 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -15,10 +15,6 @@
15
15
  <a href="https://github.com/josharsh/claudecto"><img src="https://img.shields.io/github/stars/josharsh/claudecto.svg?style=social" alt="GitHub stars" /></a>
16
16
  </p>
17
17
 
18
- <p align="center">
19
- Your <code>~/.claude</code> data, visualized. Search, browse, edit, and analyze everything Claude Code does.
20
- </p>
21
-
22
18
  <p align="center">
23
19
  <img src="public/images/dashboard.png" alt="claudecto dashboard" width="800" />
24
20
  </p>
@@ -144,7 +140,7 @@ claudecto projects
144
140
  # Options
145
141
  claudecto --port 3000 # Custom port
146
142
  claudecto --no-open # Don't auto-open browser
147
- claudecto --claude-dir /path # Custom ~/.claude path
143
+ claudecto --claude-dir /path
148
144
  ```
149
145
 
150
146
  ## Programmatic API
@@ -186,7 +182,6 @@ claudecto exposes 50+ API endpoints when the server is running:
186
182
  ## Privacy & Security
187
183
 
188
184
  - **100% local** — All data stays on your machine
189
- - **Reads ~/.claude directly** — No external APIs, no data collection
190
185
  - **Localhost only** — Dashboard binds to `127.0.0.1` by default
191
186
  - **Optional auth** — Firebase auth is opt-in for cloud features; client keys are public by design (restricted via Firebase security rules)
192
187
 
@@ -214,14 +209,14 @@ npm start
214
209
 
215
210
  ## Requirements
216
211
 
217
- - **Claude Code** — [Install Claude Code](https://docs.anthropic.com/en/docs/claude-code/overview) and use it at least once (creates `~/.claude`)
212
+ - **Claude Code** — [Install Claude Code](https://docs.anthropic.com/en/docs/claude-code/overview) and use it at least once
218
213
  - **Node.js 18+**
219
214
  - **macOS 11+** for the desktop app which is coming soon!
220
215
 
221
216
 
222
217
  ## Troubleshooting
223
218
 
224
- **"Claude directory not found"** — Use Claude Code at least once. `~/.claude` is created on first run.
219
+ **"Claude directory not found"** — Use Claude Code at least once.
225
220
 
226
221
  **Port already in use** — `claudecto --port 3001`
227
222
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claudecto",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "If Claude Code is your engineer, claudecto can be your CTO - Visual dashboard to search, browse, and manage your Claude Code data",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",