transactional-ai 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +8 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -5,6 +5,7 @@ Implement the Saga Pattern with persistent rollback and state recovery for Long-
5
5
 
6
6
  [![npm version](https://img.shields.io/npm/v/transactional-ai.svg)](https://www.npmjs.com/package/transactional-ai)
7
7
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
8
+ ![CI](https://github.com/Grafikui/transactional-ai-control-plane/actions/workflows/ci.yml/badge.svg)
8
9
 
9
10
  ## Why use this?
10
11
  AI Agents are flaky. Steps fail, APIs time out, and hallucinations happen.
@@ -140,6 +141,13 @@ agent.step({
140
141
  });
141
142
  ```
142
143
 
144
+ ## Limitations (v0.1.0)
145
+ This release is designed as a Single-Process MVP.
146
+
147
+ 1. Concurrency: Do not run the same transaction-id across multiple worker processes simultaneously. Distributed locking (Redlock) is not yet implemented, so race conditions may occur if you horizontally scale workers on the same ID.
148
+
149
+ 2. Storage: Currently supports Redis and local FileSystem. SQL adapters are in development.
150
+
143
151
  ---
144
152
 
145
153
  ## Roadmap
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "transactional-ai",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "A reliability protocol for AI Agents. Saga pattern with persistent rollback.",
5
5
  "main": "dist/index.js",
6
6
  "bin": {