nodus 0.6.0

Local-first CLI for managing project-scoped agent packages.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub(super) mod dependency;
pub(super) mod project;
pub(super) mod query;
pub(super) mod system;

use std::path::Path;

use crate::report::Reporter;

pub(crate) struct CommandContext<'a> {
    pub(crate) cwd: &'a Path,
    pub(crate) cache_root: &'a Path,
    pub(crate) reporter: &'a Reporter,
}