TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

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

2 点作者 primaprashant3 个月前
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!

暂无评论

暂无评论