MCPcopy Create free account
hub / github.com/CreminiAI/skillpack / ManagedJob

Interface ManagedJob

src/runtime/adapters/scheduler.ts:29–40  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27// ---------------------------------------------------------------------------
28
29interface ManagedJob {
30 config: ScheduledJobConfig;
31 /** null when the job is one-time or disabled (no cron task created) */
32 task: ReturnType<typeof cron.schedule> | null;
33 lastRunAt?: string;
34 lastResult?: string;
35 lastError?: string;
36 /** true while the agent is executing the prompt */
37 running: boolean;
38 /** true while notification delivery failed on the last run */
39 notifyFailed: boolean;
40}
41
42export interface JobStatus {
43 id: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected