v0.1.0 skel

This commit is contained in:
2026-04-07 12:25:12 +02:00
commit ed38e73949
57 changed files with 981 additions and 0 deletions

15
sca-core/Cargo.toml Normal file
View File

@@ -0,0 +1,15 @@
# file: sca-core/Cargo.toml
[package]
name = "sca-core"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
publish.workspace = true
[dependencies]
serde.workspace = true
serde_json.workspace = true
uuid.workspace = true
chrono.workspace = true

1
sca-core/src/action.rs Normal file
View File

@@ -0,0 +1 @@
// file: sca-core/src/action.rs

2
sca-core/src/context.rs Normal file
View File

@@ -0,0 +1,2 @@
// file: sca-core/src/context.rs

0
sca-core/src/error.rs Normal file
View File

0
sca-core/src/ids.rs Normal file
View File

View File

@@ -0,0 +1,2 @@
// file: sca-core/src/iteration.rs

2
sca-core/src/kb.rs Normal file
View File

@@ -0,0 +1,2 @@
// file: sca-core/src/kb.rs

21
sca-core/src/lib.rs Normal file
View File

@@ -0,0 +1,21 @@
// file: sca-core/src/lib.rs
//! Sase Coding Agent - Core
#![deny(unreachable_pub)]
#![warn(missing_docs)]
// #![deny(missing_docs)]
mod action;
mod context;
mod error;
mod ids;
mod iteration;
mod kb;
mod policy;
mod project;
mod provider;
mod task;
mod time;
mod tool;

2
sca-core/src/policy.rs Normal file
View File

@@ -0,0 +1,2 @@
// file: sca-core/src/policy.rs

2
sca-core/src/project.rs Normal file
View File

@@ -0,0 +1,2 @@
// file: sca-core/src/project.rs

2
sca-core/src/provider.rs Normal file
View File

@@ -0,0 +1,2 @@
// file: sca-core/src/provider.rs

2
sca-core/src/task.rs Normal file
View File

@@ -0,0 +1,2 @@
// file: sca-core/src/task.rs

0
sca-core/src/time.rs Normal file
View File

2
sca-core/src/tool.rs Normal file
View File

@@ -0,0 +1,2 @@
// file: sca-core/src/tool.rs