Skip to content

Commit 8693453

Browse files
committed
v0.17.0: launch-ready release
1 parent 9634a50 commit 8693453

6 files changed

Lines changed: 6 additions & 6 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.16.3. 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, 770 tests, v0.17.0. Apache 2.0, repo at ghostwright/phantom.
44

55
## Tech Stack
66

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<a href="LICENSE"><img src="https://img.shields.io/badge/license-Apache%202.0-blue.svg" alt="License"></a>
1010
<img src="https://img.shields.io/badge/tests-770%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.16.3-orange.svg" alt="Version">
12+
<img src="https://img.shields.io/badge/version-0.17.0-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.16.3",
3+
"version": "0.17.0",
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.16.3");
20+
console.log("phantom 0.17.0");
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.16.3";
8+
const VERSION = "0.17.0";
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.16.3" },
84+
{ name: `phantom-${this.toolDeps.config.name}`, version: "0.17.0" },
8585
{ capabilities: { logging: {} } },
8686
);
8787

0 commit comments

Comments
 (0)