Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,10 +159,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install Rust 1.85
- name: Install Rust 1.88
uses: dtolnay/rust-toolchain@master
with:
toolchain: "1.85"
toolchain: "1.88"

- name: Check build with MSRV
run: |
Expand Down
12 changes: 8 additions & 4 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,11 +154,14 @@ pipeline and won't carry trace context or attributes.
| `.warn()` | Partial failures, degraded conditions |
| `.error()` | Step/workflow failures |

**CLI subscriber:** `src/bin/voidbox.rs` initializes `tracing_subscriber` with
`EnvFilter` defaulting to `"info"`. Override at runtime with:
**CLI subscriber:** `src/bin/voidbox/main.rs` initializes `tracing_subscriber` with
`EnvFilter` from the resolved log level (see `src/bin/voidbox/cli_config.rs` for merge order).
Override at runtime with `VOIDBOX_LOG_LEVEL` or `--log-level`, or set `RUST_LOG` when no explicit
CLI/config level is set:

```bash
RUST_LOG=debug cargo run --bin voidbox -- run --file spec.yaml
VOIDBOX_LOG_LEVEL=debug cargo run --bin voidbox -- run --file spec.yaml
# RUST_LOG also applies when VOIDBOX_LOG_LEVEL / config omit log_level
```

**Convention:** Workflow progress messages use the `[workflow:<name>]` prefix
Expand All @@ -171,7 +174,8 @@ pattern, e.g. `[workflow:my-flow] step 1/3: "build" running...`.
| `src/observe/logs.rs` | `StructuredLogger`, `LogConfig`, `LogEntry`, `LogLevel` |
| `src/observe/mod.rs` | `Observer` (owns logger), `SpanGuard` (RAII span + logging) |
| `src/workflow/scheduler.rs` | Step progress logging via `observer.logger()` |
| `src/bin/voidbox.rs` | CLI `tracing_subscriber` + `EnvFilter` setup |
| `src/bin/voidbox/main.rs` | CLI `tracing_subscriber` + `EnvFilter` setup |
| `src/bin/voidbox/cli_config.rs` | CLI config merge (`VOIDBOX_*`, YAML, `--log-level`) |

### Key source files

Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed
- Rust MSRV bumped to 1.88

## [0.1.2] - 2026-03-16

### Added
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ void-box/
│ ├── lib.rs # Main library entry point
│ ├── artifacts.rs # Artifact management
│ ├── bin/
│ │ └── voidbox.rs # CLI tool
│ │ └── voidbox/ # CLI tool
│ ├── sandbox/ # Sandbox abstraction
│ ├── workflow/ # Workflow engine
│ ├── observe/ # Observability layer
Expand Down
Loading
Loading