@matrixmind/devpulse
v1.0.3
Published
A CLI Developer Session Logger Tool
Maintainers
Readme
DevPulse
A lightweight Node.js CLI tool for logging development sessions, generating weekly summaries, and tracking what you've been working on — directly from your terminal.
Features
- Log development sessions with project name and hours worked
- Generate automatic 7-day summaries
- View complete session history
- Clean and simple CLI experience
Installation
Install globally via npm
npm install -g @matrixmind/devpulseOr clone and link locally (for development)
git clone https://github.com/DE-IGNIS/devpulse.git
cd devpulse
npm install
npm linkCommands
devpulse log
Save a new development session.
devpulse log "Your log message" --project "Project Name" --hours 3Example:
devpulse log "Developing dashboard for LegalAI" --project "LegalAI" --hours 3Output:
✅ Session logged!
Project : LegalAI
Date : 2026-03-02T15:30:05.766Z
Notes : Developing dashboard for LegalAI
Hours : 3devpulse summary
Generate a summary of all logs from the past 7 days.
devpulse summaryThis aggregates your recent session logs and provides a concise activity digest — ideal for standups, retrospectives, or weekly reviews.
devpulse list
Display all saved session logs.
devpulse listLists every recorded entry, sorted by date.
Requirements
- Node.js v18 or higher
- npm v7 or higher
