Skip to main content

A high-performance CLI toolkit designed for codebase exploration, intelligent analysis, and LLM context aggregation.

Project description

Seedling-tools

Seedling CI PyPI version Python Versions License

Seedling-tools is a high-performance CLI toolkit designed for codebase exploration, intelligent analysis, and LLM context aggregation.

Core Capabilities:

  1. SCAN: Export directory trees to Markdown, TXT, JSON, or Images.
  2. FIND & GREP: Perform exact/fuzzy file searches and regex-based content matching.
  3. ANALYZE: Auto-detect project architecture, dependencies, and entry points.
  4. SKELETON: Extract Python AST structures (stripping implementation logic).
  5. POWER MODE: Aggregate full repository source code for LLM prompts.
  6. BUILD: Reconstruct physical file systems from text-based blueprints.

Powered by a unified, single-pass caching traversal engine.

Read this document in other languages: 简体中文


Installation

Seedling-tools is designed to be installed globally via pipx for a clean, isolated environment.

pipx install Seedling-tools

One-Click Setup

  • Windows: Run ./install.bat
  • macOS / Linux: Run bash install.sh

Developer / Manual Install

If you are modifying the source code, use Editable Mode:

pipx install -e . --force

Python Library Usage

You can now use Seedling's core features directly in your Python code via the ScanConfig engine:

import seedling
from seedling.core.config import ScanConfig
from seedling.core.traversal import traverse_directory, build_tree_lines

# Initialize Configuration
config = ScanConfig(max_depth=2, quiet=True)

# Taking Memory Snapshots
result = traverse_directory("./src", config)

# Render tree lines
lines = build_tree_lines(result, config)
print("\n".join(lines))

CLI Reference

Seedling-tools uses a clean, explicit argument system.

1. scan - The Explorer

Used for scanning directories, extracting code skeletons, or searching for items. Note: --full and --skeleton are mutually exclusive.

Argument Description
target Target directory for scanning or searching (Defaults to .).
--find, -f Search Mode. Fast CLI search (Exact & Fuzzy). Combine with --full to export a code report.
--format, -F Output format: md (default), txt, json, or image.
--name, -n Custom output filename.
--outdir, -o Where to save the result.
--showhidden Include hidden files in the scan.
--depth, -d Maximum recursion depth.
--exclude, -e List of items to ignore. Smart parse: auto-reads .gitignore files or accepts globs.
--include [NEW] Only include files/directories matching patterns (e.g., --include "*.py").
--type, -t [NEW] Filter by file type: py, js, ts, cpp, go, java, rs, web, json, yaml, md, shell, all.
--regex [NEW] Treat -f pattern as regular expression.
--grep, -g [NEW] Search inside file contents (Content Search Mode).
-C, --context [NEW] Show N lines of context around grep matches.
--analyze [NEW] Analyze project structure, type, dependencies, and architecture.
--full Power Mode. Appends the full text content of all scanned source files.
--skeleton [Experimental] AST Code Skeleton extraction. Strips logic, retains signatures.
--text Smart Filter. Only scan text-based files (ignores binary/media).
--delete Cleanup Mode. Permanently delete items matched by --find (Interactive TTY only).
--dry-run [NEW] Preview deletions without executing (use with --delete).
--verbose / -q Verbose mode (-v) or Quiet mode (-q).

2. build - The Architect

Turn a text-based tree into a real file system, or restore a project from a snapshot.

Argument Description
file The source tree blueprint file (.txt or .md).
target Where to build the structure (Defaults to current directory).
--direct, -d Direct Mode. Bypass prompts to instantly create a specific path.
--check Dry-Run. Simulate the build and report missing/existing items.
--force Force Mode. Overwrite existing files without skipping.

New in v2.4 - Bug Fixes & Improvements

Security

  • --dry-run Mode: Preview deletions before executing with --delete:
    scan . -f "temp_*" --delete --dry-run
    

Compatibility

  • Python 3.9+ Required for --skeleton: Clear error message for Python 3.8 users
  • Pillow as Optional Dependency: Install with pip install Seedling-tools[image] only if you need image export

Performance

  • Accurate Memory Calculation: Fixed memory tracking to prevent OOM crashes on high-Unicode files
  • Conservative Memory Threshold: Reduced to 80% for additional safety

JSON Output Mode

Export directory structures as structured JSON for programmatic consumption:

scan . -F json -o structure.json

File Type & Include Filters

