obsidian-cli — for Claude Code obsidian-cli, Study-Notes, community, for Claude Code, ide skills, obsidian, obsidian help, Quote values with spaces, interact, running

v1.0.0

Sobre este Skill

Perfeito para Assistente de Codificação de IA que precisam de gerenciamento de notas automatizado e capacidades de criação de conteúdo com integração do Obsidian. Resumo localizado: Interact with Obsidian vaults using the Obsidian CLI to read, create, search, and manage notes, tasks, properties, and more. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Recursos

Use the obsidian CLI to interact with a running Obsidian instance. Requires Obsidian to be open.
Run obsidian help to see all available commands. This is always up to date. Full docs
Parameters take a value with =. Quote values with spaces:
obsidian create name="My Note" content="Hello world"
Flags are boolean switches with no value:

# Tópicos principais

Treasoni Treasoni
[4]
[0]
Atualizado: 3/12/2026

Skill Overview

Start with fit, limitations, and setup before diving into the repository.

Perfeito para Assistente de Codificação de IA que precisam de gerenciamento de notas automatizado e capacidades de criação de conteúdo com integração do Obsidian. Resumo localizado: Interact with Obsidian vaults using the Obsidian CLI to read, create, search, and manage notes, tasks, properties, and more. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Por que usar essa habilidade

Habilita agentes a automatizar tarefas de fluxo de trabalho, simplificar o gerenciamento de notas e melhorar as experiências de codificação de IA usando o Obsidian CLI, com recursos como interação de linha de comando e criação de notas parametrizadas, suportando flags e valores citados para

Melhor para

Perfeito para Assistente de Codificação de IA que precisam de gerenciamento de notas automatizado e capacidades de criação de conteúdo com integração do Obsidian.

Casos de Uso Práticos for obsidian-cli

Automatizar a criação de notas com nomes e conteúdo personalizados
Gerar notas com parâmetros e flags específicos
Integrar o Obsidian CLI com assistentes de codificação de IA para fluxos de trabalho otimizados

! Segurança e Limitações

  • Requer que o Obsidian esteja aberto
  • Limitado à interação com a instância do Obsidian

About The Source

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Demo Labs

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ e etapas de instalação

These questions and steps mirror the structured data on this page for better search understanding.

? Perguntas frequentes

O que é obsidian-cli?

Perfeito para Assistente de Codificação de IA que precisam de gerenciamento de notas automatizado e capacidades de criação de conteúdo com integração do Obsidian. Resumo localizado: Interact with Obsidian vaults using the Obsidian CLI to read, create, search, and manage notes, tasks, properties, and more. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Como instalar obsidian-cli?

Execute o comando: npx killer-skills add Treasoni/Study-Notes. Ele funciona com Cursor, Windsurf, VS Code, Claude Code e mais de 19 outros IDEs.

Quais são os casos de uso de obsidian-cli?

Os principais casos de uso incluem: Automatizar a criação de notas com nomes e conteúdo personalizados, Gerar notas com parâmetros e flags específicos, Integrar o Obsidian CLI com assistentes de codificação de IA para fluxos de trabalho otimizados.

Quais IDEs são compatíveis com obsidian-cli?

Esta skill é compatível com Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use a CLI do Killer-Skills para uma instalação unificada.

obsidian-cli tem limitações?

Requer que o Obsidian esteja aberto. Limitado à interação com a instância do Obsidian.

Como instalar este skill

  1. 1. Abra o terminal

    Abra o terminal ou linha de comando no diretório do projeto.

  2. 2. Execute o comando de instalação

    Execute: npx killer-skills add Treasoni/Study-Notes. A CLI detectará sua IDE ou agente automaticamente e configurará a skill.

  3. 3. Comece a usar o skill

    O skill já está ativo. Seu agente de IA pode usar obsidian-cli imediatamente no projeto atual.

! Source Notes

This page is still useful for installation and source reference. Before using it, compare the fit, limitations, and upstream repository notes above.

Upstream Repository Material

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Upstream Source

obsidian-cli

Install obsidian-cli, an AI agent skill for AI agent workflows and automation. Explore features, use cases, limitations, and setup guidance.

SKILL.md
Readonly
Upstream Repository Material
The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.
Upstream Source

Obsidian CLI

Use the obsidian CLI to interact with a running Obsidian instance. Requires Obsidian to be open.

Command reference

Run obsidian help to see all available commands. This is always up to date. Full docs: https://help.obsidian.md/cli

Syntax

Parameters take a value with =. Quote values with spaces:

bash
1obsidian create name="My Note" content="Hello world"

Flags are boolean switches with no value:

bash
1obsidian create name="My Note" silent overwrite

For multiline content use \n for newline and \t for tab.

File targeting

Many commands accept file or path to target a file. Without either, the active file is used.

  • file=<name> — resolves like a wikilink (name only, no path or extension needed)
  • path=<path> — exact path from vault root, e.g. folder/note.md

Vault targeting

Commands target the most recently focused vault by default. Use vault=<name> as the first parameter to target a specific vault:

bash
1obsidian vault="My Vault" search query="test"

Common patterns

bash
1obsidian read file="My Note" 2obsidian create name="New Note" content="# Hello" template="Template" silent 3obsidian append file="My Note" content="New line" 4obsidian search query="search term" limit=10 5obsidian daily:read 6obsidian daily:append content="- [ ] New task" 7obsidian property:set name="status" value="done" file="My Note" 8obsidian tasks daily todo 9obsidian tags sort=count counts 10obsidian backlinks file="My Note"

Use --copy on any command to copy output to clipboard. Use silent to prevent files from opening. Use total on list commands to get a count.

Plugin development

Develop/test cycle

After making code changes to a plugin or theme, follow this workflow:

  1. Reload the plugin to pick up changes:
    bash
    1obsidian plugin:reload id=my-plugin
  2. Check for errors — if errors appear, fix and repeat from step 1:
    bash
    1obsidian dev:errors
  3. Verify visually with a screenshot or DOM inspection:
    bash
    1obsidian dev:screenshot path=screenshot.png 2obsidian dev:dom selector=".workspace-leaf" text
  4. Check console output for warnings or unexpected logs:
    bash
    1obsidian dev:console level=error

Additional developer commands

Run JavaScript in the app context:

bash
1obsidian eval code="app.vault.getFiles().length"

Inspect CSS values:

bash
1obsidian dev:css selector=".workspace-leaf" prop=background-color

Toggle mobile emulation:

bash
1obsidian dev:mobile on

Run obsidian help to see additional developer commands including CDP and debugger controls.

Habilidades Relacionadas

Looking for an alternative to obsidian-cli or another community skill for your workflow? Explore these related open-source skills.

Ver tudo

openclaw-release-maintainer

Logo of openclaw
openclaw

Resumo localizado: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

widget-generator

Logo of f
f

Resumo localizado: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor, and

flags

Logo of vercel
vercel

Resumo localizado: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Navegador

pr-review

Logo of pytorch
pytorch

Resumo localizado: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
Desenvolvedor