@kl-c/matrixos 0.1.3 → 0.1.5
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.
|
@@ -12,6 +12,12 @@ export declare function buildToolSelectionTable(agents: AvailableAgent[], tools?
|
|
|
12
12
|
export declare function buildGhostSection(agents: AvailableAgent[]): string;
|
|
13
13
|
export declare function buildLinkSection(agents: AvailableAgent[]): string;
|
|
14
14
|
export declare function buildDelegationTable(agents: AvailableAgent[]): string;
|
|
15
|
+
/**
|
|
16
|
+
* MaTrixOS agent team — the 16 agents defined in the product spec (CAHIER_DES_CHARGES.md §3).
|
|
17
|
+
* This is the authoritative team roster Morpheus presents, independent of the OpenCode engine's
|
|
18
|
+
* internal agent/category list. Kept in sync with the spec; do NOT replace with engine agents.
|
|
19
|
+
*/
|
|
20
|
+
export declare function buildMatrixOSAgentTeamSection(): string;
|
|
15
21
|
export declare function buildOracleSection(agents: AvailableAgent[]): string;
|
|
16
22
|
export declare function buildFrontendGuidanceSection(categories: AvailableCategory[]): string;
|
|
17
23
|
export declare function buildNonClaudePlannerSection(model: string): string;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { AvailableAgent, AvailableCategory, AvailableSkill, AvailableTool } from "./dynamic-agent-prompt-builder";
|
|
2
2
|
export interface MorpheusDynamicPromptSections {
|
|
3
3
|
readonly agentIdentity: string;
|
|
4
|
+
readonly agentTeam: string;
|
|
4
5
|
readonly antiPatterns: string;
|
|
5
6
|
readonly categorySkillsGuide: string;
|
|
6
7
|
readonly delegationTable: string;
|
package/dist/cli/index.js
CHANGED
|
@@ -2145,7 +2145,7 @@ var package_default;
|
|
|
2145
2145
|
var init_package = __esm(() => {
|
|
2146
2146
|
package_default = {
|
|
2147
2147
|
name: "@kl-c/matrixos",
|
|
2148
|
-
version: "0.1.
|
|
2148
|
+
version: "0.1.5",
|
|
2149
2149
|
description: "MaTrixOS \u2014 Agentic OS for OpenCode. Personalizable, communicating, self-improving, resilient.",
|
|
2150
2150
|
main: "./dist/index.js",
|
|
2151
2151
|
types: "dist/index.d.ts",
|
|
@@ -10808,7 +10808,13 @@ var init_agent_display_names = __esm(() => {
|
|
|
10808
10808
|
link: "link",
|
|
10809
10809
|
ghost: "ghost",
|
|
10810
10810
|
"the-analyst": "the-analyst",
|
|
10811
|
-
"council-member": "council-member"
|
|
10811
|
+
"council-member": "council-member",
|
|
10812
|
+
trinity: "Trinity - Visual Designer",
|
|
10813
|
+
cypher: "Cypher - Copywriter SEO",
|
|
10814
|
+
sentinel: "Sentinel - QA Tester",
|
|
10815
|
+
mouse: "Mouse - Documentation",
|
|
10816
|
+
dreamer: "Dreamer - Memory Consolidation",
|
|
10817
|
+
architect: "TheArchitect - Self Improvement"
|
|
10812
10818
|
};
|
|
10813
10819
|
INVISIBLE_AGENT_CHARACTERS_REGEX = /[\u200B\u200C\u200D\uFEFF]/g;
|
|
10814
10820
|
VISIBLE_AGENT_LIST_SORT_PREFIX_REGEX = /^\d+\|/;
|
package/dist/cli-node/index.js
CHANGED
|
@@ -2145,7 +2145,7 @@ var package_default;
|
|
|
2145
2145
|
var init_package = __esm(() => {
|
|
2146
2146
|
package_default = {
|
|
2147
2147
|
name: "@kl-c/matrixos",
|
|
2148
|
-
version: "0.1.
|
|
2148
|
+
version: "0.1.5",
|
|
2149
2149
|
description: "MaTrixOS \u2014 Agentic OS for OpenCode. Personalizable, communicating, self-improving, resilient.",
|
|
2150
2150
|
main: "./dist/index.js",
|
|
2151
2151
|
types: "dist/index.d.ts",
|
|
@@ -10808,7 +10808,13 @@ var init_agent_display_names = __esm(() => {
|
|
|
10808
10808
|
link: "link",
|
|
10809
10809
|
ghost: "ghost",
|
|
10810
10810
|
"the-analyst": "the-analyst",
|
|
10811
|
-
"council-member": "council-member"
|
|
10811
|
+
"council-member": "council-member",
|
|
10812
|
+
trinity: "Trinity - Visual Designer",
|
|
10813
|
+
cypher: "Cypher - Copywriter SEO",
|
|
10814
|
+
sentinel: "Sentinel - QA Tester",
|
|
10815
|
+
mouse: "Mouse - Documentation",
|
|
10816
|
+
dreamer: "Dreamer - Memory Consolidation",
|
|
10817
|
+
architect: "TheArchitect - Self Improvement"
|
|
10812
10818
|
};
|
|
10813
10819
|
INVISIBLE_AGENT_CHARACTERS_REGEX = /[\u200B\u200C\u200D\uFEFF]/g;
|
|
10814
10820
|
VISIBLE_AGENT_LIST_SORT_PREFIX_REGEX = /^\d+\|/;
|