UNPKG

@stackmemoryai/stackmemory

Version:

Lossless, project-scoped memory for AI coding tools. Durable context across sessions with 56 MCP tools, FTS5 search, conductor orchestrator, loop/watch monitoring, snapshot capture, pre-flight overlap checks, Claude/Codex/OpenCode wrappers, Linear sync, a

14 lines (13 loc) 493 B
import { fileURLToPath as __fileURLToPath } from 'url'; import { dirname as __pathDirname } from 'path'; const __filename = __fileURLToPath(import.meta.url); const __dirname = __pathDirname(__filename); import { Command } from "commander"; function createPingCommand() { return new Command("ping").description('Health check command (prints "pong" with timestamp)').action(() => { console.log(`pong ${(/* @__PURE__ */ new Date()).toISOString()}`); }); } export { createPingCommand };