@markus-global/cli 0.5.1 → 0.5.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 +137 -17
- package/dist/web-ui/assets/index-fbfYqEhh.js +351 -0
- package/dist/web-ui/index.html +1 -1
- package/package.json +1 -1
- package/templates/skills/agent-building/skill.json +6 -0
- package/templates/skills/chrome-devtools/skill.json +6 -0
- package/templates/skills/markitdown/skill.json +6 -0
- package/templates/skills/markus-admin-cli/skill.json +6 -0
- package/templates/skills/markus-agent-cli/skill.json +7 -0
- package/templates/skills/markus-cli/skill.json +6 -0
- package/templates/skills/markus-hub-connector/skill.json +6 -0
- package/templates/skills/markus-project-cli/skill.json +7 -0
- package/templates/skills/markus-skill-cli/skill.json +7 -0
- package/templates/skills/markus-team-cli/skill.json +7 -0
- package/templates/skills/self-evolution/skill.json +6 -0
- package/templates/skills/skill-building/skill.json +6 -0
- package/templates/skills/team-building/skill.json +6 -0
- package/templates/teams/content-team/team.json +12 -0
- package/templates/teams/dev-squad/team.json +13 -0
- package/templates/teams/engineering-pod/team.json +13 -0
- package/templates/teams/research-lab/team.json +12 -0
- package/templates/teams/startup-team/team.json +11 -0
- package/dist/web-ui/assets/index-CAyBdTj8.js +0 -351
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-fbfYqEhh.js"></script>
|
|
15
15
|
<link rel="stylesheet" crossorigin href="/assets/index-Q4_kHftV.css">
|
|
16
16
|
</head>
|
|
17
17
|
<body>
|
package/package.json
CHANGED
|
@@ -7,6 +7,12 @@
|
|
|
7
7
|
"author": "markus",
|
|
8
8
|
"category": "development",
|
|
9
9
|
"tags": ["builder", "agent", "design", "manifest"],
|
|
10
|
+
"i18n": {
|
|
11
|
+
"zh-CN": {
|
|
12
|
+
"displayName": "智能体构建",
|
|
13
|
+
"description": "设计和创建 AI 智能体包 — 清单格式、目录结构、文件编写流程和 Markus 智能体工件字段参考"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
10
16
|
"skill": {
|
|
11
17
|
"skillFile": "SKILL.md"
|
|
12
18
|
}
|
|
@@ -7,6 +7,12 @@
|
|
|
7
7
|
"author": "markus",
|
|
8
8
|
"category": "browser",
|
|
9
9
|
"tags": ["browser", "chrome", "devtools", "automation", "testing", "mcp"],
|
|
10
|
+
"i18n": {
|
|
11
|
+
"zh-CN": {
|
|
12
|
+
"displayName": "Chrome 开发者工具",
|
|
13
|
+
"description": "Chrome DevTools 浏览器自动化 - 控制实时 Chrome 浏览器(导航、点击、输入、截图、执行 JS、检查网络、性能分析)"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
10
16
|
"skill": {
|
|
11
17
|
"skillFile": "SKILL.md",
|
|
12
18
|
"requiredPermissions": ["browser", "network"],
|
|
@@ -7,6 +7,12 @@
|
|
|
7
7
|
"author": "markus",
|
|
8
8
|
"category": "data",
|
|
9
9
|
"tags": ["ocr", "pdf", "document", "conversion", "multimodal"],
|
|
10
|
+
"i18n": {
|
|
11
|
+
"zh-CN": {
|
|
12
|
+
"displayName": "MarkItDown 文件转换器",
|
|
13
|
+
"description": "将文档(PDF、Word、Excel、PowerPoint、图片)转换为 Markdown 文本,供 LLM 处理"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
10
16
|
"skill": {
|
|
11
17
|
"skillFile": "SKILL.md",
|
|
12
18
|
"requiredPermissions": ["file"],
|
|
@@ -7,6 +7,12 @@
|
|
|
7
7
|
"author": "markus",
|
|
8
8
|
"category": "platform",
|
|
9
9
|
"tags": ["cli", "admin", "governance", "audit", "settings"],
|
|
10
|
+
"i18n": {
|
|
11
|
+
"zh-CN": {
|
|
12
|
+
"displayName": "Markus 管理员命令行",
|
|
13
|
+
"description": "通过 markus CLI 进行系统管理 — 系统控制、审计、用户管理、设置、网关。"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
10
16
|
"skill": {
|
|
11
17
|
"skillFile": "SKILL.md",
|
|
12
18
|
"alwaysOn": false
|
|
@@ -7,6 +7,13 @@
|
|
|
7
7
|
"author": "markus",
|
|
8
8
|
"category": "platform",
|
|
9
9
|
"tags": ["cli", "agents", "lifecycle"],
|
|
10
|
+
"hidden": true,
|
|
11
|
+
"i18n": {
|
|
12
|
+
"zh-CN": {
|
|
13
|
+
"displayName": "Markus 智能体命令行",
|
|
14
|
+
"description": "通过 markus CLI 管理智能体 — 生命周期、消息通信、配置、记忆、技能。"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
10
17
|
"skill": {
|
|
11
18
|
"skillFile": "SKILL.md",
|
|
12
19
|
"alwaysOn": false
|
|
@@ -7,6 +7,12 @@
|
|
|
7
7
|
"author": "markus",
|
|
8
8
|
"category": "platform",
|
|
9
9
|
"tags": ["cli", "platform", "management", "api"],
|
|
10
|
+
"i18n": {
|
|
11
|
+
"zh-CN": {
|
|
12
|
+
"displayName": "Markus 命令行",
|
|
13
|
+
"description": "通过 CLI 命令操作 Markus 平台的核心知识,是所有 markus-*-cli 技能的前置依赖。"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
10
16
|
"skill": {
|
|
11
17
|
"skillFile": "SKILL.md",
|
|
12
18
|
"alwaysOn": false
|
|
@@ -7,6 +7,12 @@
|
|
|
7
7
|
"author": "markus",
|
|
8
8
|
"category": "productivity",
|
|
9
9
|
"tags": ["hub", "marketplace", "community", "share"],
|
|
10
|
+
"i18n": {
|
|
11
|
+
"zh-CN": {
|
|
12
|
+
"displayName": "Markus Hub 连接器",
|
|
13
|
+
"description": "在 Markus Hub 社区市场上搜索、下载和发布智能体/团队/技能"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
10
16
|
"skill": {
|
|
11
17
|
"skillFile": "SKILL.md",
|
|
12
18
|
"requiredPermissions": ["network"],
|
|
@@ -7,6 +7,13 @@
|
|
|
7
7
|
"author": "markus",
|
|
8
8
|
"category": "platform",
|
|
9
9
|
"tags": ["cli", "projects", "requirements", "deliverables", "reports"],
|
|
10
|
+
"hidden": true,
|
|
11
|
+
"i18n": {
|
|
12
|
+
"zh-CN": {
|
|
13
|
+
"displayName": "Markus 项目命令行",
|
|
14
|
+
"description": "通过 markus CLI 管理项目、需求、交付物、报告和代码审查。"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
10
17
|
"skill": {
|
|
11
18
|
"skillFile": "SKILL.md",
|
|
12
19
|
"alwaysOn": false
|
|
@@ -7,6 +7,13 @@
|
|
|
7
7
|
"author": "markus",
|
|
8
8
|
"category": "platform",
|
|
9
9
|
"tags": ["cli", "skills", "registry"],
|
|
10
|
+
"hidden": true,
|
|
11
|
+
"i18n": {
|
|
12
|
+
"zh-CN": {
|
|
13
|
+
"displayName": "Markus 技能命令行",
|
|
14
|
+
"description": "通过 markus CLI 管理技能 — 列出、安装、卸载、搜索、脚手架。"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
10
17
|
"skill": {
|
|
11
18
|
"skillFile": "SKILL.md",
|
|
12
19
|
"alwaysOn": false
|
|
@@ -7,6 +7,13 @@
|
|
|
7
7
|
"author": "markus",
|
|
8
8
|
"category": "platform",
|
|
9
9
|
"tags": ["cli", "teams", "management"],
|
|
10
|
+
"hidden": true,
|
|
11
|
+
"i18n": {
|
|
12
|
+
"zh-CN": {
|
|
13
|
+
"displayName": "Markus 团队命令行",
|
|
14
|
+
"description": "通过 markus CLI 管理团队 — 创建、成员管理、生命周期、导出。"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
10
17
|
"skill": {
|
|
11
18
|
"skillFile": "SKILL.md",
|
|
12
19
|
"alwaysOn": false
|
|
@@ -7,6 +7,12 @@
|
|
|
7
7
|
"author": "markus",
|
|
8
8
|
"category": "productivity",
|
|
9
9
|
"tags": ["learning", "reflection", "memory", "self-improvement", "evolution"],
|
|
10
|
+
"i18n": {
|
|
11
|
+
"zh-CN": {
|
|
12
|
+
"displayName": "自我进化",
|
|
13
|
+
"description": "从经验中学习 — 捕获教训、演进 SOP、分享最佳实践技能,并逐步优化自身角色"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
10
16
|
"skill": {
|
|
11
17
|
"skillFile": "SKILL.md",
|
|
12
18
|
"alwaysOn": true
|
|
@@ -7,6 +7,12 @@
|
|
|
7
7
|
"author": "markus",
|
|
8
8
|
"category": "development",
|
|
9
9
|
"tags": ["builder", "skill", "design", "manifest", "mcp"],
|
|
10
|
+
"i18n": {
|
|
11
|
+
"zh-CN": {
|
|
12
|
+
"displayName": "技能构建",
|
|
13
|
+
"description": "设计和创建智能体技能包 — 基于指令和基于 MCP 的技能、清单格式和 Markus 技能工件目录结构"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
10
16
|
"skill": {
|
|
11
17
|
"skillFile": "SKILL.md"
|
|
12
18
|
}
|
|
@@ -7,6 +7,12 @@
|
|
|
7
7
|
"author": "markus",
|
|
8
8
|
"category": "development",
|
|
9
9
|
"tags": ["builder", "team", "design", "manifest"],
|
|
10
|
+
"i18n": {
|
|
11
|
+
"zh-CN": {
|
|
12
|
+
"displayName": "团队构建",
|
|
13
|
+
"description": "设计和创建 AI 团队包 — 清单格式、成员结构、目录布局和 Markus 团队工件部署"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
10
16
|
"skill": {
|
|
11
17
|
"skillFile": "SKILL.md"
|
|
12
18
|
}
|
|
@@ -8,6 +8,18 @@
|
|
|
8
8
|
"category": "productivity",
|
|
9
9
|
"tags": ["content", "writing", "marketing", "documentation", "creative", "editorial"],
|
|
10
10
|
"icon": "edit",
|
|
11
|
+
"i18n": {
|
|
12
|
+
"zh-CN": {
|
|
13
|
+
"displayName": "内容创作团队",
|
|
14
|
+
"description": "以研究驱动的内容团队,具有结构化的流水线:调研 → 简报 → 草稿 → 编辑 → 发布。支持并行写作、事实核查和编辑审核。适用于文档项目、营销活动、技术写作和内容运营。",
|
|
15
|
+
"members": {
|
|
16
|
+
"Editor-in-Chief": "主编",
|
|
17
|
+
"Senior Writer": "高级作者",
|
|
18
|
+
"Technical Writer": "技术文档工程师",
|
|
19
|
+
"Research Analyst": "研究分析师"
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
},
|
|
11
23
|
"team": {
|
|
12
24
|
"members": [
|
|
13
25
|
{
|
|
@@ -8,6 +8,19 @@
|
|
|
8
8
|
"category": "development",
|
|
9
9
|
"tags": ["development", "agile", "sprint", "feature", "software", "tdd", "code-review"],
|
|
10
10
|
"icon": "users",
|
|
11
|
+
"i18n": {
|
|
12
|
+
"zh-CN": {
|
|
13
|
+
"displayName": "开发小队",
|
|
14
|
+
"description": "高效能开发团队,遵循计划 → 实现 → 审查 → 验证的工作流。支持并行实现、两阶段审查(代码 + QA)、依赖感知的任务调度。适用于功能冲刺、重构和生产级软件交付。",
|
|
15
|
+
"members": {
|
|
16
|
+
"Tech Lead": "技术负责人",
|
|
17
|
+
"Backend Developer": "后端开发",
|
|
18
|
+
"Frontend Developer": "前端开发",
|
|
19
|
+
"Code Reviewer": "代码审查员",
|
|
20
|
+
"QA Engineer": "QA 工程师"
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
},
|
|
11
24
|
"team": {
|
|
12
25
|
"members": [
|
|
13
26
|
{
|
|
@@ -8,6 +8,19 @@
|
|
|
8
8
|
"category": "development",
|
|
9
9
|
"tags": ["engineering", "full-stack", "architecture", "devops", "deployment", "multi-layer"],
|
|
10
10
|
"icon": "server",
|
|
11
|
+
"i18n": {
|
|
12
|
+
"zh-CN": {
|
|
13
|
+
"displayName": "工程小组",
|
|
14
|
+
"description": "全功能工程团队,由架构师设计、多位开发者跨层并行实现(后端、前端、基础设施),配备专职审查员和 DevOps 工程师。适用于需要跨层协调、API 契约和生产部署的复杂多层项目。",
|
|
15
|
+
"members": {
|
|
16
|
+
"Architect": "架构师",
|
|
17
|
+
"Backend Engineer": "后端工程师",
|
|
18
|
+
"Frontend Engineer": "前端工程师",
|
|
19
|
+
"Infra Engineer": "基础设施工程师",
|
|
20
|
+
"Senior Reviewer": "高级审查员"
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
},
|
|
11
24
|
"team": {
|
|
12
25
|
"members": [
|
|
13
26
|
{
|
|
@@ -8,6 +8,18 @@
|
|
|
8
8
|
"category": "research",
|
|
9
9
|
"tags": ["research", "investigation", "debugging", "analysis", "competing-hypotheses", "audit"],
|
|
10
10
|
"icon": "search",
|
|
11
|
+
"i18n": {
|
|
12
|
+
"zh-CN": {
|
|
13
|
+
"displayName": "研究实验室",
|
|
14
|
+
"description": "结构化研究团队,用于调查复杂问题:通过竞争性假设进行调试、技术评估、安全审计和深度分析。多位研究员并行探索不同角度,相互质疑发现,由综合分析师产出高质量交付物。",
|
|
15
|
+
"members": {
|
|
16
|
+
"Research Lead": "研究负责人",
|
|
17
|
+
"Researcher Alpha": "研究员 Alpha",
|
|
18
|
+
"Researcher Beta": "研究员 Beta",
|
|
19
|
+
"Synthesizer": "综合分析师"
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
},
|
|
11
23
|
"team": {
|
|
12
24
|
"members": [
|
|
13
25
|
{
|
|
@@ -8,6 +8,17 @@
|
|
|
8
8
|
"category": "startup",
|
|
9
9
|
"tags": ["startup", "lean", "mvp", "product", "growth", "iteration", "agile"],
|
|
10
10
|
"icon": "zap",
|
|
11
|
+
"i18n": {
|
|
12
|
+
"zh-CN": {
|
|
13
|
+
"displayName": "创业全能团队",
|
|
14
|
+
"description": "精益创业团队,注重速度。产品经理驱动策略,全栈开发快速交付功能,增长负责人处理营销和数据分析。适用于 MVP 开发、快速迭代和增长实验。",
|
|
15
|
+
"members": {
|
|
16
|
+
"Product Manager": "产品经理",
|
|
17
|
+
"Full-Stack Developer": "全栈开发",
|
|
18
|
+
"Growth Lead": "增长负责人"
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
},
|
|
11
22
|
"team": {
|
|
12
23
|
"members": [
|
|
13
24
|
{
|