cli-swarm 1.0.1 → 1.0.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cli-swarm",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
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,8 +8,9 @@
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"
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
  }