query
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.
Packaged view
This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.
Install command
npx @skill-hub/cli install artemxtech-claude-code-obsidian-starter-query
Repository
Skill path: .claude/skills/query
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.
Open repositoryBest for
Primary workflow: Analyze Data & AI.
Technical facets: Full Stack, Data / AI.
Target audience: everyone.
License: Unknown.
Original source
Catalog source: SkillHub Club.
Repository owner: ArtemXTech.
This is still a mirrored public skill entry. Review the repository before installing into production workflows.
What it helps with
- Install query into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
- Review https://github.com/ArtemXTech/claude-code-obsidian-starter before adding query to shared team environments
- Use query for development workflows
Works across
Favorites: 0.
Sub-skills: 0.
Aggregator: No.
Original source / Raw SKILL.md
--- 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 ```bash grep -h "^status:\|^priority:\|^deadline:" Projects/*.md ``` Or per-file with filename: ```bash 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 ```bash 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 ```bash curl -s "http://127.0.0.1:8090/api/tasks" ``` ## Daily Notes ```bash 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.