21 lines
541 B
TypeScript
21 lines
541 B
TypeScript
import { join } from "path";
|
|
|
|
const HEARTBEAT_DIR = join(process.cwd(), ".qwen", "qwenclaw");
|
|
|
|
// Write state.json so the statusline script can read fresh data
|
|
export interface StateData {
|
|
heartbeat?: { nextAt: number };
|
|
jobs: { name: string; nextAt: number }[];
|
|
security: string;
|
|
telegram: boolean;
|
|
startedAt: number;
|
|
web?: { enabled: boolean; host: string; port: number };
|
|
}
|
|
|
|
export async function writeState(state: StateData) {
|
|
await Bun.write(
|
|
join(HEARTBEAT_DIR, "state.json"),
|
|
JSON.stringify(state) + "\n"
|
|
);
|
|
}
|