I Built a Terminal Dashboard to Keep Track of All My Local…
    Neura MarketNeura Market/Stable Diffusion
    ChatGPTChatGPTClaudeClaudeGeminiGeminiCursorCursorGrokGrokPerplexityPerplexityStable DiffusionStable Diffusion
    DeepSeekDeepSeekCoPilotCoPilotMidjourneyMidjourney
    View All Directories
    OverviewPromptsBlogVideosGuidesCoursesCommunityModelsLoRAsComfyUI WorkflowsTrending
    Stable DiffusionBlogI Built a Terminal Dashboard to Keep Track of All My Local Projects
    Back to Blog
    I Built a Terminal Dashboard to Keep Track of All My Local Projects
    cli

    I Built a Terminal Dashboard to Keep Track of All My Local Projects

    Roie Ambulo June 3, 2026
    0 views

    A terminal dashboard that scans your local projects and shows stack, git activity, and status at a glance. Open in editor, run scripts, or launch a terminal from one TUI.


    title: I Built a Terminal Dashboard to Keep Track of All My Local Projects published: true description: A terminal dashboard that scans your local projects and shows stack, git activity, and status at a glance. Open in editor, run scripts, or launch a terminal from one TUI. tags: cli, tui, productivity, opensource

    canonical_url:

    cover_image:


    ovw • a terminal overview for your local projects

    ovw screenshot

    If you code a lot, you know how this goes. You have an idea, you spin up a project, ship it or park it, move on to the next one. Before long you've got a growing pile of repos spread across ~/dev, ~/Code, ~/Projects: each one a snapshot of a different idea. Some shipped, some abandoned after the first git commit, some you don't even remember writing.

    Even with zoxide or aliases, you still have no idea what state a project is in until you're inside it. And I didn't want a separate app just to track that.

    That's why I built ovw (short for "overview").

    What is ovw?

    ovw is a terminal dashboard for your local projects. Point it at a few directories and it scans everything: tech stacks, Git activity, running ports, scripts, and more. Shows it all in one table.

    Your filesystem and Git history stay the source of truth. ovw just reads them and organizes the view.

    What It Shows You

    The default columns are name, stack, activity, status, and note. You can show, hide, and reorder any of these with c in the TUI, or set them in config:

    columns = ["name", "stack", "manager", "scripts", "version", "ports", "branch", "updated", "activity", "status", "note"]
    

    Here's what each one gives you:

    ColumnWhat it means
    StackAuto-detected from files: React, Go, Python, SvelteKit, Astro, and 18+ more
    Managerpnpm, cargo, uv, poetry, npm, bun, and more
    ScriptsAvailable scripts without opening package.json
    VersionFrom package.json, Cargo.toml, or pyproject.toml
    BranchCurrent Git branch
    ActivityLast commit + unpushed count
    UpdatedLast file modification
    StatusAuto-tags (dirty, stale, active) plus your own labels
    PortsWhich local ports the project is running on
    NoteYour notes, or falls back to last commit message

    Every column is sortable, filterable, and searchable.

    One Place for Your Whole Dev Workflow

    The goal was never just visibility: it's cutting down the friction of context-switching. From the TUI you can:

    • r opens the Runner and run any project script directly
    • o opens the project in your editor
    • t launches a terminal at the project root
    • ctrl+p for the command palette

    No more cd project && npm run dev. Just select and go.

    You can also use it without the TUI. Jump straight to a single project:

    ovw my-project              # TUI filtered to that project
    ovw my-project --json       # JSON output for that project
    ovw my-project --open       # open it directly in your editor
    ovw .                     # quick view of the current folder
    

    Or use plain and JSON output for scripting:

    ovw --plain      # plain text table
    ovw --json       # JSON output for piping
    ovw --dirty      # only dirty projects
    ovw --stale      # only stale projects
    

    Status and Notes

    ovw automatically tags projects: dirty (uncommitted changes), stale (no activity in 30 days), active (committed today). You can also set your own:

    ovw set my-project --status parked
    ovw set my-project --note "fix check-in flow"
    ovw set my-project --pin
    ovw set my-project --script run="go run ."   # add a custom script
    

    Notes never stay empty. If you haven't written one, the detail view falls back to the last commit message or the project description from its manifest.

    Custom Fields

    Want to track client, owner, or priority? Define custom fields in config and they become columns:

    ovw set my-project --field owner=roie
    

    Keyboard Shortcuts

    All action shortcuts are customizable. In Settings > Keyboard shortcuts, or directly in config:

    [keys.actions]
    details = "d"
    terminal = "enter"
    

    Quick Start

    # macOS / Linux
    brew install --cask roie/tap/ovw
    
    # or via curl
    curl -fsSL https://raw.githubusercontent.com/roie/ovw/main/install.sh | sh
    
    # Windows
    powershell -c "irm https://raw.githubusercontent.com/roie/ovw/main/install.ps1 | iex"
    

    First launch walks you through choosing which folders to scan. After that you get the full table.

    Under the Hood

    Your filesystem is the source of truth. ovw stores only user metadata (notes, statuses, pins) in a local config file. Everything else is read live from disk on every scan. No database, no daemon, no cloud. Fast even with dozens of projects.

    Why I Built It

    Even with zoxide getting me into projects fast, I still had no idea what state anything was in. And I didn't want to maintain a separate Notion or Obsidian doc just for that. ovw started as a quick script and grew into a proper tool as I kept using it. Every feature in v1.3 exists because I personally needed it.

    It's MIT-licensed and open for ideas, issues, and contributions.

    Links

    • GitHub: github.com/roie/ovw
    • Install: brew install --cask roie/tap/ovw or the one-liner above

    If your project folders have gotten out of hand, give it a try. And if it helps, a star on GitHub goes a long way.


    Built with way too many weekend projects.

    Tags

    clituiproductivityopensource

    Comments

    More Blog

    View all
    Context bankruptcy: The case for strategic forgetting for AI Agentsai

    Context bankruptcy: The case for strategic forgetting for AI Agents

    Most of us have seen a coding agent fail to complete a task we know it can do. We just don't...

    J
    James O'Reilly
    Parallel Compliance Engine: Drive-to-Sheets Multi-Agent Orchestrationgooglecloud

    Parallel Compliance Engine: Drive-to-Sheets Multi-Agent Orchestration

    When building Generative AI applications, developers often encounter a massive bottleneck: sequential...

    A
    Aryan Irani
    Is It Ethical to Post and Ask About Circuits on Dev.to?discuss

    Is It Ethical to Post and Ask About Circuits on Dev.to?

    I’ve been thinking about sharing some electronic circuit posts on Dev.to — small circuits, DIY...

    C
    codebunny20
    The One-Click Exporter: AI Studio Antigravity, Probed to Its Limitsagents

    The One-Click Exporter: AI Studio Antigravity, Probed to Its Limits

    What nobody tells you about exporting your multi-agent prototype to a local workspace. Every...

    L
    leslysandra
    Guarding the till while autonomous data agents do the diggingagenticarchitect

    Guarding the till while autonomous data agents do the digging

    Autonomous agents are genuinely good at answering messy business questions. Give one an LLM and a set...

    S
    Sireesha Pulipati
    Return on Attention: Why AI Code Reviews Are Wearing Us Outai

    Return on Attention: Why AI Code Reviews Are Wearing Us Out

    PR volume went up, ticket quality didn't, and the gap got filled with LLMs on both sides of the review: bots reviewing, bots replying, bots occasionally arguing with bots about priorities that only existed in a teammate's head. Our CEO named the actual problem, and it's bigger than code review.

    C
    christine

    Stay up to date

    Get the latest Stable Diffusion prompts, rules, and resources delivered to your inbox weekly.

    Neura Market LogoNeura Market

    Discover the best AI prompts, plugins, and resources for Stable Diffusion and more.

    Content Types

    • Rules
    • Prompts
    • MCPs
    • Agents
    • Guides

    Platforms

    • ChatGPT Directory
    • Claude Directory
    • Gemini Directory
    • Cursor Directory
    • Grok Directory
    • Perplexity Directory
    • DeepSeek Directory
    • CoPilot Directory
    • Stable Diffusion Directory
    • Midjourney Directory
    • All Directories

    Resources

    • Blog
    • Documentation
    • Help Center
    • Marketplace

    Legal

    • Privacy Policy
    • Terms of Service

    © 2026 Neura Market. All rights reserved.

    |

    Not affiliated with any AI platform vendors.

    Ready-made automations for this

    Workflows from the Neura Market marketplace related to this Stable Diffusion resource

    • Receive Real-Time Updates from Taiga for Finance Projectsn8n · $12.5 · Related topic
    • Comprehensive Environmental Data Dashboard Automationn8n · $19.99 · Related topic
    • Production KPI Dashboard Workflow for Enhanced Manufacturing Insightsn8n · $16.91 · Related topic
    • Player Sentiment Dashboard: Analyze Gamer Emotions Effectivelyn8n · $13.08 · Related topic
    Browse all workflows