@kl-c/matrixos 0.3.37 → 0.3.38

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/cli/index.js CHANGED
@@ -2163,7 +2163,7 @@ var package_default;
2163
2163
  var init_package = __esm(() => {
2164
2164
  package_default = {
2165
2165
  name: "@kl-c/matrixos",
2166
- version: "0.3.37",
2166
+ version: "0.3.38",
2167
2167
  description: "MaTrixOS \u2014 Agentic OS for OpenCode. Personalizable, communicating, self-improving, resilient.",
2168
2168
  main: "./dist/index.js",
2169
2169
  types: "dist/index.d.ts",
@@ -168038,7 +168038,13 @@ var BuiltinAgentNameSchema = exports_external.enum([
168038
168038
  "the-keymaker",
168039
168039
  "agent-smith",
168040
168040
  "the-operator",
168041
- "neo"
168041
+ "neo",
168042
+ "trinity",
168043
+ "cypher",
168044
+ "sentinel",
168045
+ "mouse",
168046
+ "dreamer",
168047
+ "architect"
168042
168048
  ]);
168043
168049
  var BuiltinSkillNameSchema = exports_external.enum([
168044
168050
  "playwright",
@@ -186855,7 +186861,13 @@ var AGENT_DISPLAY_NAMES2 = {
186855
186861
  "the-keymaker": "The Keymaker",
186856
186862
  "agent-smith": "Agent Smith",
186857
186863
  "the-operator": "The Operator",
186858
- neo: "Neo"
186864
+ neo: "Neo",
186865
+ trinity: "Trinity",
186866
+ cypher: "Cypher",
186867
+ sentinel: "Sentinel",
186868
+ mouse: "Mouse",
186869
+ dreamer: "Dreamer",
186870
+ architect: "Architect"
186859
186871
  };
186860
186872
  var AGENT_ROLES = {
186861
186873
  morpheus: "Orchestrator",
@@ -186868,7 +186880,13 @@ var AGENT_ROLES = {
186868
186880
  "the-keymaker": "Pre-planning",
186869
186881
  "agent-smith": "Plan Review",
186870
186882
  "the-operator": "Todo Orchestrator",
186871
- neo: "Executor"
186883
+ neo: "Executor",
186884
+ trinity: "Design",
186885
+ cypher: "SEO / Copy",
186886
+ sentinel: "QA",
186887
+ mouse: "Docs",
186888
+ dreamer: "Memory",
186889
+ architect: "Self-improvement"
186872
186890
  };
186873
186891
  var DEFAULT_MODEL = "opencode/deepseek-v4-flash-free";
186874
186892
  var AVAILABLE_MODELS = [
@@ -2163,7 +2163,7 @@ var package_default;
2163
2163
  var init_package = __esm(() => {
2164
2164
  package_default = {
2165
2165
  name: "@kl-c/matrixos",
2166
- version: "0.3.37",
2166
+ version: "0.3.38",
2167
2167
  description: "MaTrixOS \u2014 Agentic OS for OpenCode. Personalizable, communicating, self-improving, resilient.",
2168
2168
  main: "./dist/index.js",
2169
2169
  types: "dist/index.d.ts",
@@ -168093,7 +168093,13 @@ var BuiltinAgentNameSchema = exports_external.enum([
168093
168093
  "the-keymaker",
168094
168094
  "agent-smith",
168095
168095
  "the-operator",
168096
- "neo"
168096
+ "neo",
168097
+ "trinity",
168098
+ "cypher",
168099
+ "sentinel",
168100
+ "mouse",
168101
+ "dreamer",
168102
+ "architect"
168097
168103
  ]);
168098
168104
  var BuiltinSkillNameSchema = exports_external.enum([
168099
168105
  "playwright",
@@ -186910,7 +186916,13 @@ var AGENT_DISPLAY_NAMES2 = {
186910
186916
  "the-keymaker": "The Keymaker",
186911
186917
  "agent-smith": "Agent Smith",
186912
186918
  "the-operator": "The Operator",
186913
- neo: "Neo"
186919
+ neo: "Neo",
186920
+ trinity: "Trinity",
186921
+ cypher: "Cypher",
186922
+ sentinel: "Sentinel",
186923
+ mouse: "Mouse",
186924
+ dreamer: "Dreamer",
186925
+ architect: "Architect"
186914
186926
  };
186915
186927
  var AGENT_ROLES = {
186916
186928
  morpheus: "Orchestrator",
@@ -186923,7 +186935,13 @@ var AGENT_ROLES = {
186923
186935
  "the-keymaker": "Pre-planning",
186924
186936
  "agent-smith": "Plan Review",
186925
186937
  "the-operator": "Todo Orchestrator",
186926
- neo: "Executor"
186938
+ neo: "Executor",
186939
+ trinity: "Design",
186940
+ cypher: "SEO / Copy",
186941
+ sentinel: "QA",
186942
+ mouse: "Docs",
186943
+ dreamer: "Memory",
186944
+ architect: "Self-improvement"
186927
186945
  };
186928
186946
  var DEFAULT_MODEL = "opencode/deepseek-v4-flash-free";
186929
186947
  var AVAILABLE_MODELS = [
@@ -11,6 +11,12 @@ export declare const BuiltinAgentNameSchema: z.ZodEnum<{
11
11
  "agent-smith": "agent-smith";
12
12
  "the-operator": "the-operator";
13
13
  neo: "neo";
14
+ trinity: "trinity";
15
+ cypher: "cypher";
16
+ sentinel: "sentinel";
17
+ mouse: "mouse";
18
+ dreamer: "dreamer";
19
+ architect: "architect";
14
20
  }>;
15
21
  export declare const BuiltinSkillNameSchema: z.ZodEnum<{
16
22
  playwright: "playwright";
@@ -55,6 +61,12 @@ export declare const AgentNameSchema: z.ZodEnum<{
55
61
  "agent-smith": "agent-smith";
56
62
  "the-operator": "the-operator";
57
63
  neo: "neo";
64
+ trinity: "trinity";
65
+ cypher: "cypher";
66
+ sentinel: "sentinel";
67
+ mouse: "mouse";
68
+ dreamer: "dreamer";
69
+ architect: "architect";
58
70
  }>;
59
71
  export type AgentName = z.infer<typeof AgentNameSchema>;
60
72
  export type BuiltinSkillName = z.infer<typeof BuiltinSkillNameSchema>;
package/dist/index.js CHANGED
@@ -368019,7 +368019,7 @@ function getCachedVersion(options = {}) {
368019
368019
  // package.json
368020
368020
  var package_default = {
368021
368021
  name: "@kl-c/matrixos",
368022
- version: "0.3.37",
368022
+ version: "0.3.38",
368023
368023
  description: "MaTrixOS \u2014 Agentic OS for OpenCode. Personalizable, communicating, self-improving, resilient.",
368024
368024
  main: "./dist/index.js",
368025
368025
  types: "dist/index.d.ts",
@@ -442317,7 +442317,13 @@ var BuiltinAgentNameSchema = z18.enum([
442317
442317
  "the-keymaker",
442318
442318
  "agent-smith",
442319
442319
  "the-operator",
442320
- "neo"
442320
+ "neo",
442321
+ "trinity",
442322
+ "cypher",
442323
+ "sentinel",
442324
+ "mouse",
442325
+ "dreamer",
442326
+ "architect"
442321
442327
  ]);
442322
442328
  var BuiltinSkillNameSchema = z18.enum([
442323
442329
  "playwright",
package/dist/tui.js CHANGED
@@ -20033,7 +20033,13 @@ var init_agent_names = __esm(() => {
20033
20033
  "the-keymaker",
20034
20034
  "agent-smith",
20035
20035
  "the-operator",
20036
- "neo"
20036
+ "neo",
20037
+ "trinity",
20038
+ "cypher",
20039
+ "sentinel",
20040
+ "mouse",
20041
+ "dreamer",
20042
+ "architect"
20037
20043
  ]);
20038
20044
  BuiltinSkillNameSchema = exports_external.enum([
20039
20045
  "playwright",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kl-c/matrixos",
3
- "version": "0.3.37",
3
+ "version": "0.3.38",
4
4
  "description": "MaTrixOS \u2014 Agentic OS for OpenCode. Personalizable, communicating, self-improving, resilient.",
5
5
  "main": "./dist/index.js",
6
6
  "types": "dist/index.d.ts",