Quick Start
Get productive with PATAPIM in just a few minutes. This guide covers the essentials to start developing with Claude Code.
First Launch
When you first launch PATAPIM, you’ll see:
- Sidebar on the left with project management, file tree, and settings
- Terminal area in the center where your terminals will appear
- Status bar at the bottom showing connection status and shortcuts
Creating a Project
- Click the Projects button in the sidebar (or press Ctrl+P)
- Click Add Project
- Select a folder on your system
- Give your project a name
- Click Create
Your project will now appear in the sidebar, and the file tree will show your project’s files.
Opening a Terminal
PATAPIM supports up to 9 terminals in a grid layout:
- New terminal: Press
Ctrl+Shift+T(orCmd+Shift+Ton macOS) - Switch terminals: Press
Ctrl+1throughCtrl+9to jump to a specific terminal - Close terminal: Press
Ctrl+Shift+Wor click the X button on the terminal tab
The terminal opens in your project’s root directory by default.
Running Claude Code
PATAPIM has deep integration with Claude Code CLI:
Quick Ask (Ctrl+K)
Press Ctrl+K (or Cmd+K on macOS) to open the Claude Code quick ask dialog:
- Type your question or request
- Press Enter
- Claude’s response appears in the terminal
Example: “Create a Python script that reads a CSV file”
Full Claude Code Session
Run Claude Code directly in any terminal:
claude
This starts an interactive session where you can have a conversation with Claude about your code.
Basic Navigation
Sidebar
- Projects: Manage your projects (Ctrl+P)
- File Tree: Browse and open files (click to open in your default editor)
- Tasks: View and manage tasks from tasks.json (Ctrl+Shift+B)
- Settings: Configure PATAPIM preferences
File Tree
- Click any file to open it in your default editor
- Right-click for context menu (open folder, reveal in explorer, etc.)
- Use the search bar to filter files
Terminal Grid
- Drag terminal tabs to reorder them
- Click the grid icon to change layout (1x1, 2x2, 3x3)
- Each terminal runs independently
Essential Keyboard Shortcuts
| Shortcut | Action |
|---|---|
Ctrl+Shift+T | Open new terminal |
Ctrl+Shift+W | Close current terminal |
Ctrl+K | Claude Code quick ask |
Ctrl+1-9 | Switch to terminal 1-9 |
Ctrl+P | Open projects panel |
Ctrl+Shift+B | Open tasks panel |
Ctrl+, | Open settings |
Ctrl+Alt+M | Toggle voice dictation |
Replace Ctrl with Cmd on macOS
Working with Claude Code
Here are some common workflows:
Ask Claude for help
# Quick ask with Ctrl+K
"How do I read a JSON file in Python?"
# Or in a full session
claude
> Read the config.json file and explain its structure
Generate code
claude
> Create a React component for a login form with email and password fields
Debug code
claude
> This script is giving me an error, can you help debug it?
Refactor code
claude
> Refactor this function to use async/await instead of promises
Voice Dictation
PATAPIM includes voice dictation powered by Whisper:
- Press
Ctrl+Alt+Mto start recording - Speak your command or question
- Press
Ctrl+Alt+Magain to stop and transcribe - The text appears in the active terminal or Claude Code prompt
Great for hands-free coding or when you’re away from the keyboard.
Remote Access
PATAPIM can be accessed remotely via WebSocket and Cloudflare tunnels:
- Go to Settings > Remote Access
- Enable remote access
- Copy the provided URL
- Open the URL on any device with a web browser
- Authenticate with PassKey
Your terminals, file tree, and Claude Code integration are accessible from anywhere.
Next Steps
Now that you’re familiar with the basics:
- Explore System Requirements to optimize performance
- Check out the Features Guide to learn about advanced capabilities
- Read about Task Management to organize your work
- Learn about Plugin System to extend PATAPIM
Tips for Productivity
- Use keyboard shortcuts to navigate quickly
- Keep related terminals in a grid layout for comparison
- Use Claude Code for repetitive tasks (generating boilerplate, writing tests)
- Enable voice dictation when documenting your code
- Set up remote access to continue work from anywhere
- Leverage the task management system to track TODOs
Happy coding with PATAPIM and Claude Code!