Powered by Claude AI

Your AI Companion
That Lives on Your Desktop

Nana AI brings Claude directly to your workflow with overlay mode, intelligent screen capture, and specialized AI personas. No more tab switching—just pure productivity.

Ask Nana

Unmatched productivity

Experience seamless AI integration with features designed to enhance your workflow

Overlay Mode

Float Nana above any application. Your AI assistant is always just a hotkey away.

Ask Nana

Screen Capture

Share what you see instantly with intelligent context understanding.

AI Personas

Specialized assistants for every task and workflow.

Quick Actions

Execute commands with natural language

Context Memory

Remembers your preferences and conversations

Cross-Platform

Works on macOS, Windows, and Linux

AI Personas

Meet Your
Specialized AI Assistants

Switch between different AI personas optimized for specific tasks and workflows

🧑‍💻

Code Master

Expert programmer and debugging companion

Code ReviewDebuggingArchitectureBest Practices
✍️

Writing Coach

Creative and technical writing assistant

Content CreationEditingStyle GuideGrammar
🔍

Research Assistant

Information gathering and analysis expert

Data AnalysisFact CheckingSynthesisCitations
🎨

Creative Partner

Brainstorming and creative problem solver

IdeationDesign ThinkingInnovationConcepts
📚

Study Buddy

Learning and education companion

ExplanationsPracticeMemorizationTesting
📊

Business Analyst

Strategic business and market insights

StrategyAnalysisPlanningMetrics
Scroll to explore more personas →
Use Cases

See Nana AI
In Action

Explore real-world examples of how Nana AI enhances your daily workflow

Before Nana's Review

function processData(data) {
  let result = [];
  for (let i = 0; i < data.length; i++) {
    if (data[i].active == true) {
      result.push(data[i].value * 2);
    }
  }
  return result;
}

After Nana's Suggestions

const processData = (data) => {
  return data
    .filter(item => item.active === true)
    .map(item => item.value * 2);
};

// Nana: "Used functional approach with filter/map
// for better readability and performance"

Email Draft Assistant

You: "Help me write a follow-up email after our product demo"

Nana: Here's a professional follow-up email:

Subject: Thank You - Next Steps After Our Demo

Hi [Name],

Thank you for taking the time to explore [Product] with me today. I enjoyed our discussion about how our solution can help streamline your team's workflow.

As discussed, our key features that align with your needs include:
• Automated reporting saving 5+ hours weekly
• Real-time collaboration tools
• Custom integrations with your existing stack

I'd be happy to schedule a follow-up call to address any questions and discuss implementation timeline.

Best regards,
[Your name]

Sales Data Analysis

You: "Analyze this quarter's sales performance"

Nana's Analysis:

+23%

Revenue Growth

87%

Customer Retention

156

New Customers

Key Insights:
• Northeast region showing strongest growth (+31%)
• Enterprise segment driving 68% of new revenue
• Product bundles have 2.3x higher conversion rate
• Recommend focusing on enterprise upsells next quarter

Concept Explanation

You: "Explain recursion like I'm a beginner"

Nana:

Imagine you're looking for your keys in a house with many rooms. Recursion is like having a simple strategy:

  1. Check the current room
  2. If keys aren't here, go to the next room and repeat step 1
  3. If you find the keys (or run out of rooms), stop

In code, it looks like this:

function searchRoom(room) {
  if (room.hasKeys) {
    return "Found keys!";
  }
  if (room.nextRoom) {
    return searchRoom(room.nextRoom);
  }
  return "No keys found";
}

The function calls itself with a new room each time - that's recursion!

Workflow Automation

You: "Create a script to organize my downloads folder"

Nana: Here's a Python script to organize your downloads:

import os
import shutil
from pathlib import Path

# Define file categories
categories = {
    'Images': ['.jpg', '.png', '.gif', '.svg'],
    'Documents': ['.pdf', '.doc', '.docx', '.txt'],
    'Videos': ['.mp4', '.avi', '.mov', '.mkv'],
    'Archives': ['.zip', '.rar', '.tar', '.gz']
}

downloads = Path.home() / 'Downloads'

for file in downloads.iterdir():
    if file.is_file():
        # Find category for file
        for category, extensions in categories.items():
            if file.suffix.lower() in extensions:
                # Create category folder if needed
                target = downloads / category
                target.mkdir(exist_ok=True)
                
                # Move file
                shutil.move(str(file), str(target / file.name))
                print(f"Moved {file.name} to {category}/")
                break

Save as organize_downloads.py and run with: python organize_downloads.py

Getting Started

How It Works

Get up and running with Nana AI in just three simple steps

1

Download & Install

Get Nana AI for your platform. Quick installation with one-click setup.

2

Configure Your Assistant

Choose AI personas, set keyboard shortcuts, and customize your preferences.

3

Start Working Smarter

Use overlay mode to access Nana instantly. Your AI assistant is always a hotkey away.

Available for macOS, Windows, and Linux

Ready to Transform
Your Workflow?

Join thousands of professionals using Nana AI to work smarter, not harder. Your AI assistant is just a download away.

No credit card required
Works offline
Privacy-first

50K+

Active Users

4.9/5

User Rating

3

Platforms