šŸ’” Tips & Tricks

Use Recent for Active Work

# Working on multiple projects?
pxo recent

# Shows only what you've touched recently
# Much faster than scrolling through all projects

Quick Open for Speed

# If you remember the name, use open
pxo open my-app

# Fuzzy search helps with partial names
pxo open dash  # finds "client-dashboard"

Organize Your Projects

# Keep projects organized
~/projects/clients/
~/projects/personal/
~/projects/learning/

# Create projects in the right place
cd ~/projects/clients
pxo

Review Project Details

šŸ“– Usage Examples

Example 1: Create React App

$ pxo

? Select project type: React + Vite
? Enter project name: my-landing-page
? Enter directory: ~/projects
? Select IDE: VS Code

āœ“ Project created successfully!
āœ“ Project added to tracking

# Start developing:
cd ~/projects/my-landing-page
npm run dev

Example 2: Browse Your Projects

$ pxo list

šŸ“¦ Your Projects (3)

āÆ my-landing-page    React+Vite    just now
  my-nextjs-app      Next.js       2 days ago
  old-angular-app    Angular       2 weeks ago

# Select a project to:
# - Open in your IDE
# - Copy the path
# - Remove from tracking
# - View details

Example 3: Quick Access Workflow

# Morning: See what you worked on recently
$ pxo recent
# → Select and open your active project

# Later: Quick open by name
$ pxo open client-dashboard
āœ“ Opened client-dashboard

# End of day: Browse all projects
$ pxo list
# → Review and organize
pxo list
# → Select project → Show details

# See full information:
# - Complete path
# - Creation date
# - Framework type
# - Default IDE