@markus-global/cli 0.4.17 → 0.4.19
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/commands/start.d.ts.map +1 -1
- package/dist/commands/start.js +96 -65
- package/dist/commands/start.js.map +1 -1
- package/dist/commands/system.d.ts.map +1 -1
- package/dist/commands/system.js +22 -7
- package/dist/commands/system.js.map +1 -1
- package/dist/index.js +107 -93
- package/dist/index.js.map +1 -1
- package/dist/markus.mjs +2171 -1187
- package/dist/web-ui/assets/index-3aaspe8C.css +1 -0
- package/dist/web-ui/assets/index-DVrJcKF4.js +64 -0
- package/dist/web-ui/index.html +2 -2
- package/package.json +1 -1
- package/templates/roles/skill-architect/ROLE.md +1 -1
- package/templates/skills/self-evolution/SKILL.md +1 -1
- package/templates/skills/skill-building/SKILL.md +1 -1
- package/dist/web-ui/assets/index-BgJ594-E.js +0 -63
- package/dist/web-ui/assets/index-CiYrdUAj.css +0 -1
package/dist/web-ui/index.html
CHANGED
|
@@ -11,8 +11,8 @@
|
|
|
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-
|
|
15
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
14
|
+
<script type="module" crossorigin src="/assets/index-DVrJcKF4.js"></script>
|
|
15
|
+
<link rel="stylesheet" crossorigin href="/assets/index-3aaspe8C.css">
|
|
16
16
|
</head>
|
|
17
17
|
<body>
|
|
18
18
|
<div id="root"></div>
|
package/package.json
CHANGED
|
@@ -35,7 +35,7 @@ You will receive the **live list** of available skills as dynamic context. **Che
|
|
|
35
35
|
|
|
36
36
|
## Guidelines
|
|
37
37
|
|
|
38
|
-
- Instructions in SKILL.md should reference actual tools: `shell_execute`, `file_read`, `file_write`, `file_edit`, `
|
|
38
|
+
- Instructions in SKILL.md should reference actual tools: `shell_execute`, `file_read`, `file_write`, `file_edit`, `grep_search`, `glob_find`, `list_directory`, `web_fetch`, `web_search`, `gui` — or MCP tool names if the skill provides its own tools
|
|
39
39
|
- Be specific — include actual CLI commands, file paths, and URL patterns
|
|
40
40
|
- Include error handling: what to do when commands fail, pages don't load, etc.
|
|
41
41
|
- Provide examples of typical input/output for each workflow step
|
|
@@ -74,7 +74,7 @@ Over time you will discover which tools work best for specific situations. Recor
|
|
|
74
74
|
### When to Update Tool Preferences
|
|
75
75
|
|
|
76
76
|
- You discover a tool is significantly better than another for a specific task type
|
|
77
|
-
- You find optimal parameters or flags for a tool (e.g., `
|
|
77
|
+
- You find optimal parameters or flags for a tool (e.g., `grep_search` with specific flags vs. `glob_find`)
|
|
78
78
|
- You learn that a tool has limitations you should work around
|
|
79
79
|
- A tool combination (pipeline) works well for a recurring need
|
|
80
80
|
|
|
@@ -155,7 +155,7 @@ Once all files are written, tell the user:
|
|
|
155
155
|
|
|
156
156
|
## Guidelines
|
|
157
157
|
|
|
158
|
-
- Instructions in SKILL.md should reference actual tools: `shell_execute`, `file_read`, `file_write`, `file_edit`, `
|
|
158
|
+
- Instructions in SKILL.md should reference actual tools: `shell_execute`, `file_read`, `file_write`, `file_edit`, `grep_search`, `glob_find`, `list_directory`, `web_fetch`, `web_search`, `gui` — or MCP tool names if the skill provides its own tools
|
|
159
159
|
- For MCP-based skills, document every tool with its prefixed name (e.g., `my-api__search`) in SKILL.md so the agent knows how to use them
|
|
160
160
|
- Be specific — include actual CLI commands, file paths, and URL patterns
|
|
161
161
|
- Include error handling: what to do when commands fail, pages don't load, etc.
|