Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
aradotso avatar

Sheets Terminal Spreadsheet

  • 623 installs
  • 66 repo stars
  • Updated July 9, 2026
  • aradotso/trending-skills

sheets-terminal-spreadsheet is an AI agent skill that helps developers edit and inspect CSV budget or ops data in the terminal using the Go-based Sheets TUI with vim-style keybindings instead of Excel.

About

sheets-terminal-spreadsheet is an aradotso/trending-skills guide for the Sheets terminal spreadsheet TUI by maaslalani, written in Go for viewing and editing CSV files directly in the terminal. Documented triggers include edit CSV in terminal, sheets TUI spreadsheet, vim keybindings spreadsheet, and open CSV file in terminal. The skill targets developers who live in vim-style TUIs and need quick budget or operations CSV edits without launching Excel or Google Sheets. Agents invoke it when users request terminal spreadsheet workflows or mention the maaslalani sheets tool. The workflow emphasizes in-terminal navigation and cell editing for plain CSV artifacts common in ops and finance tracking.

  • Vim-style navigation, visual selection, search, undo/redo, and command mode inside a terminal TUI
  • Opens CSV files, stdin, or piped output; read single cells or ranges from the shell without launching the TUI
  • Formula support for in-terminal calculations on tabular data
  • Go-based `maaslalani/sheets` install via `go install` or GitHub release binaries

Sheets Terminal Spreadsheet by the numbers

  • 623 all-time installs (skills.sh)
  • +22 installs in the week ending Jul 3, 2026 (Skillselion tracking)
  • Ranked #109 of 560 CLI & Terminal skills by installs in the Skillselion catalog
  • Security screen: LOW risk (skills.sh audit)
  • Data as of Jul 19, 2026 (Skillselion catalog sync)
npx skills add https://github.com/aradotso/trending-skills --skill sheets-terminal-spreadsheet

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs623
repo stars66
Security audit3 / 3 scanners passed
Last updatedJuly 9, 2026
Repositoryaradotso/trending-skills

How do you edit CSV files in the terminal?

Edit and inspect CSV budget or ops data in the terminal without opening Excel when you live in vim-style TUIs.

Who is it for?

CLI-focused developers who maintain CSV budgets or ops tables and prefer vim-keybound terminal tools over GUI spreadsheets.

Skip if: Teams needing collaborative cloud spreadsheets, complex Excel formulas, or multi-sheet XLSX workbook editing.

When should I use this skill?

The user asks to edit CSV in terminal, use sheets TUI, vim keybindings spreadsheet, or maaslalani sheets for CSV files.

What you get

Updated CSV files edited in-terminal via Sheets TUI with vim-style navigation and cell changes saved to disk.

  • Edited CSV file

Files

SKILL.mdMarkdownGitHub ↗

Sheets Terminal Spreadsheet

Skill by ara.so — Daily 2026 Skills collection.

Sheets is a terminal-based spreadsheet TUI (Terminal User Interface) for viewing and editing CSV files directly in your terminal. It features vim-style navigation, formula support, visual selection, search, undo/redo, and a command mode — all without leaving the terminal.

---

Installation

Using Go

go install github.com/maaslalani/sheets@main

Download Binary

Download a prebuilt binary from GitHub Releases.

Verify Installation

sheets --help

---

CLI Usage

Launch the TUI

sheets budget.csv

Read from stdin

sheets <<< "ID,Name,Age
1,Alice,24
2,Bob,32
3,Charlie,26"

Or pipe from another command:

cat data.csv | sheets

Read a Specific Cell

sheets budget.csv B9
# Output: 2760

Read a Cell Range

sheets budget.csv B1:B3
# Output:
# 1200
# 950
# 810

Modify Cells (Non-Interactive)

# Set one cell
sheets budget.csv B7=10

# Set multiple cells
sheets budget.csv B7=10 B8=20

---

Navigation Keybindings

