A local-first private AI assistant for everyday use. Runs on-device models with encrypted P2P sync, and supports sharing chats publicly on ATProto.
10
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: init cli project

madclaws e38301e5 c27d35f3

+31
+1
.gitignore
··· 1 + /target
+7
Cargo.lock
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 4 4 + 5 + [[package]] 6 + name = "tilekit" 7 + version = "0.1.0"
+6
Cargo.toml
··· 1 + [package] 2 + name = "tilekit" 3 + version = "0.1.0" 4 + edition = "2024" 5 + 6 + [dependencies]
+14
src/lib.rs
··· 1 + pub fn add(left: u64, right: u64) -> u64 { 2 + left + right 3 + } 4 + 5 + #[cfg(test)] 6 + mod tests { 7 + use super::*; 8 + 9 + #[test] 10 + fn it_works() { 11 + let result = add(2, 2); 12 + assert_eq!(result, 4); 13 + } 14 + }
+3
src/main.rs
··· 1 + pub fn main() { 2 + println!("{}:{}", env!("CARGO_PKG_NAME"), env!("CARGO_PKG_VERSION")); 3 + }