Files
Skald-Circle/crates/skald-core/src/lib.rs
T
dguiducci fb3eeeeec6
Nightly Build / build (push) Failing after 6s
Refactor: remove desktop/Tauri bundle, add i18n, CI/CD pipeline
- Remove desktop (Tauri) bundle: docs/desktop.md, icons/, tauri.conf.json,
  src/desktop/mod.rs, gen/schemas/
- Remove build.rs (no longer needed)
- Add i18n system (crates/core-api, plugin-mobile-connector, web)
- Refactor config system (src/config.rs, boot_format.rs)
- Add mobile connector features (app, router, device pairing)
- Plugin system improvements (skald-core)
- Update dependencies (Cargo.lock, Cargo.toml)
- CI/CD: Gitea Actions workflows (nightly + release), package.sh,
  verify-version.sh, builds.skaldagent.net config
2026-07-19 22:35:06 +01:00

51 lines
1.1 KiB
Rust

//! The headless Skald core: storage, identity, LLM stack, tools, sessions.
//!
//! Nothing here knows what runs it. The process shell — HTTP server, setup
//! wizard — lives in the crates that depend on this one. Concrete
//! plugins are never named: `plugin::PluginManager` only ever sees
//! `Arc<dyn Plugin>`, constructed by the consumer and handed to `Skald::new`.
pub mod boot;
pub mod config;
pub mod auth;
pub mod config_store;
pub mod skald;
pub mod agents;
pub mod approval;
pub mod chat_event_bus;
pub mod chat_hub;
pub mod chatbot;
pub mod clarification;
pub mod command;
pub mod compactor;
pub mod container;
pub mod crypto;
pub mod elicitation;
pub mod cron;
pub mod db;
pub mod events;
pub mod image_generate;
pub mod i18n;
pub mod inbox;
pub mod latex;
pub mod llm;
pub mod location;
pub mod memory;
pub mod mcp;
pub mod notification;
pub mod pending_registry;
pub mod plugin;
pub mod projects;
pub mod provider;
pub mod run_context;
pub mod secrets;
pub mod service_manager;
pub mod session;
pub mod tic;
pub mod tool_catalog;
pub mod tool_discovery;
pub mod tools;
pub mod transcribe;
pub mod tts;
pub mod users;