aphrodite-hermes 1.3.1

aphrodite-hermes: Hermes Agent-specific integration for Aphrodite compression engine - tool schemas, hook dispatch, skill registration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Install-helper binary for `cargo install aphrodite-hermes`.
//! This crate is a cdylib consumed by the Hermes plugin; this binary
//! exists solely so `cargo install` can place the .dylib alongside it
//! in ~/.cargo/bin/ where `aphrodite setup` will find it.

fn main() {
	println!(
		"aphrodite-hermes v{} — dylib installed for Hermes plugin.",
		env!("CARGO_PKG_VERSION")
	);
	#[cfg(target_os = "macos")]
	eprintln!("dylib: {}/libaphrodite_hermes.dylib", env!("CARGO_MANIFEST_DIR"));
	println!("Run 'aphrodite setup' to complete the installation.");
}