xcomponent-ai 0.1.1 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  # 🤖 xcomponent-ai
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/xcomponent-ai.svg)](https://www.npmjs.com/package/xcomponent-ai)
4
- [![npm downloads](https://img.shields.io/npm/dm/xcomponent-ai.svg)](https://www.npmjs.com/package/xcomponent-ai)
4
+ [![npm downloads](https://img.shields.io/npm/dt/xcomponent-ai.svg)](https://www.npmjs.com/package/xcomponent-ai)
5
5
  [![CI](https://github.com/fredericcarre/mayele-ai/workflows/CI/badge.svg)](https://github.com/fredericcarre/mayele-ai/actions)
6
6
  [![Coverage](https://img.shields.io/badge/coverage-79.91%25-brightgreen.svg)](https://github.com/fredericcarre/mayele-ai/actions)
7
7
  [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
package/dist/cli.js CHANGED
@@ -48,7 +48,7 @@ const program = new commander_1.Command();
48
48
  program
49
49
  .name('xcomponent-ai')
50
50
  .description('Agentic FSM tool for fintech workflows')
51
- .version('0.1.0');
51
+ .version('0.1.2');
52
52
  /**
53
53
  * Initialize new project
54
54
  */
package/package.json CHANGED
@@ -1,9 +1,12 @@
1
1
  {
2
2
  "name": "xcomponent-ai",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "LLM-first framework for AI agents (Claude, GPT) to build apps with sanctuarized business logic. Event-driven FSM runtime with multi-instance state machines, cross-component communication, event sourcing, and production-ready persistence (PostgreSQL, MongoDB)",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
+ "bin": {
8
+ "xcomponent-ai": "dist/cli.js"
9
+ },
7
10
  "engines": {
8
11
  "node": ">=20.0.0"
9
12
  },