@elizaos/plugin-scheduling 2.0.3-beta.2 → 2.0.3-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +7 -8
- package/registry-entry.json +35 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/plugin-scheduling",
|
|
3
|
-
"version": "2.0.3-beta.
|
|
3
|
+
"version": "2.0.3-beta.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Scheduling spine for elizaOS agents: the storage-agnostic ScheduledTask state machine — trigger evaluation (cron/interval/once/event/after_task/relative_to_anchor/during_window), gate + completion-check + escalation-ladder + anchor + consolidation registries, the due/next-fire-at math, and the runner. Persistence + owner/channel/connector deps are injected by the host (e.g. @elizaos/plugin-personal-assistant). Reminders register a tick-hook via the ports here.",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"build": "bun run build:js && bun run build:types",
|
|
12
12
|
"clean": "rm -rf dist",
|
|
13
13
|
"build:js": "tsup --config ../tsup.plugin-packages.shared.ts",
|
|
14
|
-
"build:types": "bunx tsc --noCheck -p tsconfig.build.json"
|
|
14
|
+
"build:types": "bunx tsc --noCheck -p tsconfig.build.json && node ../../packages/scripts/rewrite-dist-relative-imports-node-esm.mjs"
|
|
15
15
|
},
|
|
16
16
|
"exports": {
|
|
17
17
|
"./package.json": "./package.json",
|
|
@@ -47,20 +47,19 @@
|
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@elizaos/
|
|
51
|
-
"@elizaos/
|
|
52
|
-
"@elizaos/core": "2.0.3-beta.2",
|
|
53
|
-
"@elizaos/shared": "2.0.3-beta.2",
|
|
50
|
+
"@elizaos/core": "2.0.3-beta.3",
|
|
51
|
+
"@elizaos/shared": "2.0.3-beta.3",
|
|
54
52
|
"drizzle-orm": "^0.45.1"
|
|
55
53
|
},
|
|
56
54
|
"peerDependencies": {
|
|
57
|
-
"@elizaos/plugin-sql": "2.0.3-beta.
|
|
55
|
+
"@elizaos/plugin-sql": "2.0.3-beta.3"
|
|
58
56
|
},
|
|
59
57
|
"publishConfig": {
|
|
60
58
|
"access": "public"
|
|
61
59
|
},
|
|
62
60
|
"types": "./dist/index.d.ts",
|
|
63
61
|
"files": [
|
|
62
|
+
"registry-entry.json",
|
|
64
63
|
"dist"
|
|
65
64
|
],
|
|
66
65
|
"devDependencies": {
|
|
@@ -70,5 +69,5 @@
|
|
|
70
69
|
"typescript": "^6.0.3",
|
|
71
70
|
"vitest": "^4.0.17"
|
|
72
71
|
},
|
|
73
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "f54b0f4eaed317d59fa7dbcdce20f4cdb0734420"
|
|
74
73
|
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "scheduling",
|
|
3
|
+
"name": "Scheduling",
|
|
4
|
+
"description": "Scheduling and calendar coordination plugin for ElizaOS agents",
|
|
5
|
+
"npmName": "@elizaos/plugin-scheduling",
|
|
6
|
+
"version": "2.0.0-beta.0",
|
|
7
|
+
"source": "bundled",
|
|
8
|
+
"tags": ["scheduling", "calendar"],
|
|
9
|
+
"config": {
|
|
10
|
+
"DEFAULT_TIMEZONE": {
|
|
11
|
+
"type": "string",
|
|
12
|
+
"required": false,
|
|
13
|
+
"sensitive": false,
|
|
14
|
+
"label": "Timezone",
|
|
15
|
+
"help": "Default timezone (e.g. America/New_York)",
|
|
16
|
+
"advanced": false
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"render": {
|
|
20
|
+
"visible": true,
|
|
21
|
+
"pinTo": [],
|
|
22
|
+
"style": "card",
|
|
23
|
+
"icon": "Calendar",
|
|
24
|
+
"group": "automation",
|
|
25
|
+
"groupOrder": 9,
|
|
26
|
+
"actions": ["enable", "configure"]
|
|
27
|
+
},
|
|
28
|
+
"resources": {
|
|
29
|
+
"homepage": "https://github.com/elizaos/eliza#readme",
|
|
30
|
+
"repository": "https://github.com/elizaos/eliza"
|
|
31
|
+
},
|
|
32
|
+
"dependsOn": [],
|
|
33
|
+
"kind": "plugin",
|
|
34
|
+
"subtype": "automation"
|
|
35
|
+
}
|