소스 정보
- 저장소
- HybridAIOne/hybridclaw
- 최근 소스 활동
- 2026년 4월 8일 07:22
- 감지된 SKILL.md 언어
- 영어
- 스타
- 132
- 포크
- 12
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/HybridAIOne/hybridclaw --skill obsidian명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Read, send, react to, edit, pin, and thread Discord messages with HybridClaw's `message` tool.
Work with Lexware Office contacts, products, invoices, quotations, bookkeeping vouchers, receipts, payment status, and guarded invoice, quotation, or expense writes through the Public API.
Expose HybridClaw as a custom Alexa skill and prepare guarded Alexa smart-home/device control payloads without exposing Amazon credentials.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | obsidian |
| description | Read, search, organize, and create notes in the Obsidian vault. |
| user-invocable | true |
| metadata | {"hybridclaw":{"category":"memory","short_description":"Obsidian vault notes.","tags":["obsidian","markdown","notes","vault"],"related_skills":["notion","project-manager","write-blog-post"]}} |
Obsidian vaults are normal folders on disk. Notes are usually *.md. Do not
touch .obsidian/, *.canvas files, or plugin data unless the user explicitly
asks.
*.md.obsidian/*.canvasResolve the vault path first. Use this order:
MEMORY.mdOBSIDIAN_VAULT_PATHobsidian-cli print-default --path-only~/Library/Application Support/obsidian/obsidian.json
Use the vault with "open": true.~/Documents/Obsidian Vault~/Documents/Obsidian~/Library/Mobile Documents/iCloud~md~obsidian/DocumentsDo not treat the current workspace as the vault unless the user explicitly says
so, the workspace contains .obsidian/, or Obsidian's config points there.
If the resolved vault came from steps 3-6, tell the user which path you found and ask for confirmation before making write changes. For read-only discovery or search, you may proceed, but note the source of the vault path.
If you find a stable, unambiguous vault path, save a short fact to MEMORY.md,
for example Obsidian vault: /absolute/path/to/vault. Do not save ambiguous or
temporary vaults.
Assume:
VAULT="/absolute/path/to/vault"
Prefer obsidian-cli when available for vault-aware search and safe moves.
Otherwise use the shell commands below.
Pick default vault:
obsidian-cli print-default --path-only
printenv OBSIDIAN_VAULT_PATH
cat "$HOME/Library/Application Support/obsidian/obsidian.json"
sed -n '1,220p' "$VAULT/Folder/Note.md"
This is a bounded first read. If the note is longer than 220 lines, say so
and continue with a wider or full read instead of pretending you saw the
whole file.rg --files "$VAULT" -g '*.md'obsidian-cli search "keyword"
obsidian-cli search-content "keyword"
Shell fallback:
rg --files "$VAULT" -g '*.md' | rg -i 'keyword'
rg -n --glob '*.md' 'keyword' "$VAULT"obsidian-cli create "Folder/New note" --content "# Title"
Shell fallback:
set -C && printf '# Title\n' > "$VAULT/Folder/New note.md"; set +Cprintf '\nNew content\n' >> "$VAULT/Folder/Existing note.md"obsidian-cli move "Old Path/Note" "New Path/Note"
Shell fallback:
mv -n "$VAULT/Old Path/Note.md" "$VAULT/New Path/Note.md"
If you move manually, search for and fix stale links before finishing.obsidian-cli delete "Path/Note"
Shell fallback:
rm "$VAULT/Path/Note.md"Wikilinks:
[[Note Name]] when nearby notes use wikilinks