chore: regenerate dist/soul.c after merging the identity accessors (#148)
Neuron Soul CI / build (push) Failing after 14m37s
Neuron Soul CI / deploy (push) Has been skipped

studio.el changed, so the committed build input went stale the moment the merge
landed. CI compiles dist/soul.c, not the .el files. The stamp gate named
studio.el and refused; this is the regeneration it asked for.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
Neuron
2026-08-09 14:14:39 -05:00
parent 5f0bb67cbf
commit 72e0b829c2
2 changed files with 4 additions and 4 deletions
Generated Vendored
+1 -1
View File
@@ -29333,7 +29333,7 @@ el_val_t handle_config(el_val_t method, el_val_t body) {
el_val_t dharma_registry(void) {
el_val_t cgi_id = state_get(EL_STR("soul_cgi_id"));
el_val_t principal = state_get(EL_STR("soul_principal"));
el_val_t principal = cgi_principal();
return el_str_concat(el_str_concat(el_str_concat(el_str_concat(el_str_concat(el_str_concat(el_str_concat(el_str_concat(el_str_concat(el_str_concat(EL_STR("{\"registry\":[{\"cgi\":\""), cgi_id), EL_STR("\",")), EL_STR("\"principal\":\"")), principal), EL_STR("\",")), EL_STR("\"covenant\":\"Principal Covenant v1\",")), EL_STR("\"registered\":\"2026-05-01\",\"provenance\":\"genesis\",")), EL_STR("\"entry\":1}],")), EL_STR("\"network_status\":\"initializing\",")), EL_STR("\"total_cgis\":1}"));
return 0;
}