clikit-plugin 0.1.2 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -80,7 +80,7 @@ Project config overrides user config.
80
80
  "session_notification": { "enabled": true },
81
81
  "truncator": { "enabled": true },
82
82
  "compaction": { "enabled": true },
83
- "swarm_enforcer": { "enabled": false }
83
+ "swarm_enforcer": { "enabled": true }
84
84
  }
85
85
  }
86
86
  ```
@@ -112,7 +112,7 @@ Project config overrides user config.
112
112
  | `session_notification` | on | Desktop notifications on idle/error (Linux/macOS/Windows) |
113
113
  | `truncator` | on | Truncates large outputs to prevent context overflow |
114
114
  | `compaction` | on | Preserves beads state + memory during context compaction |
115
- | `swarm_enforcer` | **off** | Enforces task isolation in multi-agent swarms |
115
+ | `swarm_enforcer` | on | Enforces task isolation in multi-agent swarms |
116
116
 
117
117
  ## Agents
118
118
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clikit-plugin",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "OpenCode plugin with 10 agents, 19 commands, 48 skills, 14 hooks",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -21,7 +21,8 @@
21
21
  "skill",
22
22
  "command",
23
23
  "memory",
24
- "AGENTS.md"
24
+ "AGENTS.md",
25
+ "README.md"
25
26
  ],
26
27
  "scripts": {
27
28
  "build": "bun build src/index.ts src/cli.ts --outdir dist --target bun --format esm && tsc --emitDeclarationOnly && cp src/clikit.schema.json dist/",