Files
didactyl/src/main.h
T

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 0
#define DIDACTYL_VERSION_PATCH 89
#define DIDACTYL_VERSION "v0.0.89"
// 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 */