What You’ll Accomplish
- Download the starter workspace
- Install Claude Code
- Run your first command
Part 1: Get the Starter Kit
We’ll create a folder on your computer where:
- You store all your notes and tasks (like Notion, but local)
- Claude Code can read and edit everything
- You run commands like
/daily - Delegate tasks to Claude
Download The Workspace
First, open your terminal:
- Mac: Search for “Terminal” in Spotlight (Cmd+Space)
- Windows: Open PowerShell (search in Start menu)
- Linux: Open your terminal app (Ctrl+Alt+T on most distros)
Then copy and paste these commands:
# Navigate to Documents
cd ~/Documents
# Download the starter workspace
curl -L https://github.com/derek-larson14/feed-the-beast/archive/main.zip -o starter.zip
# Extract and clean up
unzip starter.zip && rm starter.zip
# Rename to claude-workspace
mv feed-the-beast-main claude-workspace
# Enter the workspace
cd claude-workspace
# Install Claude Sidebar plugin
curl -sL https://github.com/derek-larson14/obsidian-claude-sidebar/archive/refs/heads/main.tar.gz | tar -xz -C .obsidian/plugins && mv .obsidian/plugins/obsidian-claude-sidebar-main .obsidian/plugins/claude-sidebar
# List files to confirm
lsYou should see files like roadmap.md, tasks.md, etc. You can also find it in Finder → Documents → claude-workspace.
Feel free to rename the claude-workspace folder to whatever you wish.
Part 2: Install the Software
curl -fsSL https://claude.ai/install.sh | bashIf you run into issues, see Claude Quickstart
Part 3: Set Up Obsidian
Your workspace is a folder with files in it. Obsidian is how you’ll view and edit them.
Think of Obsidian as a local Notion - it’s a nice interface wrapped around a folder that lives on your computer. The files are plain text (markdown), so Claude Code can read and edit them.
Install
- Download Obsidian Here
- Run the installer
- Open Obsidian
- Click “Open folder as vault”

- Navigate to your claude-workspace (in Documents)
Once opened, you’ll see your files in the sidebar:

The starter kit includes pre-configured plugins. When prompted, click “Trust author and enable plugins.”

Open Claude Sidebar
Click the bot icon in the left sidebar:
![]()
Or use Command Palette (Cmd+P) → “Open Claude Code”:

We built a plugin that embeds Claude Code directly into Obsidian - no terminal needed after setup. The first time you open it, you’ll be prompted to log in or create an account (see Part 4).

Prefer the Terminal?
Here’s a quick primer.
The terminal is a text-based way to navigate your computer and run programs.
Think of it like this:
- Finder/Explorer = Visual way to browse folders (point and click)
- Terminal = Text-based way to do the same thing (type commands)
| Command | What it does | Visual equivalent |
|---|---|---|
cd folder-name | Enter a folder | Double-click folder |
cd .. | Go back one level | Click “Back” button |
ls (Mac/Linux) or dir (Windows) | List what’s here | Looking at folder contents |
pwd | Show current location | Looking at the path bar |
Example:

Once you’re in the workspace, type claude and hit Enter to start Claude Code (the first time, you’ll be prompted to log in or create an account — see Part 4):
Finding Your Workspace Again:
Click the terminal button in the Obsidian sidebar:
![]()
Or run:
cd ~/Documents/claude-workspace && claudePart 4: Log In to Claude
The first time you open the sidebar, you’ll be prompted to log in.
Select your login method (Recommended: 1. Claude account with subscription)

You will be prompted to log in or create a Claude account.

You’ll need either:
- Claude Pro ($20/month)
- Claude Max ($100+/month)
Which one? I recommend starting with the $20 / month Pro plan. If you hit usage limits you can always upgrade
Part 5: Your First Command
In the sidebar, type:
Example output:
What happened?
When you type /daily, here’s what happens:
- Claude looks for a file called
.claude/commands/daily.md - Claude reads the instructions in that file
- Claude follows those instructions
A command is just a markdown file. You can edit it, create new ones, or delete ones you don’t use. You’re not limited to pre-built commands - type any request you can imagine.
Here’s what the daily.md command file looks like:

Basic Commands to Try
Shows usage, settings, configuration
Lists tips and commands
Part 6: The Basics
Inline Editing
Try typing a natural language request like:
Claude will read your tasks file, propose an edit, and ask for approval:

You can:
- Press Enter (Yes) to accept the edit
- Press Shift+Tab to allow all edits this session
- Press Esc to reject and give different instructions
Chatting With Your Files
You can also have a conversation with Claude about your files. Type @ and start typing a filename - Claude will autocomplete:

Try something like:
You can tag multiple files to give Claude more context:

Claude can read, compare, and reason across all your files.
When Things Go Wrong
LLMs are imperfect by nature. What works for us may break for you. When in doubt:
Undo Claude’s changes: Press ESC twice to open the rewind menu. Select which message you want to restore to:

Then choose how to restore - “Restore code and conversation” undoes both Claude’s file changes and the conversation:

Undo your own changes: Rewind only affects Claude’s edits, not changes you made manually. For those, use Obsidian’s file recovery:
- Open Command Palette (Cmd+P)
- Search “File recovery: Open local history”
- Select the file and version to restore

If you’re really stuck, email support@newyorkai.org
Checkpoint
You should now have:
- Workspace downloaded
- Claude Code installed
- Obsidian set up with Claude Sidebar
- Successfully ran /daily command