Skip to content

A friendly CLI productivity suite for developers. Quick access to notes, tasks, and project initialization - all from your terminal!

Notifications You must be signed in to change notification settings

DonkRonk17/Daily-Dev-Tools

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

image

📋 Daily Dev Tools

A friendly CLI productivity suite for developers. Quick access to notes, tasks, and project initialization - all from your terminal!

✨ Features

  • 📝 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

🚀 Installation

# 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

📖 Usage

Quick Notes

# Save a note
python devtools.py note "Fixed bug in authentication module"

# List recent notes
python devtools.py notes

Task Management

# 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

Project Initialization

# 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

🛠️ Commands

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

💡 Examples

# 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 1

📊 Data Storage

All data is stored locally in JSON format:

  • Notes: ~/.devtools/notes.json
  • Tasks: ~/.devtools/tasks.json
image

🤝 Contributing

Contributions are welcome! Feel free to:

  • Report bugs
  • Suggest new features
  • Submit pull requests

📄 License

MIT License - feel free to use this in your own projects!

🙏 Credits

Created by Randell Logan Smith and Team Brain at Metaphy LLC

Part of the HMSS (Heavenly Morning Star System) ecosystem.


Happy Coding! 🎉

About

A friendly CLI productivity suite for developers. Quick access to notes, tasks, and project initialization - all from your terminal!

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages