@kl-c/matrixos 0.2.9 → 0.2.10
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 +146 -96
- package/dist/cli/slash-commands/adopt.md +11 -0
- package/dist/cli/slash-commands/features.md +12 -0
- package/dist/cli/slash-commands/matrix-gateway-adopt-telegram.md +10 -0
- package/dist/cli/slash-commands/matrix.md +10 -0
- package/dist/cli/slash-commands/readopt.md +8 -0
- package/dist/cli-node/index.js +146 -96
- package/dist/index.js +3 -2
- package/package.json +3 -2
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Launch or re-run the Morpheus adoption ritual (establish user context, offer opt-in features)
|
|
3
|
+
---
|
|
4
|
+
You are executing the MaTrixOS adoption ritual (/adopt). Establish the user context and offer optional MaTrixOS features.
|
|
5
|
+
|
|
6
|
+
## Steps
|
|
7
|
+
1. Detect state: if .matrixos/user-context.md exists and is filled, this is a RE-ADOPT (edit, do not rewrite). If missing/template, this is first adoption (create the file).
|
|
8
|
+
2. Inform the user of base capabilities (Mission Control dashboard, 16-agent team, Messaging Gateway, Learning Loop, Team Mode).
|
|
9
|
+
3. Ask ~5 questions in French (who are you, what project/need, preferred agent, opt-in features, model preference).
|
|
10
|
+
4. Write .matrixos/user-context.md with the answers.
|
|
11
|
+
5. If gateway opted-in, tell them to run: matrixos gateway adopt telegram
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Show available MaTrixOS built-in features and agents
|
|
3
|
+
---
|
|
4
|
+
List MaTrixOS built-in capabilities:
|
|
5
|
+
|
|
6
|
+
- Mission Control dashboard (matrixos dashboard --daemon, http://127.0.0.1:9123)
|
|
7
|
+
- 16-agent team (Morpheus + Neo, Tank, Oracle, Trinity, Cypher, Sentinel, etc.)
|
|
8
|
+
- Messaging Gateway (Telegram/Discord/WhatsApp) — opt-in via matrixos gateway adopt
|
|
9
|
+
- Learning Loop + Team Mode (opt-in)
|
|
10
|
+
- Project context, per-project memory, weekly self-audit (matrixos self-audit)
|
|
11
|
+
|
|
12
|
+
Summarize what the user already has, then offer to configure any opt-in.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Configure the Telegram gateway channel for MaTrixOS (bot token + chat id)
|
|
3
|
+
---
|
|
4
|
+
Use the bash/terminal tool to run this command EXACTLY, now:
|
|
5
|
+
|
|
6
|
+
matrixos gateway adopt telegram
|
|
7
|
+
|
|
8
|
+
This is NOT the adoption ritual. It configures ONLY the Telegram gateway channel (bot token + chat id), then writes the gateway env file (chmod 600).
|
|
9
|
+
|
|
10
|
+
Do not run /adopt, do not launch the adoption ritual. Just execute the shell command above and report what the terminal shows. The user will paste the bot token locally when prompted (never via chat).
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: MaTrixOS command entry point — lists available matrixos CLI subcommands
|
|
3
|
+
---
|
|
4
|
+
You are the MaTrixOS command hub. List the available MaTrixOS operations the user can run:
|
|
5
|
+
|
|
6
|
+
- Adoption: /adopt (first adoption), /readopt (re-adopt global)
|
|
7
|
+
- Gateway: /matrix-gateway-adopt-telegram (configure Telegram channel)
|
|
8
|
+
- CLI equivalents: matrixos adopt, matrixos gateway adopt telegram, matrixos dashboard, matrixos project list, matrixos self-audit
|
|
9
|
+
|
|
10
|
+
Ask the user which operation they want, or execute if they specified one.
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Re-run the MaTrixOS adoption wizard (providers, channels, profile)
|
|
3
|
+
---
|
|
4
|
+
Run the global re-adoption wizard by executing this shell command now:
|
|
5
|
+
|
|
6
|
+
matrixos adopt
|
|
7
|
+
|
|
8
|
+
This reuses the install wizard — it re-detects providers, channels, and profile, and updates your MaTrixOS context. Tell the user: "Re-adoption launched. Follow the wizard to update your context and options."
|