Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,10 @@ Upload screen includes hidden folder visibility instructions per OS (macOS: Cmd+
- `npm run build:tui` — esbuild bundle (runs automatically via `prepublishOnly`)
- `npm run setup:command` — install /ccrewind slash command from local build
- `"files": ["dist/"]` in package.json overrides .gitignore so dist/ is included in npm publish
- npm package: published as `ccrewind`, bin entry `ccrewind` → `dist/ccrewind-tui.mjs`
- `npm run build:tui` — esbuild bundle (runs automatically via `prepublishOnly`)
- `npm run setup:command` — install /ccrewind slash command from local build
- `"files": ["dist/"]` in package.json overrides .gitignore so dist/ is included in npm publish

### Project name normalisation (important)

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Claude Code Rewind

![Claude standing on business](public/claude_standing_on_business.png)

> There's no way to see your Claude Code usage. We changed that. Your developer archetype. Your token costs. Your Claude ELO. Nobody else has touched this data. Find out where you actually stand.

Upload your `~/.claude` folder. Get a personalised story of your usage. Find out your archetype. Get your Claude Elo. Everything runs in the browser - zero data leaves your machine.
Expand Down
6 changes: 5 additions & 1 deletion next.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
import type { NextConfig } from "next";

const nextConfig: NextConfig = {};
const nextConfig: NextConfig = {
turbopack: {
root: __dirname,
},
};

export default nextConfig;
Loading
Loading