| 394 | } |
| 395 | |
| 396 | static bool append_yaml_identity(profile_buffer_t *buffer, const char *slug, |
| 397 | const char *description) { |
| 398 | return profile_buffer_append(buffer, "---\nname: ") && profile_buffer_append(buffer, slug) && |
| 399 | profile_buffer_append(buffer, "\ndescription: ") && |
| 400 | profile_buffer_append(buffer, description) && profile_buffer_append(buffer, "\n"); |
| 401 | } |
| 402 | |
| 403 | static char *render_kiro_profile(cbm_graph_tier_t tier, cbm_graph_access_t access, |
| 404 | const char *binary_path, const char *prompt) { |
no test coverage detected