Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add lexbritvin/obsidian-skills-pack --skill obsidian-tasks-querygit clone --depth 1 https://github.com/lexbritvin/obsidian-skills-packWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/lexbritvin/obsidian-skills-pack/obsidian-tasks-query)<a href="https://agentmods.dev/skills/lexbritvin/obsidian-skills-pack/obsidian-tasks-query"><img src="https://agentmods.dev/badge/skills/lexbritvin/obsidian-skills-pack/obsidian-tasks-query/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/lexbritvin/obsidian-skills-pack/obsidian-tasks-query"><img src="https://agentmods.dev/badge/skills/lexbritvin/obsidian-skills-pack/obsidian-tasks-query.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00089 | $0.00803 |
| Opus 5 | $0.00044 | $0.00402 |
| Sonnet 5 | $0.00018 | $0.00161 |
| Haiku 4.5 | $0.00009 | $0.00080 |
Grade A, and why
obsidian-tasks-query scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 108 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Creating Task Queries
Write tasks code blocks in markdown notes. The Tasks plugin renders them as live, filtered views of tasks across the vault.
Query Block Syntax
```tasks
not done
due before tomorrow
sort by priority
```
Each line is a separate instruction. All filter lines must match (implicit AND). Queries are case-insensitive except boolean operators (AND, OR, NOT must be UPPERCASE — lowercase is silently ignored). Add explain to any query to debug how Tasks interprets it.
Common Patterns
Overdue tasks:
```tasks
not done
due before today
sort by due
```
Due this week, grouped by file:
```tasks
not done
due this week
group by filename
sort by due
```
High priority:
```tasks
not done
(priority is highest) OR (priority is high)
sort by due
```
Exclude folders:
```tasks
not done
(folder does not include Templates) AND (folder does not include Archive)
sort by due
```
Backlog (no dates):
```tasks
not done
no due date
no scheduled date
sort by path
limit 20
```
These cover the most common cases. For anything more complex — date ranges, custom scripting, regex filters, layout options — read the reference files below.
Overriding the Global Query
The Tasks plugin has a globalQuery setting (Settings → Tasks → Global query) that prepends to every query block. To run a block without it — for example a "show everything" view, or to look at items the user has globally hidden — add ignore global query as the first line:
```tasks
ignore global query
not done
group by filename
```
This disables the entire globalQuery for that block. Selective override of individual lines is not supported — it's all or nothing. Use this when you specifically want to surface tasks the global filter normally hides (e.g. items tagged #wishlist or #learning in frontmatter).
Boolean Filters
Combine multiple conditions on a single line with operators:
What ships with it
2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 108 lines · 89 tokens per session scan A 487a34bd9984
obsidian-tasks-query is a skill published in the GitHub repository lexbritvin/obsidian-skills-pack (2 stars, last pushed 5d ago), licensed MIT. It adds 89 tokens to every session and 803 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
obsidian
Obsidian vault management — create notes, backlinks, tags, and Dataview queries via file operations.
obsidian
Operational skill for Claude to automate Obsidian vaults via URI schemes, Templater/Dataview patterns, Markdown structure, and local plugin workflows.
gtd-evening
A guided evening routine for a GTD task system, where GTD means sorting work into clear next actions, waiting items, and projects. It reviews the day, records results, and tidies unfinished work.
gtd-alignment
A monthly goal-checking and coaching routine based on the user's stated strategy, values, and personal patterns. It compares time spent and actions taken with the goals the user says matter most.
gtd-inbox
A guided process for emptying a GTD inbox, where an inbox is a temporary holding place for uncategorized tasks and ideas. It examines each item and helps decide whether it belongs in actions, projects, waiting items, someday items, areas, or reference notes.
gtd-review
A guided weekly review for a GTD system, where GTD is a method for keeping tasks, projects, waiting items, and reference material organized. It prepares a review note from recent work, journal entries, and, when available, calendar events.