@elizaos/plugin-bootstrap 0.1.7-alpha.2 → 0.1.8-alpha.1

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/README.md ADDED
@@ -0,0 +1,178 @@
1
+ # @elizaos/plugin-bootstrap
2
+
3
+ A plugin providing core functionality and basic actions for ElizaOS agents.
4
+
5
+ ## Description
6
+
7
+ The Bootstrap plugin enables fundamental agent behaviors including conversation management, room interactions, and fact tracking. It provides essential actions and evaluators that form the foundation of agent interactions.
8
+
9
+ ## Installation
10
+
11
+ ```bash
12
+ pnpm install @elizaos/plugin-bootstrap
13
+ ```
14
+
15
+ ## Features
16
+
17
+ ### 1. Conversation Management
18
+
19
+ - NONE action for basic responses
20
+ - CONTINUE action for follow-ups
21
+ - IGNORE action for appropriate disengagement
22
+ - Built-in conversation flow control
23
+
24
+ ### 2. Room Control
25
+
26
+ - Follow/Unfollow room functionality
27
+ - Mute/Unmute capabilities
28
+ - Automatic engagement level tracking
29
+ - Smart participation management
30
+
31
+ ### 3. Fact Management
32
+
33
+ - Automatic fact extraction
34
+ - Categorization of claims
35
+ - Deduplication of known information
36
+ - Support for multiple fact types:
37
+ - Permanent facts
38
+ - Status updates
39
+ - Opinions
40
+ - Biographical information
41
+
42
+ ### 4. Goal Tracking
43
+
44
+ - Track objective progress
45
+ - Update goal statuses
46
+ - Monitor completion states
47
+ - Automatic progress evaluation
48
+
49
+ ## Providers
50
+
51
+ ### 1. Boredom Provider
52
+
53
+ - Tracks engagement levels
54
+ - Provides status messages
55
+ - Monitors conversation quality
56
+ - Adjusts participation accordingly
57
+
58
+ ### 2. Facts Provider
59
+
60
+ - Manages fact database
61
+ - Retrieves relevant information
62
+ - Formats fact summaries
63
+ - Maintains fact context
64
+
65
+ ### 3. Time Provider
66
+
67
+ - Provides UTC timestamps
68
+ - Human-readable formatting
69
+ - Time-based operation support
70
+
71
+ ## Development
72
+
73
+ 1. Clone the repository
74
+ 2. Install dependencies:
75
+
76
+ ```bash
77
+ pnpm install
78
+ ```
79
+
80
+ 3. Build the plugin:
81
+
82
+ ```bash
83
+ pnpm run build
84
+ ```
85
+
86
+ 4. Run linting:
87
+
88
+ ```bash
89
+ pnpm run lint
90
+ ```
91
+
92
+ ## Dependencies
93
+
94
+ - @elizaos/core: workspace:\*
95
+
96
+ ## Future Enhancements
97
+
98
+ 1. **Enhanced Conversation Management**
99
+
100
+ - Advanced context tracking
101
+ - Multi-thread conversation support
102
+ - Conversation state persistence
103
+ - Improved conversation flow control
104
+ - Natural language understanding improvements
105
+
106
+ 2. **Advanced Room Control**
107
+
108
+ - Dynamic room creation and management
109
+ - Room permission system
110
+ - Advanced moderation tools
111
+ - Room analytics and insights
112
+ - Cross-room communication features
113
+
114
+ 3. **Expanded Fact Management**
115
+
116
+ - Enhanced fact verification system
117
+ - Fact relationship mapping
118
+ - Automated fact updating
119
+ - Fact confidence scoring
120
+ - Cross-reference system
121
+ - Fact expiration management
122
+
123
+ 4. **Goal System Improvements**
124
+
125
+ - Multi-step goal planning
126
+ - Goal dependency tracking
127
+ - Progress visualization
128
+ - Goal priority management
129
+ - Automated milestone tracking
130
+ - Goal optimization suggestions
131
+
132
+ 5. **Provider Enhancements**
133
+
134
+ - Improved boredom detection
135
+ - Advanced engagement metrics
136
+ - Enhanced fact retrieval algorithms
137
+ - Real-time status updates
138
+ - Provider performance analytics
139
+
140
+ 6. **Memory Management**
141
+
142
+ - Enhanced memory prioritization
143
+ - Memory compression techniques
144
+ - Long-term memory storage
145
+ - Memory relationship mapping
146
+ - Context-aware recall
147
+
148
+ 7. **Developer Tools**
149
+
150
+ - Enhanced debugging capabilities
151
+ - Testing framework improvements
152
+ - Plugin development templates
153
+ - Documentation generator
154
+ - Performance profiling tools
155
+
156
+ 8. **Integration Features**
157
+ - Enhanced plugin interoperability
158
+ - External service connectors
159
+ - API gateway integration
160
+ - Webhook system improvements
161
+ - Third-party platform support
162
+
163
+ We welcome community feedback and contributions to help prioritize these enhancements.
164
+
165
+ ## Contributing
166
+
167
+ Contributions are welcome! Please see the [CONTRIBUTING.md](CONTRIBUTING.md) file for more information.
168
+
169
+ ## Credits
170
+
171
+ Special thanks to:
172
+
173
+ - The Eliza Core development team
174
+ - The Eliza community for their contributions and feedback
175
+
176
+ ## License
177
+
178
+ This plugin is part of the Eliza project. See the main project repository for license information.
package/package.json CHANGED
@@ -1,20 +1,34 @@
1
1
  {
2
- "name": "@elizaos/plugin-bootstrap",
3
- "version": "0.1.7-alpha.2",
4
- "main": "dist/index.js",
5
- "type": "module",
6
- "types": "dist/index.d.ts",
7
- "dependencies": {
8
- "@elizaos/core": "0.1.7-alpha.2",
9
- "tsup": "8.3.5"
10
- },
11
- "scripts": {
12
- "build": "tsup --format esm --dts",
13
- "dev": "tsup --format esm --dts --watch",
14
- "lint": "eslint --fix --cache ."
15
- },
16
- "peerDependencies": {
17
- "whatwg-url": "7.1.0"
18
- },
19
- "gitHead": "256e6634696074cdb38f3f79bc383fed04376688"
2
+ "name": "@elizaos/plugin-bootstrap",
3
+ "version": "0.1.8-alpha.1",
4
+ "type": "module",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ "./package.json": "./package.json",
10
+ ".": {
11
+ "import": {
12
+ "@elizaos/source": "./src/index.ts",
13
+ "types": "./dist/index.d.ts",
14
+ "default": "./dist/index.js"
15
+ }
16
+ }
17
+ },
18
+ "files": [
19
+ "dist"
20
+ ],
21
+ "dependencies": {
22
+ "@elizaos/core": "0.1.8-alpha.1",
23
+ "tsup": "8.3.5"
24
+ },
25
+ "scripts": {
26
+ "build": "tsup --format esm --dts",
27
+ "dev": "tsup --format esm --dts --watch",
28
+ "lint": "eslint --fix --cache ."
29
+ },
30
+ "peerDependencies": {
31
+ "whatwg-url": "7.1.0"
32
+ },
33
+ "gitHead": "d5f2924d866c21b54543637b694695bd1f410621"
20
34
  }
package/dist/index.d.ts DELETED
@@ -1,65 +0,0 @@
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, index$1 as evaluators, index as providers };