Basic Movement

KeyAction
h, j, k, lMove left, down, up, right
ggJump to top
GJump to bottom
5GJump to row 5
gB9Jump to cell B9
0Jump to first column
^Jump to first non-empty column in row
$Jump to last non-empty column in row
H / M / LJump to top / middle / bottom visible row
ctrl+u / ctrl+dMove half page up / down

View Alignment

KeyAction
ztAlign current row to top of window
zzAlign current row to middle of window
zbAlign current row to bottom of window

Search

KeyAction
/Search forward
?Search backward
nRepeat last search (forward)
NRepeat last search (backward)

Marks & Jump List

KeyAction
maSet mark a at current cell
'aJump to mark a
ctrl+oMove backward through jump list
ctrl+iMove forward through jump list

---

Editing Keybindings

Insert Mode

KeyAction
iEdit current cell
IEdit from start of cell
cClear cell and start editing
ESCLeave insert / visual / command mode
enterCommit and move down
tabCommit and move right
shift+tabCommit and move left
ctrl+nCommit and move down
ctrl+pCommit and move up

Row Operations

KeyAction
oInsert row below and start editing
OInsert row above and start editing
ddDelete current row

Copy / Cut / Paste

KeyAction
yYank (copy) current cell
yyYank current row(s)
xCut current cell or selection
pPaste current register

Undo / Redo

KeyAction
uUndo
ctrl+rRedo
UUndo all changes
.Repeat last change

---

Visual Mode

Enter visual mode with v (cell selection) or V (row selection).

