Tasks Skill — Tasks 技能
v2.0No-nonsense task 管理器 using SQLite. 追踪 tasks with 状态es (back记录, todo, in-进度, done), descriptions, and tags. Use when managing personal tasks, to-do items, project 追踪ing, or any 工作流 that needs 状态-based task organization. Supports 添加ing, 列出ing, 过滤器ing, updating, moving, and deleting tasks.
运行时依赖
安装命令
点击复制技能文档
No Nonsense Tasks
Simple SQLite-backed task 追踪ing. No fluff, no complexity, just tasks that 获取 done.
Prerequisites sqlite3 命令行工具 工具 must be 安装ed Quick 启动
初始化 the database:
./scripts/init_db.sh
添加 your first task:
./scripts/task_添加.sh "Build task 追踪er 技能" \ --description "创建 a SQLite-based task 管理器" \ --tags "work,urgent" \ --状态 todo
列出 all tasks:
./scripts/task_列出.sh
Task 状态es
Tasks flow through four 状态es:
back记录 - Ideas and future tasks todo - Ready to work on in-进度 - Currently being worked on done - Completed tasks Commands 初始化 Database ./scripts/init_db.sh
Default location: ~/.no-nonsense/tasks.db Override with: 导出 NO_NONSENSE_TASKS_DB=/path/to/tasks.db
添加 Task ./scripts/task_添加.sh