- Add plugin/calendar/types.ts: TypeScript interfaces for heartbeat request/response (CalendarHeartbeatRequest/Response, CalendarSlotResponse, SlotAgentUpdate, all enums: SlotType, SlotStatus, EventType) - Add plugin/calendar/calendar-bridge.ts: CalendarBridgeClient HTTP client with heartbeat(), updateSlot(), updateVirtualSlot(), reportAgentStatus() - Add plugin/calendar/index.ts: module entry point exporting all public types - Add docs/PLG-CAL-001-calendar-heartbeat-format.md: full specification documenting claw_identifier and agent_id determination, request/response shapes, error handling, and endpoint summary - Update plugin/openclaw.plugin.json: add calendarEnabled, calendarHeartbeatIntervalSec, calendarApiKey config options; clarify identifier description as claw_identifier Refs: HarborForge.NEXT_WAVE_DEV_DIRECTION.md §6, BE-AGT-001
39 lines
1.6 KiB
JavaScript
39 lines
1.6 KiB
JavaScript
"use strict";
|
|
/**
|
|
* HarborForge Calendar — Plugin Module
|
|
*
|
|
* PLG-CAL-001: Calendar heartbeat request/response format definition.
|
|
*
|
|
* Exports:
|
|
* • Types for heartbeat request/response and slot update
|
|
* • CalendarBridgeClient — HTTP client for backend communication
|
|
* • createCalendarBridgeClient — factory from plugin API context
|
|
*
|
|
* Usage in plugin/index.ts:
|
|
* import { createCalendarBridgeClient } from './calendar';
|
|
*
|
|
* const agentId = process.env.AGENT_ID || 'unknown';
|
|
* const calendar = createCalendarBridgeClient(api, 'https://monitor.hangman-lab.top', agentId);
|
|
*
|
|
* // Inside gateway_start or heartbeat tick:
|
|
* const result = await calendar.heartbeat();
|
|
* if (result?.slots.length) { /* handle pending slots /\ }
|
|
*/
|
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
}
|
|
Object.defineProperty(o, k2, desc);
|
|
}) : (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
o[k2] = m[k];
|
|
}));
|
|
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
__exportStar(require("./types"), exports);
|
|
__exportStar(require("./calendar-bridge"), exports);
|
|
//# sourceMappingURL=index.js.map
|