Skip to content

Tags: MEKXH/golem

Tags

v0.6.4

Toggle v0.6.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Dev (#25)

v0.6.3

Toggle v0.6.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Delete .Jules directory

v0.6.1

Toggle v0.6.1's commit message
fix(command): use markdown formatting for slash command output

Rewrite all command outputs to use proper markdown (bold headers, bullet
lists, code backticks) so glamour and Telegram renderers display them
correctly. Also auto-generate release notes summary instead of static
placeholder.

v0.6.0

Toggle v0.6.0's commit message
feat(command): add slash command framework with 7 built-in commands

Introduce internal/command/ package with a registry-based slash command
framework. Commands are intercepted in processMessage() before the LLM
call, working across all channels (TUI, Telegram, Discord, etc.).

Built-in commands: /help, /new, /version, /status, /cron, /skills, /memory

v0.5.5

Toggle v0.5.5's commit message
fix(version): fallback to module version for go install builds

Use runtime/debug.ReadBuildInfo() so that binaries installed via
go install display the tagged module version instead of "dev".

v0.5.4

Toggle v0.5.4's commit message
feat(cli): add golem version command

Prints version, OS, and architecture (e.g. "golem v0.5.3 linux/amd64").
Version is injected at build time via -ldflags.

v0.5.3

Toggle v0.5.3's commit message
fix: resolve empty reply and heartbeat leak to channels

- Agent loop now captures LLM content on every iteration, not only when
  tool calls are absent, preventing the "Processing complete." fallback
  from masking actual responses.
- Channel manager filters outbound messages with metadata type
  "heartbeat" so internal health-check logs no longer reach end users.