Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

---

## [0.25.0] - 2026-06-12
## [0.0.1] - 2026-06-12

> Versioning restarts at 0.0.x: the Memory client is a new product line. Entries
> below 0.0.1 document the retired agent-runtime CLI (unpublished from npm).

### Changed
- **BREAKING - Memory client reboot.** The CLI is now the agentage Memory client.
Expand Down
8 changes: 5 additions & 3 deletions CLAUDE.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# CLAUDE.md - @agentage/cli

Terminal client for agentage Memory. v0.25 reboot: `setup` (OAuth sign-in) + `status` only.
The pre-0.25 agent-runtime CLI (daemon, run/agents/machines/...) lives in git history only -
do not resurrect patterns from it.
Terminal client for agentage Memory. Rebooted 2026-06 with versioning RESTARTED at 0.0.x
(old npm versions were unpublished; earliest burned slot is 0.1.19 - stay below it until
the line naturally passes). Commands: `setup` (OAuth sign-in) + `status` only. The old
agent-runtime CLI (daemon, run/agents/machines/...) lives in git history only - do not
resurrect patterns from it.

## Layout
- `src/cli.ts` - commander entry (excluded from coverage; keep logic out of it)
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@

The terminal client for [agentage Memory](https://agentage.io) - one memory, every AI, owned by you.

> v0.25 is a reboot: the CLI is now the agentage **Memory client**. All agent-runtime
> commands from 0.24.x and earlier (daemon, run, agents, machines, ...) were removed.
> This package was rebooted as the agentage **Memory client** and its versioning
> restarts at 0.0.x. The old agent-runtime CLI (daemon, run, agents, machines, ...)
> was removed and unpublished.

## Install

Expand Down
11 changes: 6 additions & 5 deletions e2e/status.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@
* unauthenticated, against the live deployed target (AGENTAGE_SITE_FQDN,
* default dev). No credentials needed.
*/
import { createRequire } from 'node:module';
import { expect, test } from '@playwright/test';
import { assertCliBuilt, createCliMachine, statusJson, type CliMachine } from './helpers.js';

const require = createRequire(import.meta.url);
const pkg = require('../package.json') as { version: string };

let machine: CliMachine;

test.beforeAll(() => {
Expand All @@ -15,13 +19,10 @@ test.beforeAll(() => {

test.afterAll(() => machine.cleanup());

test('version identifies the memory client line @smoke', async () => {
test('version matches the package version @smoke', async () => {
const result = await machine.exec(['--version']);
expect(result.code, result.stderr).toBe(0);
const version = result.stdout.trim();
expect(version).toMatch(/^\d+\.\d+\.\d+/);
const [major = 0, minor = 0] = version.split('.').map(Number);
expect(major > 0 || minor >= 25, `expected the 0.25+ memory client, got ${version}`).toBe(true);
expect(result.stdout.trim()).toBe(pkg.version);
});

test('unauthenticated status degrades with a setup hint @smoke', async () => {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agentage/cli",
"version": "0.25.0",
"version": "0.0.1",
"description": "agentage Memory CLI - connect, clone, and manage your memory from the terminal",
"type": "module",
"main": "./dist/index.js",
Expand Down