@rolexjs/core 1.0.0 → 1.1.0-dev-20260304041558
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/dist/index.d.ts +6 -1
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import * as _rolexjs_system from '@rolexjs/system';
|
|
2
2
|
import { Runtime, Initializer } from '@rolexjs/system';
|
|
3
3
|
export { Create, GraphOp, Link, Process, Relation, Remove, Runtime, State, Structure, Transform, Unlink, create, createRuntime, link, process, relation, remove, structure, transform, unlink } from '@rolexjs/system';
|
|
4
|
-
import {
|
|
4
|
+
import { IssueXProvider } from '@issuexjs/core';
|
|
5
|
+
import { ResourceXProvider, CustomExecutor } from '@resourcexjs/core';
|
|
5
6
|
|
|
6
7
|
/**
|
|
7
8
|
* Platform — external integration point for RoleX.
|
|
@@ -48,6 +49,10 @@ interface Platform {
|
|
|
48
49
|
readonly repository: RoleXRepository;
|
|
49
50
|
/** ResourceX provider — injected storage backend for resource management. */
|
|
50
51
|
readonly resourcexProvider?: ResourceXProvider;
|
|
52
|
+
/** Custom executor for ResourceX resolver execution (e.g., QuickJS Wasm for Workers). */
|
|
53
|
+
readonly resourcexExecutor?: CustomExecutor;
|
|
54
|
+
/** IssueX provider — injected storage backend for issue tracking. */
|
|
55
|
+
readonly issuexProvider?: IssueXProvider;
|
|
51
56
|
/** Initializer — bootstrap the world on first run. */
|
|
52
57
|
readonly initializer?: Initializer;
|
|
53
58
|
/** Prototype sources to settle on genesis (local paths or ResourceX locators). */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rolexjs/core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0-dev-20260304041558",
|
|
4
4
|
"description": "RoleX Core - AI Agent Role Management Framework",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"rolex",
|
|
@@ -39,7 +39,8 @@
|
|
|
39
39
|
"clean": "rm -rf dist"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@
|
|
42
|
+
"@issuexjs/core": "^0.2.0",
|
|
43
|
+
"@rolexjs/system": "1.1.0-dev-20260304041558",
|
|
43
44
|
"@resourcexjs/core": "^2.14.0"
|
|
44
45
|
},
|
|
45
46
|
"devDependencies": {},
|