Skip to content

Commit b76e539

Browse files
committed
v0.18.1: sync version strings and test count across all files
Version constants in server.ts, mcp/server.ts, cli/index.ts, README badge, and CLAUDE.md header were still at 0.17.0 after the v0.18.0 release. Updated all to 0.18.1 and test count from 770 to 785.
1 parent 108846c commit b76e539

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Phantom
22

3-
Phantom is an autonomous AI co-worker that runs as a persistent Bun process on a VM. It wraps the Claude Agent SDK (Opus 4.6), maintains vector-backed memory across sessions, rewrites its own configuration through a validated self-evolution engine, communicates via Slack/Telegram/Email/Webhook, and exposes all capabilities as an MCP server. 27,000+ lines of TypeScript, 770 tests, v0.17.0. Apache 2.0, repo at ghostwright/phantom.
3+
Phantom is an autonomous AI co-worker that runs as a persistent Bun process on a VM. It wraps the Claude Agent SDK (Opus 4.6), maintains vector-backed memory across sessions, rewrites its own configuration through a validated self-evolution engine, communicates via Slack/Telegram/Email/Webhook, and exposes all capabilities as an MCP server. 27,000+ lines of TypeScript, 785 tests, v0.18.1. Apache 2.0, repo at ghostwright/phantom.
44

55
## Tech Stack
66

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
<p align="center">
99
<a href="LICENSE"><img src="https://img.shields.io/badge/license-Apache%202.0-blue.svg" alt="License"></a>
10-
<img src="https://img.shields.io/badge/tests-770%20passed-brightgreen.svg" alt="Tests">
10+
<img src="https://img.shields.io/badge/tests-785%20passed-brightgreen.svg" alt="Tests">
1111
<a href="https://hub.docker.com/r/ghostwright/phantom"><img src="https://img.shields.io/docker/pulls/ghostwright/phantom.svg" alt="Docker Pulls"></a>
12-
<img src="https://img.shields.io/badge/version-0.17.0-orange.svg" alt="Version">
12+
<img src="https://img.shields.io/badge/version-0.18.1-orange.svg" alt="Version">
1313
</p>
1414

1515
<p align="center">

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "phantom",
3-
"version": "0.18.0",
3+
"version": "0.18.1",
44
"type": "module",
55
"bin": {
66
"phantom": "src/cli/main.ts"

src/cli/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function printHelp(): void {
1717
}
1818

1919
function printVersion(): void {
20-
console.log("phantom 0.17.0");
20+
console.log("phantom 0.18.1");
2121
}
2222

2323
export async function runCli(argv: string[]): Promise<void> {

src/core/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import type { PhantomMcpServer } from "../mcp/server.ts";
55
import type { MemoryHealth } from "../memory/types.ts";
66
import { handleUiRequest } from "../ui/serve.ts";
77

8-
const VERSION = "0.17.0";
8+
const VERSION = "0.18.1";
99

1010
type MemoryHealthProvider = () => Promise<MemoryHealth>;
1111
type EvolutionVersionProvider = () => number;

src/mcp/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export class PhantomMcpServer {
8181

8282
private createMcpServer(): McpServer {
8383
const server = new McpServer(
84-
{ name: `phantom-${this.toolDeps.config.name}`, version: "0.17.0" },
84+
{ name: `phantom-${this.toolDeps.config.name}`, version: "0.18.1" },
8585
{ capabilities: { logging: {} } },
8686
);
8787

0 commit comments

Comments
 (0)