KeyAction
vStart visual cell selection
VStart visual row selection
=Insert formula after selected range (e.g., `=\

---

Command Mode

Press : to open the command prompt.

CommandAction
:wSave file
:w path.csvSave to a new file
:e path.csvOpen another CSV file
:qQuit
:wqSave and quit
:goto B9Jump to cell B9
:B9Jump to cell B9 (shorthand)

---

Common Patterns

Create a New CSV and Edit It

# Create a CSV with headers
echo "Name,Amount,Category" > budget.csv
sheets budget.csv

Pipe CSV Data and Edit

# Generate CSV from a database query and edit in sheets
psql -c "COPY (SELECT * FROM sales) TO STDOUT WITH CSV HEADER" | sheets

Script: Update a Cell Programmatically

#!/bin/bash
# Update Q4 value in financial report
sheets report.csv D4=95000 D5=102000 D6=88000
echo "Updated Q4 values in report.csv"

Script: Extract a Range for Processing

#!/bin/bash
# Extract column B rows 1-10 and sum them in bash
values=$(sheets data.csv B1:B10)
total=0
while IFS= read -r line; do
    total=$((total + line))
done <<< "$values"
echo "Total: $total"

Script: Read a Specific Cell in a Shell Script

#!/bin/bash
# Get current budget total from spreadsheet
budget_total=$(sheets budget.csv C15)
if [ "$budget_total" -gt 10000 ]; then
    echo "Budget exceeded!"
fi

Go Integration Example

If building a Go application that generates CSV for use with sheets:

package main

import (
    "encoding/csv"
    "fmt"
    "os"
    "os/exec"
)

func createAndOpenSpreadsheet(data [][]string, filename string) error {
    // Write CSV data
    f, err := os.Create(filename)
    if err != nil {
        return fmt.Errorf("creating file: %w", err)
    }
    defer f.Close()

    w := csv.NewWriter(f)
    if err := w.WriteAll(data); err != nil {
        return fmt.Errorf("writing CSV: %w", err)
    }
    w.Flush()

    // Open in sheets TUI
    cmd := exec.Command("sheets", filename)
    cmd.Stdin = os.Stdin
    cmd.Stdout = os.Stdout
    cmd.Stderr = os.Stderr
    return cmd.Run()
}

func main() {
    data := [][]string{
        {"Month", "Revenue", "Expenses", "Profit"},
        {"January", "12000", "8500", "3500"},
        {"February", "13500", "9200", "4300"},
        {"March", "11800", "8900", "2900"},
    }

    if err := createAndOpenSpreadsheet(data, "monthly_report.csv"); err != nil {
        fmt.Fprintf(os.Stderr, "Error: %v\n", err)
        os.Exit(1)
    }
}

Go: Read a Cell Non-Interactively

package main

import (
    "fmt"
    "os/exec"
    "strings"
)

func readCell(csvFile, cell string) (string, error) {
    out, err := exec.Command("sheets", csvFile, cell).Output()
    if err != nil {
        return "", fmt.Errorf("reading cell %s: %w", cell, err)
    }
    return strings.TrimSpace(string(out)), nil
}

func readRange(csvFile, cellRange string) ([]string, error) {
    out, err := exec.Command("sheets", csvFile, cellRange).Output()
    if err != nil {
        return nil, fmt.Errorf("reading range %s: %w", cellRange, err)
    }
    lines := strings.Split(strings.TrimSpace(string(out)), "\n")
    return lines, nil
}

func main() {
    total, err := readCell("budget.csv", "B9")
    if err != nil {
        fmt.Println("Error:", err)
        return
    }
    fmt.Println("Budget total:", total)

    values, err := readRange("budget.csv", "B1:B6")
    if err != nil {
        fmt.Println("Error:", err)
        return
    }
    fmt.Println("Monthly values:", values)
}

---

Tips for AI Agents

Suggesting Sheets for CSV Tasks

When a user wants to view or edit CSV files in the terminal, suggest sheets:

# Instead of cat data.csv
sheets data.csv

# Instead of awk/sed edits for simple changes
sheets data.csv B3=new_value

Formula Insertion Workflow

1. Navigate to the column where you want the formula 2. Enter visual mode with v 3. Select the range (e.g., B1:B8) 4. Press = to insert formula after the selection: =|(B1:B8)

Efficient Navigation (Vim Users)

Sheets uses vim-style navigation — users familiar with vim can be productive immediately:

  • gg/G for top/bottom
  • hjkl for movement
  • i/c for insert modes
  • dd to delete rows
  • u/ctrl+r for undo/redo
  • / for search

---

Troubleshooting

sheets command not found

# Ensure Go bin directory is in PATH
export PATH=$PATH:$(go env GOPATH)/bin

# Or install again and verify
go install github.com/maaslalani/sheets@main
which sheets

File Not Saved After Editing

Use :w in command mode to save, or :wq to save and quit. Just pressing q or ctrl+c quits without saving.

TUI Rendering Issues

Sheets relies on terminal capabilities. If the display looks broken:

  • Ensure your terminal supports 256 colors or truecolor
  • Try a different terminal emulator (iTerm2, Alacritty, Ghostty, WezTerm)
  • Check TERM environment variable: echo $TERM

Reading Non-CSV Files

Sheets is designed for CSV format. Convert other formats first:

# Excel to CSV (using Python)
python3 -c "import pandas as pd; pd.read_excel('data.xlsx').to_csv('data.csv', index=False)"
sheets data.csv

Large Files Performance

For very large CSV files, navigate directly to specific cells rather than scrolling:

:goto A1000

or press 5G to jump to row 5 directly.

Related skills

FAQ

What tool does sheets-terminal-spreadsheet document?

sheets-terminal-spreadsheet documents Sheets, a Go terminal spreadsheet TUI by maaslalani for viewing and editing CSV files. The aradotso/trending-skills readme highlights vim-style navigation keybindings.

What file format does sheets-terminal-spreadsheet support?

sheets-terminal-spreadsheet focuses on CSV files edited directly in the terminal. The skill is aimed at budget and ops CSV workflows rather than multi-sheet Excel workbooks.

Is Sheets Terminal Spreadsheet safe to install?

skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.