Edit Anywhere
Web browser, desktop app, or phone — your changes sync everywhere.
Access your team’s wiki from Obsidian on any device. Documents sync automatically between the web-based wiki and your local Obsidian vault — edit from whichever tool you prefer.
Your team wiki runs on Outline, a collaborative wiki with a web interface. Behind the scenes, a sync service exports all wiki content as markdown files to an S3-compatible storage bucket. Obsidian connects to that bucket using a free community plugin.
Edit Anywhere
Web browser, desktop app, or phone — your changes sync everywhere.
Offline First
Documents live on your device. Edit without internet, sync when connected.
Images Included
Attachments and images sync alongside your documents and display inline.
All Devices
macOS, Windows, Linux, iOS, and Android are all supported.
No accounts to create. No subscriptions needed.
Time needed: About 5 minutes.
Install Obsidian from obsidian.md/download.
Create a vault. Open Obsidian and click “Open folder as vault.” Pick or create an empty folder with a descriptive name (e.g., Team-Wiki).
Install the Remotely Save plugin.
Configure the sync connection. Open Remotely Save settings and enter the credentials your admin gave you:
| Setting | What to enter |
|---|---|
| Choose Service | S3 or S3-compatible |
| Endpoint | Your team’s S3 endpoint URL |
| Region | us-east-1 |
| Access Key ID | From your admin |
| Secret Access Key | From your admin |
| Bucket Name | From your admin |
| S3 URL Style | Path-Style |
Set the remote prefix. Scroll down to “Change The Remote Prefix (experimental).” Type the prefix your admin gave you (this identifies which wiki to sync) and click Confirm.
Adjust three settings.
| Setting | Change to | Where |
|---|---|---|
| Use Accurate MTime | Enable | Main settings |
| Sync _ Files Or Folders | Enable | Advanced settings |
| Abort Sync If Modification % | 100 (temporarily) | Main settings |
First sync. Click “Check Connectivity” (should succeed), then click Sync Now. Wait 1-2 minutes for all documents and images to download. You should see folders appear in the left sidebar.
After the first sync, set “Abort Sync If Modification %” back to 50 as a safety guard for future syncs.
Auto-sync runs every 5 minutes while Obsidian is open. Click the Remotely Save icon to sync manually anytime.
If you and someone else edit the same page at the same time, the web wiki version wins. This is intentional — it prevents accidental overwrites. Your local edits are preserved in git version history and an admin can recover them if needed.
In practice, conflicts are rare. Most teams edit different pages at different times.
If your team has more than one wiki, create a separate Obsidian vault for each:
Switch between vaults using the vault switcher in the bottom-left corner.
If you’re a developer, you can also access the wiki as a git repo for AI-assisted editing:
# Clone the wiki repo (ask admin for the URL)git clone <your-wiki-repo-url>cd <wiki-folder>
# Use your preferred AI coding toolclaude # Claude Codecursor . # Cursorcode . # VS Code + CopilotEdits committed and pushed to the repo trigger an immediate sync back to the wiki — no waiting for the 15-minute cycle.
| Problem | Solution |
|---|---|
| ”Check Connectivity” fails | Double-check the endpoint URL, credentials, and that Path-Style is enabled |
| Sync aborts with “modification %” error | Temporarily set the threshold to 100, sync, then set back to 50 |
| Images not showing | Enable “Sync _ Files Or Folders” in Remotely Save advanced settings, then re-sync |
| Documents missing | Check that the Remote Prefix matches your wiki |
| Changes not appearing in the wiki | Obsidian edits can take up to 15 minutes to reach the wiki. Git pushes are instant. |
| Sync seems stuck | Close and reopen Obsidian, then manually trigger sync |
If you want to set up this sync pipeline for your own Outline instance, the
infrastructure and scripts are documented in the
ai-coding-env repo
under servers/outline/. The setup involves:
See servers/outline/README-SETUP.md for the full admin guide.