A friendly CLI productivity suite for developers. Quick access to notes, tasks, and project initialization - all from your terminal!
- 📝 Quick Notes: Save development notes with timestamps
- ✅ Task Management: Track your development tasks with a simple todo system
- 🚀 Project Init: Scaffold new projects instantly (Python, JavaScript)
- 💾 Local Storage: All data stored locally in
~/.devtools
# Clone the repository
git clone https://github.com/DonkRonk17/daily-dev-tools.git
cd daily-dev-tools
# Make executable (Linux/Mac)
chmod +x devtools.py
# Or run with python
python devtools.py --help# Save a note
python devtools.py note "Fixed bug in authentication module"
# List recent notes
python devtools.py notes# Add a task
python devtools.py task "Refactor database queries"
# List all tasks
python devtools.py tasks
# Mark task as complete
python devtools.py done 1# Create a new Python project
python devtools.py init my-awesome-project
# Create a JavaScript project
python devtools.py init my-web-app --lang javascript| Command | Description |
|---|---|
note <text> |
Save a quick development note |
notes |
Display recent notes |
task <text> |
Add a new task |
tasks |
List all tasks |
done <id> |
Mark a task as completed |
init <name> |
Initialize a new project |
# A typical workflow
python devtools.py task "Implement user authentication"
python devtools.py note "Remember to add rate limiting"
python devtools.py init auth-service --lang python
python devtools.py done 1All data is stored locally in JSON format:
- Notes:
~/.devtools/notes.json - Tasks:
~/.devtools/tasks.json
Contributions are welcome! Feel free to:
- Report bugs
- Suggest new features
- Submit pull requests
MIT License - feel free to use this in your own projects!
Created by Randell Logan Smith and Team Brain at Metaphy LLC
Part of the HMSS (Heavenly Morning Star System) ecosystem.
Happy Coding! 🎉