query

star 200

Query data from this vault. USE WHEN user asks about projects, clients, tasks, daily notes. Use grep to extract frontmatter - do NOT read full files.

ArtemXTech By ArtemXTech schedule Updated 1/8/2026

name: query description: Query data from this vault. USE WHEN user asks about projects, clients, tasks, daily notes. Use grep to extract frontmatter - do NOT read full files.

Query Skill

IMPORTANT

Use grep to extract frontmatter. Do NOT read full files.

Projects

grep -h "^status:\|^priority:\|^deadline:" Projects/*.md

Or per-file with filename:

grep -l "" Projects/*.md | while read f; do
  echo "=== $(basename "$f" .md) ==="
  grep "^status:\|^priority:\|^deadline:" "$f"
done

Present as table:

Project Status Priority Deadline

Clients

grep -l "" Clients/*.md | while read f; do
  echo "=== $(basename "$f" .md) ==="
  grep "^stage:\|^company:\|^next_action:" "$f"
done

Present as table:

Client Company Stage Next Action

Tasks

curl -s "http://127.0.0.1:8090/api/tasks"

Daily Notes

ls -t Daily/*.md | head -5 | while read f; do
  echo "=== $(basename "$f" .md) ==="
  grep "^mood:\|^energy:\|^sleep_quality:" "$f"
done

Output

Always present results as markdown table.

Install via CLI
npx skills add https://github.com/ArtemXTech/claude-code-obsidian-starter --skill query
Repository Details
star Stars 200
call_split Forks 43
navigation Branch main
article Path SKILL.md
More from Creator