🌲 forest 
git-like data management for arbitrary data trees.
Forest is the data-side parallel to git's version control. Git tracks code in
.git/; forest tracks large data — local layout plus remote sync — in
.forest/. It borrows git's mental model and verbs (checkout, status,
push, pull, remote, a HEAD-style pointer) so your git intuition carries
over, but the two domains never overlap and neither requires the other.
Forest is domain-agnostic and self-contained: it manages any data trees, knows nothing about what the data means, and depends on no other project. It moves files and tracks their sync state; it does not validate or interpret their contents.
Documentation
Full docs live at tmsincomb.github.io/forest.
Start with the hands-on tutorial —
seven short chapters from forest init to a fully synced repo, with every
output block captured from a real session and no cloud credentials required.
Model
Fixed-depth, no arbitrary nesting:
workspace → checkout → stage → unit → files
- Workspace — a per-repo
.forest/control area (registry + active pointer). - Checkout — a named data view/focus registered in the workspace (like a git branch you stay rooted in). Switching is an O(1) pointer rewrite; data never moves.
- Stage — a named data category inside a checkout, with a remote layout.
- Unit — one addressable item within a stage (a subdirectory, a directory,
or a file, per the stage's
sync_by).
Install
pip install forest-cli
Requires rclone on $PATH for transfers. For a
development install, clone the repo and pip install -e ".[dev]".
Quick start
No config files are hand-written. Onboarding is a few commands:
forest init # create the nameless .forest/ workspace container
forest checkout demo # create if absent, register + activate 'demo'
forest remote add origin s3://my-bucket/prefix # allowed before any local data exists
forest add raw ./data/raw # register stage 'raw' and bind it to a local path
forest push # sync every bound stage to the active remote
forest initcreates only.forest/config.yaml(version: 1,checkouts: {}) and a managed.gitignore. No root config, no checkout, no active pointer.forest checkout <name>switches to the checkout, creating, registering, and activating it first (with.forest/checkouts/<name>/forest.yaml) when the name is not registered.forest checkout create <name>is the explicit form.- Remotes can be added before any local binding — useful when your data is remote-only at first.
forest add STAGE PATHregisters a new stage and binds it to a local path in one step (useforest bindto rebind an existing stage).
Metadata layout
Everything forest owns lives under .forest/; your data does not.
.forest/
config.yaml # workspace registry: version, checkouts{}
HEAD # active checkout name (gitignored)
checkouts/
demo/
forest.yaml # shared: stages, remotes, manifest
local.yaml # user-local: active_remote, stage_paths (gitignored)
sync_state.json # user-local push/pull state (gitignored)
Shared metadata (config.yaml, each forest.yaml) is committed so a fresh
clone bootstraps with bind + remote use + pull. User-local files
(HEAD, local.yaml, sync_state.json) are gitignored.
Commands
| Command | Purpose |
|---|---|
forest init |
Create the workspace container, or report setup status if it exists. |
forest checkout create/adopt/list/current/remove <name> |
Manage checkouts; bare forest checkout <name> switches, creating first if needed. remove --yes skips the prompt for scripts. |
forest add STAGE PATH [--sync-by MODE] |
Register a new stage and bind it to a local path; --sync-by picks unit discovery (subdirectory/directory/file). |
forest bind [STAGE PATH] / forest unbind STAGE |
Manage local stage↔path bindings. |
forest remote add/remove/list/use/show |
Manage remotes; use selects the active remote (optional while only one remote exists). |
forest push / pull / status / diff / ls |
Sync and inspect against the active remote. Bare push/pull/status/diff cover every bound stage (unbound stages warn and skip); --all requires all stages bound. |
forest flow |
Emit a Mermaid data-flow diagram of the active checkout. |
forest tui (or bare forest) |
Interactive terminal forest (Textual app): each checkout is a pixel-art tree, canopy bands are stages colored by sync status, and the mist above the treetops is data in the cloud (the active remote). Navigate with keys or the mouse; Enter (or a click) on a stage opens its unit drill-down. |
forest prompt init bash|zsh |
Print an eval-able snippet that shows the active checkout in your shell prompt. |
Run any command with -C <path> to operate on another repo without cd.
Forest syncs all files in a data unit, skipping OS junk (.DS_Store,
AppleDouble ._*, *.tmp). It applies no content-based include/exclude rules.
Terminal output
On an interactive terminal forest renders rich output — colored status
tables, file trees, panels, and live progress bars during push/pull
(rclone JSON stats streamed to a bar; needs rclone ≥ 1.49, older versions
transfer fine without a bar). When stdout is piped or redirected, output
falls back to the plain, machine-parseable format, so scripts never see
ANSI codes or box drawing.
Overrides: --color/--no-color per invocation, FOREST_OUTPUT=rich|plain|auto
in the environment, and the NO_COLOR/FORCE_COLOR
conventions. Precedence: flag > FOREST_OUTPUT > NO_COLOR > FORCE_COLOR >
TTY detection. --verbose shows rclone's raw transfer log instead of a
progress bar; --quiet suppresses everything but errors.
Shell prompt
Show the active checkout in your prompt (bash and zsh), the way git prompts show the current branch:
# ~/.bashrc
eval "$(forest prompt init bash)"
# ~/.zshrc
eval "$(forest prompt init zsh)"
~/lab/G004 $ # outside a workspace: unchanged
🌲 G004 ~/lab/G004 $ # inside a workspace with an active checkout
The snippet is pure shell — it reads .forest/HEAD directly and never invokes
the forest CLI while rendering, so your prompt stays fast. Set
FOREST_PROMPT_ICON to replace the 🌲.
FOREST_PROMPT_ICON to replace the 🌲.
Config reference
Checkout forest.yaml (shared, committed):
project: demo
remotes:
origin:
url: s3://my-bucket/prefix
region: us-east-2 # optional; also endpoint, profile, key_file, known_hosts
stages:
raw:
remote_path: demo/raw # optional; defaults to <checkout>/<stage>
sync_by: subdirectory # subdirectory | directory | file
direction: both # push | pull | both; bare push/pull skip
# wrong-direction stages, explicit selection errors
Checkout local.yaml (per-machine, gitignored):
active_remote: origin
stage_paths:
raw: ../data/raw # relative resolves from the workspace root
Environment variables
All optional, all off by default — forest is silent and sends nothing anywhere
unless configured. Copy .env.example for a commented template; operational
guides live in docs/runbooks/.
| Variable | Default | Effect |
|---|---|---|
FOREST_LOG_FILE |
unset | Append structured logs (JSON lines) to this file. |
FOREST_LOG_FORMAT |
json |
json or text; set without FOREST_LOG_FILE to log to stderr. |
FOREST_LOG_LEVEL |
INFO |
Standard logging level name. |
FOREST_METRICS_FILE |
unset | Append metric samples as JSON lines for external collectors. |
FOREST_ANALYTICS_FILE |
unset | Opt-in local usage analytics (JSON lines); nothing leaves the machine. |
FOREST_SENTRY_DSN |
unset | Sentry error tracking; needs pip install "forest-cli[observability]". |
FOREST_ALERT_WEBHOOK |
unset | POST failure alerts to this HTTPS endpoint (Slack/Mattermost compatible). |
FOREST_TRANSFER_RETRIES |
2 |
Extra attempts for transient rclone failures; 0 disables. |
FOREST_RETRY_BASE_DELAY |
0.5 |
Initial retry backoff in seconds; doubles per attempt. |
FOREST_BREAKER_THRESHOLD |
5 |
Consecutive transfer failures before the circuit opens; 0 disables. |
FOREST_BREAKER_RESET_SECONDS |
60 |
Cool-down before an open circuit allows a probe operation. |
FOREST_FLAGS |
unset | Comma-separated feature flags; raw-logs disables log secret-scrubbing. |
FOREST_OUTPUT |
auto |
Terminal rendering: rich, plain, or auto (rich on a TTY, plain when piped). |
NO_COLOR / FORCE_COLOR |
unset | Standard color conventions; FOREST_OUTPUT and --color/--no-color take precedence. |
Dogfood: this repo runs forest
This repository manages its own examples/ and tests/data/ trees with
forest — a live demonstration that .forest/ and .git/ coexist without
overlapping. It was set up with exactly the quick-start commands:
forest init
forest checkout demo
forest remote add origin s3://forest-cli-test --region us-east-2
forest add examples ./examples # two-way stage (direction: both)
forest add data ./tests/data --sync-by directory # two small test files
forest push # seeds both stages
After the seeding push, data was flipped to direction: pull in the
checkout's forest.yaml — it is a read-only reference mirror now: a bare
forest push skips it with a note, and forest push --stage data refuses
with exit 1 (a new stage can start there directly with
forest add ... --direction pull). The examples stage keeps syncing both
ways.
Inspect the result:
git ls-files .forest # what a clone gets: config.yaml + checkouts/demo/forest.yaml
cat .gitignore # forest-managed: HEAD, local.yaml, sync_state.json stay local
forest ls # stage overview: data shows (directory, pull)
forest status # sync state of both stages
A fresh clone bootstraps the local half (HEAD, bindings, sync state are gitignored) with:
forest checkout demo # select the checkout; clones have no HEAD
forest bind examples ./examples
forest bind data ./tests/data
forest pull --force # first pull: no local sync state yet, so
# forest refuses to touch the git-tracked
# copies without it
The single configured remote is used automatically. Pulling needs AWS credentials for the bucket; the layout is the demonstration.
Notes
- Single active machine (v1).
HEAD/local.yaml/sync_state.jsonare git-invisible but may be synced by a file-syncing tool; forest assumes one active machine and uses atomic writes plus a per-checkoutflockfor intra-machine write races. - Real filenames. Forest stores data under real paths, not a content-addressed blob store.
- See
docs/adr/for the design decisions behind the workspace/checkout model.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file forest_cli-1.0.0.tar.gz.
File metadata
- Download URL: forest_cli-1.0.0.tar.gz
- Upload date:
- Size: 219.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc396f68b70d87fb57622bad2a521845ff2d93ae6e12785c377b88c6fac83a9c
|
|
| MD5 |
3979b1de892366d343ac385b29052298
|
|
| BLAKE2b-256 |
e4f4c3d4254747f88efd95865d1023a218c08569ae14ede5adcf32d6fe133637
|
Provenance
The following attestation bundles were made for forest_cli-1.0.0.tar.gz:
Publisher:
publish.yaml on tmsincomb/forest
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
forest_cli-1.0.0.tar.gz -
Subject digest:
cc396f68b70d87fb57622bad2a521845ff2d93ae6e12785c377b88c6fac83a9c - Sigstore transparency entry: 2167868567
- Sigstore integration time:
-
Permalink:
tmsincomb/forest@9fe6044c0e4e8cfaff77ba2e4d23c1d336eaa98e -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tmsincomb
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@9fe6044c0e4e8cfaff77ba2e4d23c1d336eaa98e -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file forest_cli-1.0.0-py3-none-any.whl.
File metadata
- Download URL: forest_cli-1.0.0-py3-none-any.whl
- Upload date:
- Size: 92.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e3ce40f71f7d9699de83be76e0dd1d950a067da5bd6ca82425175ae9cef47f6
|
|
| MD5 |
9d53cc67795131fe79d2069991317dbc
|
|
| BLAKE2b-256 |
d47b9eef8129e5d18cea0481d8baa8936167a095cda0feedd658f04b9bf69ac2
|
Provenance
The following attestation bundles were made for forest_cli-1.0.0-py3-none-any.whl:
Publisher:
publish.yaml on tmsincomb/forest
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
forest_cli-1.0.0-py3-none-any.whl -
Subject digest:
7e3ce40f71f7d9699de83be76e0dd1d950a067da5bd6ca82425175ae9cef47f6 - Sigstore transparency entry: 2167868609
- Sigstore integration time:
-
Permalink:
tmsincomb/forest@9fe6044c0e4e8cfaff77ba2e4d23c1d336eaa98e -
Branch / Tag:
refs/heads/main - Owner: https://github.com/tmsincomb
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yaml@9fe6044c0e4e8cfaff77ba2e4d23c1d336eaa98e -
Trigger Event:
workflow_dispatch
-
Statement type: