@markus-global/cli 0.6.2 → 0.6.3
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/markus.mjs +241 -54
- package/dist/web-ui/assets/index-C97PujBE.js +351 -0
- package/dist/web-ui/index.html +1 -1
- package/package.json +1 -1
- package/templates/roles/SHARED.md +3 -9
- package/templates/skills/markus-admin-cli/SKILL.md +9 -1
- package/templates/teams/content-team/team.json +1 -1
- package/templates/teams/dev-squad/team.json +1 -1
- package/templates/teams/engineering-pod/team.json +1 -1
- package/templates/teams/research-lab/team.json +1 -1
- package/templates/teams/startup-team/team.json +1 -1
- package/dist/web-ui/assets/index-sJUaZxib.js +0 -351
- package/templates/skills/markus-agent-cli/SKILL.md +0 -69
- package/templates/skills/markus-agent-cli/skill.json +0 -21
- package/templates/skills/markus-cli/SKILL.md +0 -113
- package/templates/skills/markus-cli/skill.json +0 -20
- package/templates/skills/markus-project-cli/SKILL.md +0 -163
- package/templates/skills/markus-project-cli/skill.json +0 -21
- package/templates/skills/markus-skill-cli/SKILL.md +0 -59
- package/templates/skills/markus-skill-cli/skill.json +0 -21
- package/templates/skills/markus-team-cli/SKILL.md +0 -54
- package/templates/skills/markus-team-cli/skill.json +0 -21
package/dist/web-ui/index.html
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
<script>
|
|
12
12
|
(function(){var t=localStorage.getItem('markus-theme');if(t&&t!=='system')document.documentElement.classList.add(t)})();
|
|
13
13
|
</script>
|
|
14
|
-
<script type="module" crossorigin src="/assets/index-
|
|
14
|
+
<script type="module" crossorigin src="/assets/index-C97PujBE.js"></script>
|
|
15
15
|
<link rel="stylesheet" crossorigin href="/assets/index-Q4_kHftV.css">
|
|
16
16
|
</head>
|
|
17
17
|
<body>
|
package/package.json
CHANGED
|
@@ -105,17 +105,11 @@ You have a set of **assigned skills** — these are the capabilities explicitly
|
|
|
105
105
|
|
|
106
106
|
Beyond your assigned skills, the system maintains a **global skill library** loaded from multiple sources at startup. When you need capabilities you don't currently have:
|
|
107
107
|
|
|
108
|
-
1. **
|
|
109
|
-
- `~/.markus/skills/` — Markus native skills
|
|
110
|
-
- `~/.claude/skills/` — Claude Code skills (SKILL.md format)
|
|
111
|
-
- `~/.openclaw/skills/` — OpenClaw/ClawHub skills (manifest.json format)
|
|
112
|
-
Each skill is a subdirectory containing either a `manifest.json` (name, description, tools) or a `SKILL.md` (YAML frontmatter + instructions).
|
|
108
|
+
1. **Discover skills** — use `discover_tools` to browse the skill catalog and activate skills on demand. This is the preferred way to find and load skills.
|
|
113
109
|
|
|
114
|
-
2. **
|
|
110
|
+
2. **Collaborate** — if a colleague already has the skill assigned, coordinate with them via `agent_send_message` instead of duplicating effort.
|
|
115
111
|
|
|
116
|
-
3. **
|
|
117
|
-
|
|
118
|
-
4. **Don't reinvent the wheel** — always check installed skills before building a custom solution.
|
|
112
|
+
3. **Don't reinvent the wheel** — always check installed skills before building a custom solution.
|
|
119
113
|
|
|
120
114
|
---
|
|
121
115
|
|
|
@@ -7,7 +7,15 @@ description: System administration via markus CLI — system controls, audit, us
|
|
|
7
7
|
|
|
8
8
|
> **NOTE**: Most admin CLI commands have no built-in tool equivalent — CLI is the primary interface for system administration. Use `builder_install`/`builder_list` for artifact management when available.
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
## How to invoke
|
|
11
|
+
|
|
12
|
+
Use `markus` via `shell_execute`. The binary is automatically available in PATH.
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
markus admin system status --json
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
**Always use `--json` when parsing results programmatically.** The CLI connects to `http://localhost:8056` by default. Override with `--server <url>` or `MARKUS_API_URL`. For authenticated access use `--api-key <key>` or `MARKUS_API_KEY`.
|
|
11
19
|
|
|
12
20
|
## System Controls
|
|
13
21
|
|