cli-swarm 1.0.1 → 1.0.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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # clitax-zj7fTPVh4p
1
+ # cli-swarm
2
2
 
3
3
  swarm — 智能体蜂群编排 skill(CLI.Tax 发布)。
4
4
 
@@ -7,4 +7,8 @@ swarm — 智能体蜂群编排 skill(CLI.Tax 发布)。
7
7
  - 固定运维智能体:心跳检测、回收卡死智能体、派新智能体继承任务续跑
8
8
  - 固定安全守卫智能体:注入/危险指令检测、异常警报
9
9
 
10
- 安装:`npx clitaxio@latest install zj7fTPVh4p` 或 `npx cli-swarm@latest install`
10
+ ```bash
11
+ npx cli-swarm@latest install
12
+ ```
13
+
14
+ Source: https://github.com/88208555/swarm-clitax.git
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cli-swarm",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Swarm skill installer for CLI.Tax: orchestrate N sub-agents with enterprise org-chart rules.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -8,12 +8,17 @@
8
8
  },
9
9
  "files": [
10
10
  "cli.mjs",
11
- "skill",
12
- "README.md"
11
+ "README.md",
12
+ "skill/SKILL.md",
13
+ "skill/skill.json"
13
14
  ],
14
15
  "engines": {
15
16
  "node": ">=18"
16
17
  },
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/88208555/swarm-clitax.git"
21
+ },
17
22
  "license": "UNLICENSED",
18
23
  "keywords": [
19
24
  "cli.tax",
package/skill/SKILL.md CHANGED
@@ -50,6 +50,10 @@ intake 时可选择 `blueprintEnabled`:任务先交给 Blueprint 技能规划
50
50
  由它生成 blueprint 请求负载(`https://cli.tax/wvz6zmRWmX`,operation `compile-inline`),
51
51
  拿到蓝图后继续 `dispatch → claim → report`,红绿灯与运维/安全守卫保持不变。
52
52
 
53
+ ## Official catalog hops
54
+
55
+ After `capabilities`, read `officialCatalog`. Default allowlist is official skills. Call another skill only when its capability matches this demand. User-named extras enter only when the user names them; then confirm that skill's capabilities before invoke. Do not call chain-unrelated or self-extended skills.
56
+
53
57
  ## 核心原则
54
58
 
55
59
  1. **组织即规则**:协作结构 = 企业级组织架构(决策/管理/执行三层),派单、审批、汇报都遵循层级规则。
package/skill/skill.json CHANGED
@@ -2,9 +2,9 @@
2
2
  "name": "swarm",
3
3
  "displayName": "Swarm",
4
4
  "description": "智能体蜂群编排:大脑调度 N 个子智能体,企业级组织架构规则 + 项目 JSON 任务派单/认领/回传 + 红绿灯状态 + 固定运维(心跳/回收/接替/继承)与安全守卫(注入检测/警报)。",
5
- "schemaVersion": "cli.request/1.0",
5
+ "schemaVersion": "swarm.skill.request/1.0",
6
6
  "endpoint": "https://cli.tax/zj7fTPVh4p",
7
7
  "method": "POST",
8
- "version": "v1.0.0",
8
+ "version": "v1.0.2",
9
9
  "type": "Skill"
10
10
  }