com um clique
obsidian-cli
Use for managing Obsidian vaults from the CLI.
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Use for managing Obsidian vaults from the CLI.
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Create, redesign, and validate polished terminal-native slide decks for Presenterm from a topic, outline, notes, codebase, or existing Markdown. Use for Presenterm presentations, Markdown slides, technical talks, live-code demos, speaker notes, custom themes, diagrams, exports, or visual and narrative review of a terminal deck.
Best practices for writing Remotion React Markup
Manage Jira projects programmatically: create epics, user stories, subtasks, sprints, and assign issues. Use when the user asks to create/update Jira issues in bulk, set up a project backlog in Jira, migrate planning from documents to Jira, or automate Jira administration.
Generates Angular code and provides architectural guidance. Trigger when creating projects, components, or services, or for best practices on reactivity (signals, linkedSignal, resource), forms, dependency injection, routing, SSR, accessibility (ARIA), animations, styling (component styles, Tailwind CSS), testing, or CLI tooling.
Use when designing, implementing, refactoring, testing, or reviewing Java, Spring Boot, Hibernate/JPA, REST APIs, batch jobs, or JVM production code with emphasis on maintainability, clean architecture, security, observability, and performance.
Build polished terminal UIs with pi-tui: overlays, dashboards, widgets, dialogs, animated components, or data visualizations. Use for any interactive terminal UI work in pi extensions or custom tools.
| name | obsidian-cli |
| description | Use for managing Obsidian vaults from the CLI. |
Use the obsidian-cli CLI to interact with a running Obsidian instance. Requires Obsidian to be open.
Run obsidian-cli help to see all available commands. This is always up to date. Full docs: https://help.obsidian.md/cli
Parameters take a value with =. Quote values with spaces:
obsidian-cli create name="My Note" content="Hello world"
Flags are boolean switches with no value:
obsidian-cli create name="My Note" silent overwrite
For multiline content use \n for newline and \t for tab.
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.mdCommands target the most recently focused vault by default. Use vault=<name> as the first parameter to target a specific vault:
obsidian-cli vault="My Vault" search query="test"
obsidian-cli read file="My Note"
obsidian-cli create name="New Note" content="# Hello" template="Template" silent
obsidian-cli append file="My Note" content="New line"
obsidian-cli search query="search term" limit=10
obsidian-cli daily:read
obsidian-cli daily:append content="- [ ] New task"
obsidian-cli property:set name="status" value="done" file="My Note"
obsidian-cli tasks daily todo
obsidian-cli tags sort=count counts
obsidian-cli 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.
After making code changes to a plugin or theme, follow this workflow:
obsidian-cli plugin:reload id=my-plugin
obsidian-cli dev:errors
obsidian-cli dev:screenshot path=screenshot.png
obsidian-cli dev:dom selector=".workspace-leaf" text
obsidian-cli dev:console level=error
Run JavaScript in the app context:
obsidian-cli eval code="app.vault.getFiles().length"
Inspect CSS values:
obsidian-cli dev:css selector=".workspace-leaf" prop=background-color
Toggle mobile emulation:
obsidian-cli dev:mobile on
Run obsidian-cli help to see additional developer commands including CDP and debugger controls.