{"id":27778823,"url":"https://github.com/wrale/obsidian-plugin-sync","last_synced_at":"2026-04-25T21:33:15.869Z","repository":{"id":290080749,"uuid":"973307315","full_name":"wrale/obsidian-plugin-sync","owner":"wrale","description":"A tool for syncing Obsidian plugin development files to your Obsidian vault","archived":false,"fork":false,"pushed_at":"2025-04-26T18:14:14.000Z","size":8,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-30T08:43:28.083Z","etag":null,"topics":["obsidian","obsidian-plugin","obsidian-plugin-development"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wrale.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-26T17:52:22.000Z","updated_at":"2025-04-28T20:58:22.000Z","dependencies_parsed_at":"2025-04-26T19:32:21.874Z","dependency_job_id":null,"html_url":"https://github.com/wrale/obsidian-plugin-sync","commit_stats":null,"previous_names":["wrale/obsidian-plugin-sync"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/wrale/obsidian-plugin-sync","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wrale%2Fobsidian-plugin-sync","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wrale%2Fobsidian-plugin-sync/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wrale%2Fobsidian-plugin-sync/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wrale%2Fobsidian-plugin-sync/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wrale","download_url":"https://codeload.github.com/wrale/obsidian-plugin-sync/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wrale%2Fobsidian-plugin-sync/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32278249,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-25T18:29:39.964Z","status":"ssl_error","status_checked_at":"2026-04-25T18:29:32.149Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["obsidian","obsidian-plugin","obsidian-plugin-development"],"created_at":"2025-04-30T08:28:39.757Z","updated_at":"2026-04-25T21:33:15.854Z","avatar_url":"https://github.com/wrale.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Obsidian Plugin Sync\n\nA command-line tool for syncing Obsidian plugin development files to your Obsidian vault.\n\n## Features\n\n- Syncs your plugin's development files to your Obsidian vault with a single command\n- Automatically detects plugin ID from manifest.json\n- Optional build step before syncing\n- Watch mode for automatic syncing on file changes\n- No dependencies for basic functionality (watch mode requires the `watchdog` package)\n\n## Installation\n\n### Option 1: Clone and use directly\n\n```bash\ngit clone https://github.com/wrale/obsidian-plugin-sync.git\ncd obsidian-plugin-sync\nchmod +x obsidian-plugin-sync.py\n```\n\n### Option 2: Install to ~/bin\n\n```bash\ncurl -o ~/bin/obsidian-plugin-sync.py https://raw.githubusercontent.com/wrale/obsidian-plugin-sync/main/obsidian-plugin-sync.py\nchmod +x ~/bin/obsidian-plugin-sync.py\n```\n\n## Usage\n\n### Basic Usage\n\n```bash\n./obsidian-plugin-sync.py --source /path/to/plugin/dev --vault /path/to/vault\n```\n\n### Build Before Syncing\n\n```bash\n./obsidian-plugin-sync.py --source /path/to/plugin/dev --vault /path/to/vault --build\n```\n\n### Specify Plugin ID Manually\n\n```bash\n./obsidian-plugin-sync.py --source /path/to/plugin/dev --vault /path/to/vault --plugin-id your-plugin-id\n```\n\n### Watch for Changes\n\nFirst, install the watchdog package:\n\n```bash\npip install watchdog\n```\n\nThen run with the `--watch` flag:\n\n```bash\n./obsidian-plugin-sync.py --source /path/to/plugin/dev --vault /path/to/vault --build --watch\n```\n\nThis will continuously watch for changes in your plugin files and automatically sync them to your Obsidian vault.\n\n## How It Works\n\nThe tool performs the following steps:\n\n1. Reads the plugin ID from manifest.json (or uses the one provided)\n2. Optionally builds the plugin using `npm run build`\n3. Copies the necessary files (main.js, manifest.json, styles.css) to your Obsidian vault's plugins directory\n4. In watch mode, it continuously monitors for changes and repeats steps 2-3 when files are modified\n\n## Benefits Over Manual File Copying\n\n- **Time-saving**: No need to manually navigate directories and copy files\n- **Consistency**: Always copies all required files\n- **Automation**: Combined build and copy process\n- **Continuous development**: Watch mode makes the development cycle faster\n\n## Requirements\n\n- Python 3.6 or higher\n- For watch mode: `watchdog` package\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwrale%2Fobsidian-plugin-sync","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwrale%2Fobsidian-plugin-sync","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwrale%2Fobsidian-plugin-sync/lists"}