@kl-c/matrixos 0.1.16 → 0.1.17
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/.agents/command/adopt.md +9 -1
- package/.opencode/command/adopt.md +9 -1
- package/dist/agents/dynamic-agent-core-sections.d.ts +9 -0
- package/dist/agents/morpheus-dynamic-prompt-sections.d.ts +1 -0
- package/dist/cli/index.js +1 -1
- package/dist/cli-node/index.js +1 -1
- package/dist/features/matrix-inventory/features.js +2 -2
- package/dist/index.js +19 -1
- package/package.json +1 -1
package/.agents/command/adopt.md
CHANGED
|
@@ -16,7 +16,15 @@ Check whether `/root/MOS_Vault/04-Areas/user-context.md` exists and is filled.
|
|
|
16
16
|
- If filled: tell the user "Tu as déjà un contexte d'adoption. Je relance le rituel pour le mettre à jour." and proceed to step 2 (re-adoption mode — EDIT sections, do NOT rewrite from scratch).
|
|
17
17
|
- If missing/template: adoption mode — you will CREATE the file.
|
|
18
18
|
|
|
19
|
-
### 2.
|
|
19
|
+
### 2. Inform the user of base capabilities (DO THIS EARLY)
|
|
20
|
+
Before or right after the questions, tell the user what MaTrixOS already gives them out of the box — so they know what they have at their disposal without having to ask:
|
|
21
|
+
- **Mission Control (Dashboard)** — real-time web UI (agents, sessions, tasks, cost, incidents). Launch anytime with `matrixos dashboard --daemon` (http://127.0.0.1:9123; `--host <tailscale-ip>` for remote).
|
|
22
|
+
- **16-agent team** — Morpheus + specialists (Neo, Tank, Oracle, Trinity, Cypher, Sentinel, etc.). Delegate, don't do it all yourself.
|
|
23
|
+
- **Messaging Gateway** (opt-in) — drive Morpheus from Telegram/Discord/WhatsApp.
|
|
24
|
+
- **Learning Loop** + **Team Mode** (opt-in).
|
|
25
|
+
Keep it to one short paragraph — this is awareness, not the opt-in checklist (that's step 3).
|
|
26
|
+
|
|
27
|
+
### 3. Ask the adoption questions (in conversation, French, interactive `question` tool)
|
|
20
28
|
Pose ~5 targeted questions:
|
|
21
29
|
1. **Qui es-tu ?** (nom/alias, rôle, ce que tu fais)
|
|
22
30
|
2. **Pour quel projet / besoin m'as-tu déployé ?** (objectif, stack, périmètre)
|
|
@@ -16,7 +16,15 @@ Check whether `/root/MOS_Vault/04-Areas/user-context.md` exists and is filled.
|
|
|
16
16
|
- If filled: tell the user "Tu as déjà un contexte d'adoption. Je relance le rituel pour le mettre à jour." and proceed to step 2 (re-adoption mode — EDIT sections, do NOT rewrite from scratch).
|
|
17
17
|
- If missing/template: adoption mode — you will CREATE the file.
|
|
18
18
|
|
|
19
|
-
### 2.
|
|
19
|
+
### 2. Inform the user of base capabilities (DO THIS EARLY)
|
|
20
|
+
Before or right after the questions, tell the user what MaTrixOS already gives them out of the box — so they know what they have at their disposal without having to ask:
|
|
21
|
+
- **Mission Control (Dashboard)** — real-time web UI (agents, sessions, tasks, cost, incidents). Launch anytime with `matrixos dashboard --daemon` (http://127.0.0.1:9123; `--host <tailscale-ip>` for remote).
|
|
22
|
+
- **16-agent team** — Morpheus + specialists (Neo, Tank, Oracle, Trinity, Cypher, Sentinel, etc.). Delegate, don't do it all yourself.
|
|
23
|
+
- **Messaging Gateway** (opt-in) — drive Morpheus from Telegram/Discord/WhatsApp.
|
|
24
|
+
- **Learning Loop** + **Team Mode** (opt-in).
|
|
25
|
+
Keep it to one short paragraph — this is awareness, not the opt-in checklist (that's step 3).
|
|
26
|
+
|
|
27
|
+
### 3. Ask the adoption questions (in conversation, French, interactive `question` tool)
|
|
20
28
|
Pose ~5 targeted questions:
|
|
21
29
|
1. **Qui es-tu ?** (nom/alias, rôle, ce que tu fais)
|
|
22
30
|
2. **Pour quel projet / besoin m'as-tu déployé ?** (objectif, stack, périmètre)
|
|
@@ -22,3 +22,12 @@ export declare function buildOracleSection(agents: AvailableAgent[]): string;
|
|
|
22
22
|
export declare function buildFrontendGuidanceSection(categories: AvailableCategory[]): string;
|
|
23
23
|
export declare function buildNonClaudePlannerSection(model: string): string;
|
|
24
24
|
export declare function buildParallelDelegationSection(model: string, categories: AvailableCategory[]): string;
|
|
25
|
+
/**
|
|
26
|
+
* Base capabilities awareness — what Morpheus knows about out of the box,
|
|
27
|
+
* without needing to read features.ts or run /features. The Dashboard
|
|
28
|
+
* (Mission Control) backend is always bundled; the user can launch it
|
|
29
|
+
* immediately. Listed here so Morpheus is never "lost" when the user
|
|
30
|
+
* mentions these features in conversation (VPS cantabo bug: Morpheus had
|
|
31
|
+
* to grep the codebase to discover the dashboard existed).
|
|
32
|
+
*/
|
|
33
|
+
export declare function buildBaseCapabilitiesSection(): string;
|
|
@@ -2,6 +2,7 @@ import type { AvailableAgent, AvailableCategory, AvailableSkill, AvailableTool }
|
|
|
2
2
|
export interface MorpheusDynamicPromptSections {
|
|
3
3
|
readonly agentIdentity: string;
|
|
4
4
|
readonly agentTeam: string;
|
|
5
|
+
readonly baseCapabilities: string;
|
|
5
6
|
readonly antiPatterns: string;
|
|
6
7
|
readonly categorySkillsGuide: string;
|
|
7
8
|
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.17",
|
|
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",
|
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.17",
|
|
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",
|
|
@@ -5,8 +5,8 @@ var MATRIX_FEATURES = [
|
|
|
5
5
|
id: "dashboard",
|
|
6
6
|
name: "Mission Control (Dashboard)",
|
|
7
7
|
description: "Web UI to supervise agents, sessions, tasks, cost and incidents in real time.",
|
|
8
|
-
enabledByDefault:
|
|
9
|
-
status: "
|
|
8
|
+
enabledByDefault: true,
|
|
9
|
+
status: "native",
|
|
10
10
|
userBenefit: "Open a browser page (default http://127.0.0.1:9123) showing live agent/session/task state, cost, kanban and incidents.",
|
|
11
11
|
provisioning: {
|
|
12
12
|
activation: "Launch the bundled server: `matrixos dashboard --daemon` (listens on 127.0.0.1:9123 by default). For remote access over Tailscale, rebind with `--host <tailscale-ip>` (e.g. 100.96.138.13).",
|
package/dist/index.js
CHANGED
|
@@ -367932,7 +367932,7 @@ function getCachedVersion(options = {}) {
|
|
|
367932
367932
|
// package.json
|
|
367933
367933
|
var package_default = {
|
|
367934
367934
|
name: "@kl-c/matrixos",
|
|
367935
|
-
version: "0.1.
|
|
367935
|
+
version: "0.1.17",
|
|
367936
367936
|
description: "MaTrixOS \u2014 Agentic OS for OpenCode. Personalizable, communicating, self-improving, resilient.",
|
|
367937
367937
|
main: "./dist/index.js",
|
|
367938
367938
|
types: "dist/index.d.ts",
|
|
@@ -421414,6 +421414,21 @@ function buildParallelDelegationSection(model, categories) {
|
|
|
421414
421414
|
|
|
421415
421415
|
**Your value is orchestration, decomposition, and quality control. Delegating with crystal-clear prompts IS your work.**`;
|
|
421416
421416
|
}
|
|
421417
|
+
function buildBaseCapabilitiesSection() {
|
|
421418
|
+
return `### Base Capabilities (you already have these)
|
|
421419
|
+
|
|
421420
|
+
These ship with MaTrixOS and are part of your baseline awareness \u2014 you do
|
|
421421
|
+
NOT need to discover them by searching the code. When the user mentions one,
|
|
421422
|
+
you already know what it is and how to activate it:
|
|
421423
|
+
|
|
421424
|
+
- **Mission Control (Dashboard)** \u2014 real-time web UI to supervise agents, sessions, tasks, cost and incidents. Backend is always bundled. Launch with \`matrixos dashboard --daemon\` (serves on http://127.0.0.1:9123). For remote access over Tailscale, rebind with \`--host <tailscale-ip>\`.
|
|
421425
|
+
- **Messaging Gateway** \u2014 drive Morpheus from Telegram / Discord / WhatsApp. Opt-in: set \`gateway.enabled: true\` in matrixos.json + a channel entry with the bot token via ENV (never inline). See \`/features gateway\` for the full recipe.
|
|
421426
|
+
- **Learning Loop** \u2014 L1\u2192L2 self-improvement; MaTrixOS proposes learnings from your session history.
|
|
421427
|
+
- **Team Mode** \u2014 spawn parallel sub-agent teams (up to 8 members). Opt-in via \`team_mode.enabled\`.
|
|
421428
|
+
- **16-agent team** \u2014 listed above. Delegate, do not implement yourself when a specialist exists.
|
|
421429
|
+
|
|
421430
|
+
For the full, on-demand inventory (including opt-in features like Kanban, Cron, Goal Mode), use \`/features\`. To (re)run the adoption ritual and choose opt-in features, use \`/adopt\`.`;
|
|
421431
|
+
}
|
|
421417
421432
|
// packages/omo-opencode/src/agents/dynamic-agent-category-skills-guide.ts
|
|
421418
421433
|
function buildSkillsSection(skills) {
|
|
421419
421434
|
const builtinSkills = skills.filter((skill2) => skill2.location === "plugin");
|
|
@@ -421905,6 +421920,8 @@ You are "Morpheus" - the orchestrator of MaTrixOS, an agentic OS built as a fork
|
|
|
421905
421920
|
|
|
421906
421921
|
${sections.agentTeam}
|
|
421907
421922
|
|
|
421923
|
+
${sections.baseCapabilities}
|
|
421924
|
+
|
|
421908
421925
|
</Role>
|
|
421909
421926
|
<Behavior_Instructions>
|
|
421910
421927
|
|
|
@@ -422135,6 +422152,7 @@ function buildMorpheusDynamicPromptSections(model, availableAgents, availableToo
|
|
|
422135
422152
|
return {
|
|
422136
422153
|
agentIdentity: buildAgentIdentitySection("Morpheus", "Powerful AI Agent with orchestration capabilities from MaTrixOS \u2014 a fork of OMO improved with Hermes, OpenClaw and Goose strengths, model-agnostic (open/standard models, never locked to a proprietary provider)"),
|
|
422137
422154
|
agentTeam: buildMatrixOSAgentTeamSection(),
|
|
422155
|
+
baseCapabilities: buildBaseCapabilitiesSection(),
|
|
422138
422156
|
antiPatterns: buildAntiPatternsSection(),
|
|
422139
422157
|
categorySkillsGuide: buildCategorySkillsDelegationGuide(availableCategories, availableSkills),
|
|
422140
422158
|
delegationTable: buildDelegationTable(availableAgents),
|
package/package.json
CHANGED