TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Show HN: Tqu – A Minimal CLI for Queue-Based Task Tracking

2 pointsby primaprashant3 months ago
Hey HN! I built a simple CLI tool called &quot;tqu&quot; to match my workflow for tracking tasks and todos.<p>Previously, I kept tasks grouped in a single text file, adding tasks to the right group whenever they came to mind, and deleting them once completed. I intentionally avoided features like priorities, due dates, or statuses because I found them distracting.<p>This CLI tool improves my workflow by storing tasks in a SQLite database. Now I don&#x27;t have to manually edit text files, delete tasks, or explicitly create new task groups. Instead, tasks are marked as completed by setting a completion timestamp, effectively hiding them from view. New queues (task groups) are created automatically on the fly.<p>You can install it easily with:<p><pre><code> uv tool install tqu # or pipx install tqu </code></pre> Using it is straightforward. Here are some common commands:<p><pre><code> # Add a task to the &quot;bills&quot; queue tqu add &quot;pay electricity bill&quot; bills # Complete (remove) the most recently added task from &quot;bills&quot; tqu pop bills # List all tasks in the &quot;bills&quot; queue tqu list bills # Delete a specific task by its ID tqu delete &lt;task-id&gt; </code></pre> I hope some of you find this useful too. I&#x27;d love to hear your feedback or suggestions!

no comments

no comments