소스 정보
- 저장소
- Sidiora-Labs/ion-agent
- 최근 소스 활동
- 2026년 7월 26일 10:19
- 감지된 SKILL.md 언어
- 영어
- 스타
- 11
- 포크
- 2
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Sidiora-Labs/ion-agent --skill obsidian명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | obsidian |
| description | Read, search, create, and edit notes in the Obsidian vault. |
| platforms | ["linux","macos","windows"] |
This skill handles filesystem-level Obsidian vault operations: reading notes, listing notes, searching note files, creating notes, appending content, and adding wikilinks.
Determine and use a known or resolved vault path before calling any file tools.
The established vault-path convention relies on the OBSIDIAN_VAULT_PATH environment variable, for example from ${ION_HOME:-~/.ion}/.env. If that variable is unset, fall back to ~/Documents/Obsidian Vault.
File tools do not expand shell variables. Avoid passing paths containing $OBSIDIAN_VAULT_PATH to read_file, write_file, patch, or search_files; resolve the vault path first and provide a concrete absolute path. Vault paths may include spaces, which is another reason to prefer file tools over shell commands.
If the vault path is unknown, terminal is fine for resolving OBSIDIAN_VAULT_PATH or verifying whether the fallback path exists. Once the path is confirmed, switch to file tools.
Use read_file with the resolved absolute path to the note. This is preferable to cat since it provides line numbers and pagination.
Use search_files with target: "files" and the resolved vault path. This is preferable to find or ls.
pattern: "*.md" under the vault path.Use search_files for both filename and content searches. This is preferable to grep, find, or ls.
search_files with target: "files" and a filename pattern.search_files with target: "content", the content regex as pattern, and file_glob: "*.md" when you want to restrict matches to markdown notes.Use write_file with the resolved absolute path and the full markdown content. This is preferable to shell heredocs or echo since it avoids shell quoting issues and returns structured results.
Prefer a native file-tool workflow when it's practical:
read_file.patch for an anchored append when there is stable context, such as adding a section after an existing heading or appending before a known trailing block.write_file when rewriting the whole note is clearer than constructing a fragile patch.For an anchored append with patch, replace the anchor with the anchor plus the new content.
For a simple append with no stable context, terminal is acceptable if it's the clearest safe option.
Use patch for focused note changes when the current content provides stable context. This is preferable to shell text rewriting.
Obsidian connects notes using [[Note Name]] syntax. When creating notes, use these to link related content.