Getting Started with BearClaude
BearClaude provides a three-paned editor designed to streamline your development workflow by combining document management, markdown editing, and AI-powered code assistance in one integrated interface.The Three-Pane Interface
When you open BearClaude, you’ll see three main sections:- Left Pane: Document browser showing all markdown files in your project
- Middle Pane: Markdown editor for writing specs, plans, and documentation
- Right Pane: Claude Code terminal for AI-powered development assistance
Opening a Project
BearClaude works with project-based workflows where a project is simply a folder on your Mac.Create or Open a Project
- New Project: Create a new folder to start fresh
- Open Existing: Browse and select any existing folder on your Mac
- Recent Projects: Quickly access previously opened projects
- Scan for all markdown documents in the project directory and subdirectories
- Display them in the left pane document browser
- Start Claude Code in your project’s root directory
Working with Documents
Document Management
The left pane shows all markdown files (.md
, .mdx
) found within your project. Documents created outside of BearClaude will automatically appear here when saved to the project folder.
Creating New Documents
- Use File > New Document to create a new document in the markdown editor
- The document will immediately appear in the left pane browser
- As you edit, the document auto-saves
- If you’d like to save an open document as a new file name, use File > Save As
Markdown Editing Features
The middle pane provides a full-featured markdown editor with:## Headings
(#
,##
,###
)- Lists:
[links](https://example.com)
**Bold**
and_italic_
text- Code blocks:
View Modes
Toggle between:- Raw Text Mode: See the raw markdown syntax
- Stylized Mode: Preview formatted output while editing
Inserting selected document text in your Claude Code prompt
Edit→Insert at Cursor (⌘⇧V)
: Insert selected text as your next Claude Code prompt
Claude Code Integration
The right pane contains a Claude Code terminal that starts in your project directory, giving you AI assistance with full project context.Basic Usage
- Type any prompt or question about your project
- Reference files with
@filename
or by highlighting text and using the insert commands - Ask Claude Code to implement features, update documentation, or analyze your project
- Use
/
to access the command menu. Type/help
to see all available Claude Code commands
Project Integration Features
- Restart: Use the restart button for a fresh Claude Code session
- Open in Finder: Quick access to your project files in macOS Finder
- Open in Terminal: Launch a terminal session in your project directory
Chat History
BearClaude automatically saves your AI conversations to preserve your development history and insights:Auto-Save Features
- Automatic Saving: All Claude Code conversations are automatically saved in your project’s
.specstory
folder - Individual Files: Each conversation is saved as a separate markdown file for easy browsing, versioning, and sharing
- Background Operation: Works seamlessly without interrupting your workflow
- Complete History: Preserves your entire conversation history for future reference
- Access History: To view your autosaved chat history, switch the Documents filter to Chat History in the left pane.
Recommended Workflow
- Plan First: Use the markdown editor to write specifications, requirements, and implementation plans
- Iterate with AI: Reference your documentation in Claude Code prompts to get contextual assistance
- Review Documentation: Read and manually update your specs based on your own requirements
- Implement: Let Claude Code handle the technical implementation while you focus on planning and design
Tips for Success
- Keep your project documentation organized with clear filenames
- Use descriptive headings and structure in your markdown files
- Reference specific parts of your documentation when prompting Claude Code
- Take advantage of the integrated workflow - your specs inform your implementation, and your implementation insights can improve your specs