
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
CLI tool to process and format Claude Code conversation logs with user-focused display
A CLI tool to process and format Claude Code conversation logs with user-focused display. Parse Claude Code export logs and output chronological conversation records in Markdown or HTML format, emphasizing user dialogue.
# Global installation
npm install -g ccdigest
# One-time execution
npx ccdigest process your-log.txt
# Clone repository
git clone https://github.com/makikub/ccdigest.git
cd ccdigest
# Install dependencies
npm install
# Build
npm run build
# Usage example
npm run dev -- process test-log.txt
# Output in Markdown format (default)
ccdigest process session.txt
# Output in HTML format
ccdigest process session.txt --out html
# Output HTML and open in browser
ccdigest process session.txt --out html --open
# Custom output filename
ccdigest process session.txt --file my-session.md
# Specify session title
ccdigest process session.txt --title "Bug Fix Session"
# Extract messages from specific user only
ccdigest process session.txt --user john
# Show Claude summaries only (hide details)
ccdigest process session.txt --summary-only
# Combined usage
ccdigest process session.txt --user john --summary-only --title "John's Summary"
# Show current configuration
ccdigest config show
# Change configuration values
ccdigest config set defaultUser john
ccdigest config set outputDir ./logs
# Reset configuration values
ccdigest config set defaultUser ""
| Key | Default Value | Description |
|---|---|---|
defaultUser | "user" | Default username |
outputDir | "./output" | Output directory |
dateFormat | "YYYY-MM-DD" | Date format |
Supports plain text files exported from Claude Code's /export command.
[09:14] 🧑💻 User: I want to fix the current bug
[09:15] 🤖 Claude: Let me check the bug details.
Using Read tool on: src/main.js
...
[09:16] 🧑💻 User: Thank you
<details> tagsgit clone https://github.com/makikub/ccdigest.git
cd ccdigest
npm install
# Development server
npm run dev
# Build
npm run build
# Run tests
npm test
# Run linter
npm run lint
# Auto-fix linting issues
npm run lint:fix
ccdigest/
├── src/
│ ├── cli.ts # CLI entry point
│ ├── processor.ts # Log parsing engine
│ ├── config.ts # Configuration management
│ ├── formatters/ # Output formatters
│ │ ├── base.ts
│ │ ├── markdown.ts
│ │ └── html.ts
│ ├── utils/ # Utilities
│ └── types.ts # Type definitions
├── tests/ # Test files
└── bin/ # Executable files
git checkout -b feature/amazing-feature)git commit -m 'Add amazing feature')git push origin feature/amazing-feature)MIT License - see the LICENSE file for details
This project was inspired by Sniffy.
FAQs
CLI tool to process and format Claude Code conversation logs with user-focused display
We found that ccdigest demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.