@stackmemoryai/stackmemory
Version:
Project-scoped memory for AI coding tools. Durable context across sessions with MCP integration, frames, smart retrieval, Claude Code skills, and automatic hooks.
15 lines (14 loc) • 526 B
JavaScript
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
};
//# sourceMappingURL=ping.js.map