@kolisachint/hoocode-agent 0.5.27 → 0.5.29

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/docs/plugins.md CHANGED
@@ -107,8 +107,9 @@ Then package for distribution:
107
107
 
108
108
  ## Model-facing tools
109
109
 
110
- When plugin tooling is enabled (`--enable-plugintools`, or the
111
- `enablePluginTools` setting), the model gets its own lifecycle tools rather than
110
+ When plugin tooling is enabled (`--enable-plugintools`, the `enablePluginTools`
111
+ setting, or `/settings` under **Plugins**), the model gets its own lifecycle
112
+ tools rather than
112
113
  going through the slash command: `SearchPlugins`, `ListPlugins`,
113
114
  `SuggestPluginInstall`, `InstallPlugin`, `UninstallPlugin`, `UpdatePlugin`,
114
115
  `ProposePlugin`, `RemovePluginCapability`, and `PackagePlugin`.
package/docs/settings.md CHANGED
@@ -222,6 +222,49 @@ narrowing the window to nothing. As with all settings, a project
222
222
  `.hoocode/settings.json` overrides the global one, so a repo can carry its own
223
223
  window.
224
224
 
225
+ ### Plugins and artifacts
226
+
227
+ Where hoocode writes what it authors. Both are editable from `/settings` under
228
+ **Plugins**, which writes the global settings file — the layout a machine
229
+ targets is an environment-level choice, so it is set once rather than passed on
230
+ every run.
231
+
232
+ | Setting | Type | Default | Description |
233
+ |---------|------|---------|-------------|
234
+ | `enablePluginTools` | boolean | `false` | Master switch for the autonomous plugin system: the lifecycle tools, `ProposePlugin`, and the plugin-reuse nudge |
235
+ | `platform` | string \| string[] | - | Vendor layout(s) to write artifacts in: `claude`, `github` (aliases `copilot`, `gh`), `agents` (alias `native`) |
236
+ | `pluginInstallScope` | string | `"user"` | Where an autonomous plugin install lands: `user` (`~/.agents/plugins`) or `project` (`<cwd>/.agents/plugins`, shared once committed) |
237
+
238
+ ```json
239
+ { "enablePluginTools": true, "platform": ["claude", "github"], "pluginInstallScope": "user" }
240
+ ```
241
+
242
+ `/settings` writes the global file. If a project `.hoocode/settings.json` sets
243
+ one of these keys it is merged over that on the next session, so the pane marks
244
+ the row as overridden rather than letting the change look permanent.
245
+
246
+ `enablePluginTools` is off by default and is the one gate for the whole
247
+ autonomous system — see [Plugins](plugins.md). Toggling it in `/settings`
248
+ attaches the tools on the next session, since they are wired up when the session
249
+ is built; the reuse nudge re-reads the setting and follows immediately. The
250
+ `--enable-plugintools` flag turns it on for a single run. Slash-command plugin
251
+ management (`/plugin`) is unaffected either way.
252
+
253
+ `platform` governs the two things hoocode *writes*: authored plugins, and the
254
+ `/new-skill`, `/new-agent` and `/new-command` scaffolds. Reading is unaffected —
255
+ every vendor convention is read regardless of this setting.
256
+
257
+ It takes a list because emitting for two platforms at once is a supported shape;
258
+ in `/settings` the three tokens are independent toggles for that reason.
259
+ Unsetting it (all toggles off) is not the same as targeting nothing: the
260
+ defaults come back, which are `claude` for an authored plugin and `.hoocode/`
261
+ for a scaffold. `agents` is a scaffold-only target — a plugin is a distribution
262
+ unit and the native layout belongs to no marketplace — so plugin authoring
263
+ filters it out rather than failing.
264
+
265
+ The `--platform` CLI flag sets the same targets for a single run and overrides
266
+ this setting.
267
+
225
268
  ### Model Cycling
226
269
 
227
270
  | Setting | Type | Default | Description |
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kolisachint/hoocode-extension-custom-provider-anthropic",
3
3
  "private": true,
4
- "version": "0.3.27",
4
+ "version": "0.3.29",
5
5
  "type": "module",
6
6
  "engines": {
7
7
  "bun": ">=1.0.0"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kolisachint/hoocode-extension-custom-provider-gitlab-duo",
3
3
  "private": true,
4
- "version": "0.3.27",
4
+ "version": "0.3.29",
5
5
  "type": "module",
6
6
  "engines": {
7
7
  "bun": ">=1.0.0"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kolisachint/hoocode-extension-sandbox",
3
3
  "private": true,
4
- "version": "0.3.27",
4
+ "version": "0.3.29",
5
5
  "type": "module",
6
6
  "engines": {
7
7
  "bun": ">=1.0.0"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kolisachint/hoocode-extension-with-deps",
3
3
  "private": true,
4
- "version": "0.3.27",
4
+ "version": "0.3.29",
5
5
  "type": "module",
6
6
  "engines": {
7
7
  "bun": ">=1.0.0"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kolisachint/hoocode-agent",
3
- "version": "0.5.27",
3
+ "version": "0.5.29",
4
4
  "description": "Coding agent CLI with read, bash, edit, write tools and session management",
5
5
  "type": "module",
6
6
  "hoocodeConfig": {
@@ -49,9 +49,9 @@
49
49
  "prepublishOnly": "npm run clean && npm run build"
50
50
  },
51
51
  "dependencies": {
52
- "@kolisachint/hoocode-agent-core": "^0.5.27",
53
- "@kolisachint/hoocode-ai": "^0.5.27",
54
- "@kolisachint/hoocode-tui": "^0.5.27",
52
+ "@kolisachint/hoocode-agent-core": "^0.5.29",
53
+ "@kolisachint/hoocode-ai": "^0.5.29",
54
+ "@kolisachint/hoocode-tui": "^0.5.29",
55
55
  "@silvia-odwyer/photon-node": "^0.3.4",
56
56
  "chalk": "^5.5.0",
57
57
  "cli-highlight": "^2.1.11",