一键导入
use-the-user-todo-application
Teaches you how to use the user's todo app. You can add tasks, browse tasks, filter them by dates, projects and more.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Teaches you how to use the user's todo app. You can add tasks, browse tasks, filter them by dates, projects and more.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Manages persistent task files that survive compactions and session boundaries. Use when starting complex multi-session work, or when task summaries appear in context from the UserPromptSubmit hook.
Reference for using the glab CLI to interact with GitLab CI/CD pipelines and merge requests. Use when checking pipeline status, viewing job logs, creating or reviewing MRs, approving, commenting, or merging.
Creates and edits SKILL.md files for Claude Code agent skills. Use when asked to write a skill, create a skill, make a new skill, or improve an existing skill file. Produces well-structured skill packages with frontmatter, instructions, examples, and reference files.
| name | Use the user todo application |
| description | Teaches you how to use the user's todo app. You can add tasks, browse tasks, filter them by dates, projects and more. |
This app is accessed by command-line, through the bee command line tool. If you don't have bee in the PATH, then you need to inform the user about that.
Basic Pattern: bee <filter> <action> <arguments>
extensive list of commands is shown through bee help
Default output is filtering out deleted and completed tasks.
# Table format (human-readable)
bee list
# JSON format (programmatic)
bee export
# Returns newline-separated project names
bee _cmd get projects
# List all tasks in a project (matches hierarchically)
bee list proj:test
# This matches: test.work, does not match all tasks under `test`
bee list proj:test.work
# tasks filtered with tag foo, WITHOUT tag bar, with status completed
# Must set 'all' to filter on all tasks. By default, deleted and completed tasks are filtered
# out
bee all list +foo -bar status:completed
# Simple task
bee add "Task summary"
# Task with multiple properties - project, due dates and tags
bee add "Write docs" proj:work.documentation due:2026-02-15 +writing +docs
# Tasks due today
bee list due:today
# Tasks due tomorrow
bee list due:tomorrow
# Tasks due in next 3 days
bee list due.before:today+3d
# Tasks due on specific date
bee list due:2026-02-15
# all tasks with tag foo as done
bee +foo done
# Task 2 and 3 as done
bee 2 3 done
# all tasks with tag foo get tagged with bar
bee +foo mod +bar
# Task 2 and 3 get the tag foo removed, if present
bee 2 3 mod -foo