Single-commit clean baseline after security scrub of niche-tells, project codenames, internal jargon, and contributor-email leaks. Contents: - 100 Rust crates (_primitives/_rust/) - 37 agent manifests (_manifests/) + generated specs (_generated/) - 67 user-invocable skills (skills/) - 33 hooks (hooks/) - Composition blocks (_blocks/) - Documentation (docs/, README.md) - TS adapter packages (_ts_packages/) - Assembler (_assembler/) - Roles (_roles/) - Templates (_templates/) - Forgejo CI (.forgejo/) Author: Denis Parfionovich <info@greendragon.info> License: see LICENSE.
34 lines
961 B
TOML
34 lines
961 B
TOML
[package]
|
|
name = "kei-import-project"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Foreign project ingestion runtime: clone repo, walk tree, identify language modules, register in kei-registry. Composes existing primitives (kei-shared, kei-registry, kei-decompose, kei-skill-importer)."
|
|
authors = ["Denis Parfionovich <info@greendragon.info>"]
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "kei-import-project"
|
|
path = "src/main.rs"
|
|
|
|
[[bin]]
|
|
name = "kei-import"
|
|
path = "src/bin/kei_import.rs"
|
|
|
|
[dependencies]
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
toml = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
walkdir = { workspace = true }
|
|
clap = { workspace = true }
|
|
regex = { workspace = true }
|
|
kei-shared = { path = "../kei-shared" }
|
|
kei-registry = { path = "../kei-registry" }
|
|
kei-decompose = { path = "../kei-decompose" }
|
|
sha2 = { workspace = true }
|
|
rusqlite = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|