muster/constants.rs
1/// Human-facing application name, reused for window titles and labels.
2pub const APP_NAME: &str = "muster";
3
4/// Conventional workspace filename looked for in a project folder.
5pub const WORKSPACE_FILE_NAME: &str = "muster.yml";
6
7/// Environment variable exported into each spawned pane, holding the path of the
8/// current project's config so the `muster` CLI can target it without a flag.
9pub const MUSTER_PROJECT_ENV: &str = "MUSTER_PROJECT";
10/// Internal agent-session identity inherited by provider lifecycle hooks.
11pub const MUSTER_AGENT_SESSION_ENV: &str = "MUSTER_AGENT_SESSION_ID";
12/// Exact durable session-state file inherited by provider lifecycle hooks.
13pub const MUSTER_AGENT_SESSION_STATE_FILE_ENV: &str = "MUSTER_AGENT_SESSION_STATE_FILE";