24 lines
737 B
C
24 lines
737 B
C
/*
|
|
* Didactyl Main Header - Version and Metadata Information
|
|
*
|
|
* This header contains version information and agent metadata.
|
|
* Version macros are auto-updated by the build system.
|
|
*/
|
|
|
|
#ifndef DIDACTYL_MAIN_H
|
|
#define DIDACTYL_MAIN_H
|
|
|
|
// Version information (auto-updated by build system)
|
|
// Using DIDACTYL_ prefix to avoid conflicts with nostr_core_lib VERSION macros
|
|
#define DIDACTYL_VERSION_MAJOR 0
|
|
#define DIDACTYL_VERSION_MINOR 2
|
|
#define DIDACTYL_VERSION_PATCH 47
|
|
#define DIDACTYL_VERSION "v0.2.47"
|
|
|
|
// Agent metadata
|
|
#define DIDACTYL_NAME "Didactyl"
|
|
#define DIDACTYL_DESCRIPTION "A sovereign AI agent daemon on Nostr"
|
|
#define DIDACTYL_SOFTWARE "https://git.laantungir.net/laantungir/didactyl.git"
|
|
|
|
#endif /* DIDACTYL_MAIN_H */
|