90ddbdbfc3
Brings the remaining foundation repos that were not included in the original monorepo consolidation: - arbor/vessels/ — 6 vessels (arbor-cli, arbor-core, arbor-diagram, arbor-layout, arbor-parse, arbor-render) with manifests + src/main.el - dharma/ — CGI Provenance Registry package (flat layout, 14 .el files across registry/, sandbox/, training/, validation/, tests/) - forge/ — consciousness channel tool (8 src .el files + new manifest.el) - elp/src/ — 36 test fixture files not carried over in original merge (dedup_*, realizer_*, semantics_*, morph_*, ext_*, one_extern_* helpers) el-ide, engram, elql are already complete in ide/, engram/, ql/.
24 lines
608 B
EmacsLisp
24 lines
608 B
EmacsLisp
// arbor-cli — the `arbor` command-line tool.
|
|
// Inlines its own copies of the parse / layout / render pipeline so that the
|
|
// resulting binary is self-contained. (El's `import` form today concatenates
|
|
// source; once a real module loader lands this becomes a thin driver.)
|
|
|
|
vessel "arbor-cli" {
|
|
version "0.1.0"
|
|
description "Command-line interface for the Arbor diagram language"
|
|
authors ["Neuron Technologies"]
|
|
edition "2026"
|
|
}
|
|
|
|
dependencies {
|
|
arbor-core "0.1"
|
|
arbor-parse "0.1"
|
|
arbor-layout "0.1"
|
|
arbor-render "0.1"
|
|
}
|
|
|
|
build {
|
|
entry "src/main.el"
|
|
output "dist/"
|
|
}
|