Add readline, color, http_post_auth builtins; fix import resolution in build

Engram can now power the Neuron CLI:

- readline(prompt) -> String: interactive terminal input via stdin
- http_post_auth(url, token, body) -> String: authenticated POST for daemon API
- color_cyan/green/red/yellow/bold/dim(s) -> String: ANSI color output
  All registered in el-types type checker

- el build now resolves import "file.el" directives recursively (was only
  done for el run-file and el check; project builds failed silently)

- Add .gitignore (target/, *.elc, *.sealed, *.map.json)
This commit is contained in:
Will Anderson
2026-04-28 13:46:22 -05:00
parent 094ca39b15
commit b62df85969
4 changed files with 354 additions and 6 deletions
+6
View File
@@ -0,0 +1,6 @@
target/
*.elc
*.sealed
*.map.json
.el/
.claude/