rigmode 0.1.0

Attach work modes to AI coding agent prompts
1
2
3
4
5
6
7
8
9
/// What an agent hook handed us for one prompt. Agent-agnostic; adapters
/// decode their own payload into this.
#[derive(Debug)]
pub struct PromptMeta {
    pub prompt: String,
    pub session_id: Option<String>,
    pub transcript_path: Option<String>,
    pub cwd: Option<String>,
}