Collaborator Guide

up:: Agorideans - Dashboard
tags:: #agorideans #meta #guide
owner:: @Niko
status:: #status/wip

Meta

Meta Notes go here

Collaborator Guide

Welcome to the La Finka Digital Garden ( Obsidian Vault ). This document outlines how to set up your environment, collaborate on content, and follow best practices for contributing to this knowledge base.

Purpose

This vault is version-controlled with Git to allow multiple collaborators to work concurrently. Notes are published to a digital garden by the lead maintainer. Your role is to contribute, edit, and sync notes while maintaining vault structure and standards.


Requirements

Before beginning, install the following:


Setup Instructions

Git is best managed through the cmd-line or Terminal

1. Clone the Repository

Clone the vault repository to your local machine using Git:

git clone https://github.com/your-org/your-vault.git
cd your-vault

Open the cloned folder as a vault in Obsidian.


2. Obsidian Configuration

The .obsidian folder is tracked in Git, so your plugins and settings should be automatically configured. If not, install:

Make sure Safe Mode is off (Settings > Community Plugins).


3. Daily Workflow

Before you start working:

git pull

This ensures you’re working from the latest version.

Create or edit notes:

After you're done:

git add .
git commit -m "Brief summary of changes"
git push

Avoid committing broken links or empty notes. Keep commits meaningful and atomic.


Branching and Publishing


Frontmatter Standards

Each note should begin with:

ToDo:: Start from a template (Basic Formatting for everything or others)


Dataview Guidelines

If you're unsure how to structure a Dataview query, refer to dataview-guide.md if available. Or better yet - ask GPT to write what you want in dataviewjs as it behaves better in the digital garden.


Best Practices


Troubleshooting

Merge Conflicts

If you get a merge conflict:

git pull --rebase

Manually resolve conflicts in Obsidian or a code editor, then:

git add .
git rebase --continue

Sync Issues

If your push is rejected:

git pull --rebase
# resolve any conflicts
git push

Questions

If you're unsure about anything, contact the lead maintainer before pushing. Always pull before editing and push after making changes.

  1. Ask GPT
  2. Contact Niko

Created: 250516-16:38

Updated: 250516-16:58