🔎
AutomationTypst

Query

by ArtemXTech

Query is an Automation skill for Claude Code, published by ArtemXTech in claude-code-obsidian-starter.

224 stars46 forkson ArtemXTech/claude-code-obsidian-starterAdded 2026/09/03Repository updated 2026/01/23
aiautomationclaude-codeobsidianproductivity
Install in seconds
Install Query
Copy Query into your Claude Code skills folder. Run the command in your terminal, or review the source on GitHub before installing.
terminal
npx degit https://github.com/ArtemXTech/claude-code-obsidian-starter/tree/main/.claude/skills/query ~/.claude/skills/query

Requires Node.js. Downloads this skill only — not the rest of the repository — into your Claude Code skills folder.

Without Node.js

git clone https://github.com/ArtemXTech/claude-code-obsidian-starter.git

Clones the whole repository, then copy the skill’s own directory into your skills folder yourself.

In this catalog

Source file
.claude/skills/query/SKILL.md in ArtemXTech/claude-code-obsidian-starter
Installs to
~/.claude/skills/query
Collection
One of 5 skills cataloged from this repository
Category
Automation1754 skills

What Query does

Query extracts frontmatter from Obsidian vault files to answer questions about projects, clients, tasks, and daily notes. Use it when you need a quick table from vault metadata without reading full files.

Query is cataloged under Automation on DirSkills. Query comes from a repository tagged ai, automation, claude-code, obsidian and productivity.

Documentation

README

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"

This is the opening of the README. Read the full README on GitHub.

Frequently asked about Query

  • What else does ArtemXTech publish alongside Query?

    Query is one of 5 skills that DirSkills catalogs from ArtemXTech/claude-code-obsidian-starter, the repository it ships in. Its siblings there include Client Management, Granola and Review. Each one is a separate skill with its own page in this directory, installs the same way Query does, and is maintained by ArtemXTech in that same repository. The rest of the collection is listed on the ArtemXTech/claude-code-obsidian-starter page.

  • How does Query compare to other Automation skills?

    Query ranks #1607 by stars among the 1754 Automation skills in this catalog. The most-starred ones next to it are Autonomous Loops, Autonomous Agent Harness and Automation Audit Ops. DirSkills ranks by the star count of the repository each skill ships in, so that order reflects how popular those repositories are rather than any review of Query against them. Open each page to compare what they document and how they install.