formagent-sdk 0.2.0 → 0.3.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/README.md +2 -0
- package/dist/cli/index.js +1546 -134
- package/dist/index.js +1195 -34
- package/docs/README.md +126 -0
- package/docs/api-reference.md +677 -0
- package/docs/getting-started.md +273 -0
- package/docs/mcp-servers.md +465 -0
- package/docs/session-storage.md +320 -0
- package/docs/tools.md +501 -0
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -228,6 +228,8 @@ for await (const event of session.receive()) {
|
|
|
228
228
|
|
|
229
229
|
## Session Management
|
|
230
230
|
|
|
231
|
+
**Default Behavior:** Sessions use in-memory storage by default. Conversation history is lost when the process exits. Use `FileSessionStorage` for persistence across restarts.
|
|
232
|
+
|
|
231
233
|
### Persistent Sessions
|
|
232
234
|
|
|
233
235
|
Enable session persistence with `FileSessionStorage`:
|