@elizaos/plugin-bootstrap 0.1.8-alpha.1 → 0.1.9
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/LICENSE +2 -2
- package/dist/index.d.ts +65 -0
- package/dist/index.js +2814 -0
- package/dist/index.js.map +1 -0
- package/package.json +32 -32
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2025 Shaw Walters, aka Moon aka @lalalune
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
18
18
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
19
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
20
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
21
|
+
SOFTWARE.
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { Action, Memory, Evaluator, Provider, Plugin } from '@elizaos/core';
|
|
2
|
+
|
|
3
|
+
declare const messageHandlerTemplate: string;
|
|
4
|
+
declare const shouldContinueTemplate: string;
|
|
5
|
+
declare const continueAction: Action;
|
|
6
|
+
|
|
7
|
+
declare const shouldFollowTemplate: string;
|
|
8
|
+
declare const followRoomAction: Action;
|
|
9
|
+
|
|
10
|
+
declare const ignoreAction: Action;
|
|
11
|
+
|
|
12
|
+
declare const shouldMuteTemplate: string;
|
|
13
|
+
declare const muteRoomAction: Action;
|
|
14
|
+
|
|
15
|
+
declare const noneAction: Action;
|
|
16
|
+
|
|
17
|
+
declare const unfollowRoomAction: Action;
|
|
18
|
+
|
|
19
|
+
declare const shouldUnmuteTemplate: string;
|
|
20
|
+
declare const unmuteRoomAction: Action;
|
|
21
|
+
|
|
22
|
+
declare const index$2_continueAction: typeof continueAction;
|
|
23
|
+
declare const index$2_followRoomAction: typeof followRoomAction;
|
|
24
|
+
declare const index$2_ignoreAction: typeof ignoreAction;
|
|
25
|
+
declare const index$2_messageHandlerTemplate: typeof messageHandlerTemplate;
|
|
26
|
+
declare const index$2_muteRoomAction: typeof muteRoomAction;
|
|
27
|
+
declare const index$2_noneAction: typeof noneAction;
|
|
28
|
+
declare const index$2_shouldContinueTemplate: typeof shouldContinueTemplate;
|
|
29
|
+
declare const index$2_shouldFollowTemplate: typeof shouldFollowTemplate;
|
|
30
|
+
declare const index$2_shouldMuteTemplate: typeof shouldMuteTemplate;
|
|
31
|
+
declare const index$2_shouldUnmuteTemplate: typeof shouldUnmuteTemplate;
|
|
32
|
+
declare const index$2_unfollowRoomAction: typeof unfollowRoomAction;
|
|
33
|
+
declare const index$2_unmuteRoomAction: typeof unmuteRoomAction;
|
|
34
|
+
declare namespace index$2 {
|
|
35
|
+
export { index$2_continueAction as continueAction, index$2_followRoomAction as followRoomAction, index$2_ignoreAction as ignoreAction, index$2_messageHandlerTemplate as messageHandlerTemplate, index$2_muteRoomAction as muteRoomAction, index$2_noneAction as noneAction, index$2_shouldContinueTemplate as shouldContinueTemplate, index$2_shouldFollowTemplate as shouldFollowTemplate, index$2_shouldMuteTemplate as shouldMuteTemplate, index$2_shouldUnmuteTemplate as shouldUnmuteTemplate, index$2_unfollowRoomAction as unfollowRoomAction, index$2_unmuteRoomAction as unmuteRoomAction };
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
declare const formatFacts: (facts: Memory[]) => string;
|
|
39
|
+
declare const factEvaluator: Evaluator;
|
|
40
|
+
|
|
41
|
+
declare const goalEvaluator: Evaluator;
|
|
42
|
+
|
|
43
|
+
declare const index$1_factEvaluator: typeof factEvaluator;
|
|
44
|
+
declare const index$1_formatFacts: typeof formatFacts;
|
|
45
|
+
declare const index$1_goalEvaluator: typeof goalEvaluator;
|
|
46
|
+
declare namespace index$1 {
|
|
47
|
+
export { index$1_factEvaluator as factEvaluator, index$1_formatFacts as formatFacts, index$1_goalEvaluator as goalEvaluator };
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
declare const boredomProvider: Provider;
|
|
51
|
+
|
|
52
|
+
declare const timeProvider: Provider;
|
|
53
|
+
|
|
54
|
+
declare const factsProvider: Provider;
|
|
55
|
+
|
|
56
|
+
declare const index_boredomProvider: typeof boredomProvider;
|
|
57
|
+
declare const index_factsProvider: typeof factsProvider;
|
|
58
|
+
declare const index_timeProvider: typeof timeProvider;
|
|
59
|
+
declare namespace index {
|
|
60
|
+
export { index_boredomProvider as boredomProvider, index_factsProvider as factsProvider, index_timeProvider as timeProvider };
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
declare const bootstrapPlugin: Plugin;
|
|
64
|
+
|
|
65
|
+
export { index$2 as actions, bootstrapPlugin, bootstrapPlugin as default, index$1 as evaluators, index as providers };
|