Filter by file type or custom patterns:

scan . --type py -d 3
scan . --include "*.md" --include "*.txt"

Regex Search Mode

Use regular expressions in search:

scan . -f "test_.*\.py" --regex

Content Search (Grep Mode)

Search inside file contents with context:

scan . --grep "TODO" -C 3 --type py
scan . -g "def main" -C 2

Project Analysis

Analyze project structure and dependencies:

scan . --analyze

Project Structure (v2.4)

Seedling/
├── docs/                      # Documentation & Changelogs
│   ├── CHANGELOG.md           # English version history
│   ├── CHANGELOG_zh.md        # Chinese version history
│   └── README_zh.md           # Chinese documentation
├── seedling/                  # Core Package
│   ├── commands/              # CLI Command Routers
│   │   ├── build/             # Build logic (Reverse engineering)
│   │   │   ├── __init__.py    # Build CLI router & validation
│   │   │   └── architect.py   # Blueprint parsing & safe construction
│   │   └── scan/              # Scan logic (Exploration & Extraction)
│   │       ├── __init__.py    # Central Router & Single-pass trigger
│   │       ├── analyzer.py    # Project architecture & dependency analysis
│   │       ├── exclude.py     # .gitignore-style exclusion rule parser
│   │       ├── explorer.py    # Tree rendering & generic format export
│   │       ├── full.py        # Power Mode (LLM context aggregation)
│   │       ├── grep.py        # In-memory content search & context extraction
│   │       ├── json_output.py # Nested JSON structured export
│   │       ├── search.py      # File search (Exact/Fuzzy) & safe deletion
│   │       └── skeleton.py    # Python AST extraction (Implementation stripping)
│   ├── core/                  # Shared Core Engines
│   │   ├── config.py          # Configuration dataclasses & global constants
│   │   ├── detection.py       # File type & binary content probe
│   │   ├── io.py              # File R/W, Fence collision & Overwrite protection
│   │   ├── logger.py          # Centralized CLI formatter & log levels
│   │   ├── patterns.py        # Glob/Regex path matching engine
│   │   ├── sysinfo.py         # Hardware RAM probe & depth limits
│   │   ├── traversal.py       # Unified single-pass caching engine
│   │   └── ui.py              # Interactive prompts & progress bars
│   ├── __init__.py            # Public API & Metadata exposure
│   └── main.py                # CLI Entry Point Router
├── tests/                     # Unit Tests (Core, Edge Cases, IO)
├── install.bat                # Windows one-click installer
├── install.sh                 # Linux/macOS one-click installer
├── LICENSE                    # MIT License
├── pyproject.toml             # Build configuration & Package metadata
├── pytest.ini                 # Pytest configuration file
├── README.md                  # Main documentation
└── test_suite.sh              # Automated E2E tests

Changelog

Detailed changes for each release are documented in the docs/CHANGELOG.md file.

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

seedling_tools-2.4.3.tar.gz (37.7 kB view details)

Uploaded Source

Built Distribution

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

seedling_tools-2.4.3-py3-none-any.whl (42.7 kB view details)

Uploaded Python 3

File details

Details for the file seedling_tools-2.4.3.tar.gz.

File metadata

  • Download URL: seedling_tools-2.4.3.tar.gz
  • Upload date:
  • Size: 37.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.3

File hashes

Hashes for seedling_tools-2.4.3.tar.gz
Algorithm Hash digest
SHA256 7054993b640b15c5dbe01c3e7ae37916f197df337ea40710fa08f50a36f0624b
MD5 424558c9c093b15c27abdf7073b862d1
BLAKE2b-256 a3b3881fc72b9a25965fdef2255f1d20edead5ae2bd19e29c1cd5e4a8ed609b5

See more details on using hashes here.

File details

Details for the file seedling_tools-2.4.3-py3-none-any.whl.

File metadata

  • Download URL: seedling_tools-2.4.3-py3-none-any.whl
  • Upload date:
  • Size: 42.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.3

File hashes

Hashes for seedling_tools-2.4.3-py3-none-any.whl
Algorithm Hash digest
SHA256 e66f7b714b5d605abc479cc8b66f69a02da42d55522a66a88662abe4814fb3de
MD5 272aac7d3ba4ed13c2c76d68d8c89f36
BLAKE2b-256 402670845dec28ed9d19dbb9b1f1c0854191b238ce494c55e091ffcdf0030791

See more details on using hashes here.

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