Skip to content

agent_memory v0.0.1

Choose a tag to compare

@github-actions github-actions released this 30 Jun 13:37
· 135 commits to main since this release

πŸš€ agent_memory Release v0.0.1

πŸ“ What's Changed

  • Initial commit (a39f4fd)
  • feat: install wrappers, CI workflows, CLI help registry, skill command and pre-commit hook (7737af8)
  • chore: pre-commit quality gates β€” coverage ratchet and duplication check (8d91ba3)
  • refactor: deduplicate codebase and tighten pre-commit duplication gate to 1% (1885db5)
  • fix: use lowercase person file id for cross-platform profile paths (60c43b0)
  • ci: fix installer test bin dir; deps: use latest package versions (236a58e)
  • ci: use latest stable Dart SDK; deps: require Dart >=3.12 (a8dd0f7)
  • ci: bump Actions to Node 24 versions (checkout v6, upload v7, download v8, gh-release v3) (b37b0fc)
  • ci: add automated release workflow; reset version to 0.0.0 for first release (e87c067)
  • version increased to 0.0.1 (d807578)
  • ci: release workflow also triggers on tag push (73cf129)

A Dart memory / knowledge-base CLI and library. Turn text, images, or directories into a structured Markdown KB and query it with any OpenAI-compatible LLM.

πŸ“¦ What's Included

  • Native binaries for Linux, macOS, and Windows
  • Cross-platform install scripts (bash, PowerShell, Windows batch)
  • Development wrappers for running from source

🎯 Quick Start

Install the CLI

macOS / Linux:

curl -fsSL https://github.com/IstiN/flutter_agent_memory/releases/latest/download/install.sh | bash

Windows (PowerShell):

irm https://github.com/IstiN/flutter_agent_memory/releases/latest/download/install.ps1 | iex

Windows (cmd.exe):

curl -fsSL https://github.com/IstiN/flutter_agent_memory/releases/latest/download/install.bat -o %TEMP%\agent_memory-install.bat && %TEMP%\agent_memory-install.bat

Install a Specific Version (v0.0.1)

macOS / Linux:

curl -fsSL https://github.com/IstiN/flutter_agent_memory/releases/download/v0.0.1/install.sh | bash

Windows (PowerShell):

irm https://github.com/IstiN/flutter_agent_memory/releases/download/v0.0.1/install.ps1 | iex

πŸ› οΈ Development Wrapper

If you already have the repo cloned and Dart installed:

./scripts/agent_memory.sh --help

πŸ“‹ System Requirements

  • Dart SDK 3.12+ (only if running from source; the native binary has no runtime dependency)
  • ~50 MB disk space

πŸ“Š Build Information

  • Version: v0.0.1
  • Build Date: 2026-06-30 13:37:45 UTC
  • Git Commit: 73cf1291

πŸ› Troubleshooting

  • If agent_memory is not found after install, restart your terminal or run source ~/.bashrc / source ~/.zshrc.
  • For source runs, ensure a .env file with your LLM credentials is in the working directory.

πŸ†˜ Getting Help