aven-stellar CLI inside your Git repository, it tracks how long you were actively working and what changed in the codebase — then packages that evidence into a structured report that you can review before submitting to your client for approval.
What a Session Captures
Every work session report contains the following categories of data:- Session timing — the wall-clock start and end times, total elapsed seconds, active seconds (time with detected activity), and idle seconds. Payment is calculated from active seconds only.
- Git repository state — the branch name at session start and end, the starting commit hash, and the ending commit hash. This anchors the session to an exact snapshot of the repository.
- File change summary — relative file paths, change type (
created,modified,deleted, orrenamed), line additions and deletions, and the file category (source,test,documentation,configuration, etc.). Files excluded by.gitignoreor.avenignoreare never included. - Commit history — each commit made during the session, including its hash, message, timestamp, and diff size (additions/deletions). Full file contents are never uploaded.
- Worker statement — an optional plain-text summary you can provide with
--messagewhen stopping the session. This gives you space to explain decisions, blockers, or context that the Git data alone does not convey. - Payment request — the amount you are requesting, calculated automatically as
active_seconds × stream_rate_per_second, capped by the funds currently available in the stream.
Session Report Structure
The complete shape of a submitted report is defined by theWorkSessionReport type in the CLI package:
Session Lifecycle
The session does not submit anything automatically. You always see the full report and confirm before it is sent to the dashboard.Work Session States
Payment Calculation
The requested payment is calculated as:What the CLI collects: session timing, your active Git branch, commit metadata (hash, message, timestamp, and diff sizes), relative file paths, and additions/deletions counts.What the CLI never collects: file contents, keystrokes, screenshots, your Stellar secret key, project dependencies, or any path excluded by
.gitignore or .avenignore. Your intellectual property stays on your machine.