@reactive-skills/runtime 0.3.0 โ 0.4.0
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/CHANGELOG.md +45 -0
- package/README.md +6 -3
- package/package.json +3 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
## [0.4.0] - 2026-09-14
|
|
3
|
+
|
|
4
|
+
- feat(axi): implement native validate command for skill manifest and statechart verification (3b75a21)
|
|
5
|
+
- docs: add v0.3.0 release highlights to READMEs and bundle changelog in package files (732f72b)
|
|
6
|
+
- chore: release v0.3.0 (ae379ca)
|
|
7
|
+
- feat(core): implement job management, isolated run storage, dual-write projections, and AXI jobs suite (c76c6cb)
|
|
8
|
+
- chore: release v0.2.0 (bb33cfc)
|
|
9
|
+
|
|
10
|
+
## [0.3.0] - 2026-09-13
|
|
11
|
+
|
|
12
|
+
- feat(core): implement job management, isolated run storage, dual-write projections, and AXI jobs suite (c76c6cb)
|
|
13
|
+
|
|
14
|
+
## [2.0.0] - 2026-09-01
|
|
15
|
+
|
|
16
|
+
- feat: implement SQLite event store engine, state snapshotting, and JSONL log rotation with supporting documentation (6912493)
|
|
17
|
+
- feat: implement skill-scoped SQLite event storage and migration infrastructure (b28fb19)
|
|
18
|
+
- feat: implement core event-store with SQLite persistence, FSM engine, and projection tracking. (5926118)
|
|
19
|
+
- feat: implement reactive skill core with FSM engine, event-sourced SQLite storage, and Zod-validated manifest schemas (b542c0a)
|
|
20
|
+
- feat: add CLI tool for reactive skill management, project documentation, and state inspection workflows (39830d0)
|
|
21
|
+
|
|
22
|
+
## [1.0.3] - 2026-08-31
|
|
23
|
+
|
|
24
|
+
- refactor(core): migrate to clean semantic state filenames and convention-over-configuration resolution (8180b1b)
|
|
25
|
+
- feat(hitl): add pre-implementation collaboration gate with 3 interaction modes (direct build, brainstorm, plan review) (0cd22b7)
|
|
26
|
+
- fix(core): resolve P2 memory leak - add bounded in-memory sliding buffer with SQLite backing (7fefae5)
|
|
27
|
+
- fix(core): resolve all Principal Engineer review findings - state rehydration, lifecycle signal queue, VM sandbox, and dual-write durability (791753e)
|
|
28
|
+
- feat(mcp): add reactive_migrate tool to MCP server suite (e35779c)
|
|
29
|
+
|
|
30
|
+
## [1.0.2] - 2026-08-31
|
|
31
|
+
|
|
32
|
+
- chore(release): add automated multi-file semver bumping script and changelog generator (d0f9abd)
|
|
33
|
+
- feat(docs): add automated doc invariant checker script and synchronize all project docs (280a95d)
|
|
34
|
+
- feat(core): upgrade to v2 with Event Modeling 4-slice CQRS, statechart topology validation, and retroactive migration (c9801ed)
|
|
35
|
+
- docs: clarify workspace layout, file destination paths, and greenfield/brownfield execution (1c79455)
|
|
36
|
+
- docs: add Model Context Protocol (MCP) server documentation to README, architecture, and AGENTS (f2e638b)
|
|
37
|
+
# Changelog
|
|
38
|
+
|
|
39
|
+
## [1.0.1] - 2026-08-31
|
|
40
|
+
|
|
41
|
+
- feat(docs): add automated doc invariant checker script and synchronize all project docs (280a95d)
|
|
42
|
+
- feat(core): upgrade to v2 with Event Modeling 4-slice CQRS, statechart topology validation, and retroactive migration (c9801ed)
|
|
43
|
+
- docs: clarify workspace layout, file destination paths, and greenfield/brownfield execution (1c79455)
|
|
44
|
+
- docs: add Model Context Protocol (MCP) server documentation to README, architecture, and AGENTS (f2e638b)
|
|
45
|
+
- feat(mcp): build universal reactive-mcp-server with 6 tools and live resources (9a01807)
|
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# @reactive-skills/runtime
|
|
2
2
|
|
|
3
|
-
Reactive Skills Architecture (RSA) core runtime
|
|
3
|
+
Reactive Skills Architecture (RSA) core runtime โ FSM engine, event store, guard evaluator, projection engine, job manager, and MCP server.
|
|
4
|
+
|
|
5
|
+
> ๐ **What's New in v0.4.0:** Native `validate` command in AXI, first-class Job & Run Management, isolated event logs, and dual-write deliverable mirroring. [Read Full Release Notes โ](https://github.com/Reactive-Skills/reactive-skills/releases/tag/v0.4.0) ยท [View Changelog](https://github.com/Reactive-Skills/reactive-skills/blob/main/CHANGELOG.md)
|
|
4
6
|
|
|
5
7
|
## Installation
|
|
6
8
|
|
|
@@ -11,15 +13,16 @@ npm install @reactive-skills/runtime
|
|
|
11
13
|
## Usage
|
|
12
14
|
|
|
13
15
|
```ts
|
|
14
|
-
import { FSMEngine, EventStore, LegacySkillAdapter, ProjectionEngine } from '@reactive-skills/runtime';
|
|
16
|
+
import { FSMEngine, EventStore, JobManager, LegacySkillAdapter, ProjectionEngine } from '@reactive-skills/runtime';
|
|
15
17
|
```
|
|
16
18
|
|
|
17
19
|
## Core Modules
|
|
18
20
|
|
|
19
21
|
- `FSMEngine` - Hierarchical State Machine loader, state path resolver, and signal-driven transition engine
|
|
22
|
+
- `JobManager` - Run isolation, active pointer resolution, metadata management, and safe directory pathing
|
|
20
23
|
- `EventStore` - Immutable append-only event ledger (JSONL + SQLite)
|
|
21
24
|
- `GuardEvaluator` - Sandbox evaluator for transition guard expressions
|
|
22
|
-
- `ProjectionEngine` - Handlebars deliverable generator for read-model projections
|
|
25
|
+
- `ProjectionEngine` - Handlebars deliverable generator for read-model projections with dual-write archiving
|
|
23
26
|
- `LegacySkillAdapter` - Backward compatibility wrapper and converter for SKILL.md
|
|
24
27
|
- `McpServer` - Stdio Model Context Protocol (MCP) server integration
|
|
25
28
|
- `TelemetryServer` - Real-time Server-Sent Events (SSE) broadcaster and Private Network Access (PNA) HTTP bridge
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reactive-skills/runtime",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Reactive Skills Architecture (RSA) core runtime โ FSM engine, event store, guard evaluator, projection engine, MCP server",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -14,7 +14,8 @@
|
|
|
14
14
|
"reactive-skills-mcp": "./dist/mcp/server.js"
|
|
15
15
|
},
|
|
16
16
|
"files": [
|
|
17
|
-
"dist"
|
|
17
|
+
"dist",
|
|
18
|
+
"CHANGELOG.md"
|
|
18
19
|
],
|
|
19
20
|
"keywords": [
|
|
20
21
|
"ai",
|