Skip to main content

A CLI tool for extracting and sharing code files and functions. A manual context builder for pasting into llms.

Project description

ggrab - Grug Grab Tool

A CLI tool for manually building context to paste into llm chats. ggrab gathers functions, classes, or entire files wraps them with xml and copies it to the clipboard.

Key Features

  • Smart Extraction: Grab entire files or specific functions/classes
  • Intelligent Autocompletion: File paths and function/class names
  • Token Counting: Built-in token counting for AI context limits
  • Language Support:
    • Python (AST-based extraction)
    • JavaScript (Esprima-based extraction)
    • Other files (full file extraction)

Quick Start

  1. Install:
pip install ggrab    # Basic install
# or
pipx install ggrab   # Recommended

Why pipx? The pipx install is recommended because it:

  • Won't interfere with other Python projects (creates its own venv)
  • Makes ggrab available globally in your terminal
  1. Setup:

Add the following to your shell config file (~/.bashrc, ~/.zshrc, or equivalent):

# Enable ggrab autocompletion
eval "$(register-python-argcomplete ggrab)"

Then reload your shell configuration:

# For bash
source ~/.bashrc

# For zsh
source ~/.zshrc

Usage

# Grab entire files
ggrab file.py

# Extract specific functions
ggrab file.py function1 function2

# Mix multiple files and functions
ggrab file1.py func1 func2 file2.js func3

# Now supports full directories (entire files only)
ggrab directory

# Skip files matching a regex pattern
ggrab directory/ --ignore '\.test\.'    # Skip test files
ggrab src/ --ignore 'node_modules'      # Skip node_modules directory
ggrab . --ignore '(\.test\.|\.git)'     # Skip multiple patterns

Press TAB at any time for smart autocompletion:

  • After ggrab: Shows file suggestions
  • After selecting a file: Shows available functions/classes

Examples

# Extract multiple functions from a Python file
$ ggrab utils.py parse_data validate_input
Gathered code from:
  - utils.py, functions: parse_data, validate_input (203 tokens)

===== Combined Snippets (copied to clipboard) =====

# Extract from multiple files
$ ggrab api.py handle_request db.js queryDatabase
Gathered code from:
  - api.py, functions: handle_request (156 tokens)
  - db.js, functions: queryDatabase (178 tokens)

Total tokens across all files: 334

Performance Features

  • Lazy Loading: Heavy dependencies load only when needed
  • Smart Caching: Function/class listings cached for quick access
  • Hybrid Parsing: Fast regex for completion, accurate AST/Esprima for extraction

Requirements

  • Python 3.7+
  • Required: argcomplete
  • Optional but recommended:
    • pyperclip (clipboard support)
    • tiktoken (token counting)
    • esprima (JavaScript parsing)

Advanced Setup

Disable completion sorting (optional):

complete -o nosort -F _python_argcomplete ggrab

For zsh users:

autoload -U compinit && compinit
autoload -U bashcompinit && bashcompinit
eval "$(register-python-argcomplete ggrab)"

Acknowledgments

  • Developed -- ok, prompted into existance by Claude 3.5, o1 pro. Fixed up to working order by Keizo Gates making GrugNotes :)

License

MIT License


For bug reports and feature requests, please open an issue on GitHub.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ggrab-0.1.0a11.tar.gz (10.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ggrab-0.1.0a11-py3-none-any.whl (9.7 kB view details)

Uploaded Python 3

File details

Details for the file ggrab-0.1.0a11.tar.gz.

File metadata

  • Download URL: ggrab-0.1.0a11.tar.gz
  • Upload date:
  • Size: 10.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for ggrab-0.1.0a11.tar.gz
Algorithm Hash digest
SHA256 1a591dc7b2c50a51807e3f02f8545cd0fee0dd657ddec8d4d885859dd73d3402
MD5 d6481f9171639fcf625c7ff92458a1ba
BLAKE2b-256 ae7c7b431c0992d413eb1a847b5f53a5ffd60e57c408a976dc6ad0ea528c2903

See more details on using hashes here.

Provenance

The following attestation bundles were made for ggrab-0.1.0a11.tar.gz:

Publisher: python-publish.yml on keizo/ggrab

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ggrab-0.1.0a11-py3-none-any.whl.

File metadata

  • Download URL: ggrab-0.1.0a11-py3-none-any.whl
  • Upload date:
  • Size: 9.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for ggrab-0.1.0a11-py3-none-any.whl
Algorithm Hash digest
SHA256 d80647a0e9531dbe1fdb6f9e21f52f03b792742fa30fca9ce3a692f29e620e09
MD5 ac3185f5e98d06d093a4355b23ff998c
BLAKE2b-256 f577f375577dee6935b9e89665e71533ee1f3ef3452e838d8a1534d0ebc207f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ggrab-0.1.0a11-py3-none-any.whl:

Publisher: python-publish.yml on keizo/ggrab

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page