zeph 0.22.3

Lightweight AI agent with hybrid inference, skills-first architecture, and multi-channel I/O
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-FileCopyrightText: 2026 Andrei G <bug-ops>
// SPDX-License-Identifier: MIT OR Apache-2.0

//! URL scheme handling for `zeph://` deep links.
//!
//! This module contains platform-specific registration and validation logic for
//! the `zeph://` URI scheme. It is gated behind the `deep-link` feature flag.
//!
//! # Modules
//!
//! - [`validate`] — CWD path validation following INV-CWD from spec §3.
//! - [`register`] — platform-specific scheme registration (Linux, macOS, Windows).

pub mod prompt;
pub mod register;
pub mod validate;