nanocodex 0.1.1

A small, high-performance, headless Rust agents SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::path::Path;

use crate::NanocodexError;

#[expect(
    clippy::unnecessary_wraps,
    reason = "matches the native instruction-loader contract"
)]
pub(super) fn load_project_instructions(
    _workspace: &Path,
) -> Result<Option<String>, NanocodexError> {
    Ok(None)
}