1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//! ClawHub marketplace integration.
//!
//! Provides a client for searching and downloading skills from the ClawHub
//! registry, plus an installer that handles zip extraction, origin tracking,
//! and lockfile management.
//!
//! # Directory Layout
//!
//! ```text
//! workspace/
//! .clawhub/
//! lock.json ← lockfile (all installed ClawHub skills)
//! skills/
//! code-review/
//! SKILL.md
//! .clawhub/
//! origin.json ← per-skill origin metadata
//! ```
//!
//! # Example
//!
//! ```no_run
//! use oxios_kernel::clawhub::{ClawHubInstaller, InstallResult};
//! use std::path::PathBuf;
//!
//! # async fn example() -> anyhow::Result<()> {
//! let installer = ClawHubInstaller::new(
//! PathBuf::from("/home/user/.oxios/skills"),
//! PathBuf::from("/home/user/oxios-workspace"),
//! None,
//! );
//!
//! let result = installer.install("code-review-helper", None).await?;
//! # Ok(())
//! # }
//! ```
pub use ;
pub use ;
pub use ;