@syntesseraai/opencode-feature-factory 0.10.4 → 0.10.5

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
@@ -30,6 +30,7 @@ It also updates `~/.config/opencode/opencode.json` non-destructively by merging
30
30
 
31
31
  - **Always overwrites packaged assets**: installer unconditionally overwrites Feature Factory `agents` and `skills` files on every install.
32
32
  - **`opencode.json` is non-destructive**: existing keys/values are preserved; only missing required plugin/MCP entries are added.
33
+ - **No automatic plugin removals**: existing plugin entries are preserved as-is, including entries no longer in current defaults.
33
34
  - **Global scope**: assets are installed to `~/.config/opencode/` and shared across projects.
34
35
 
35
36
  ## Tools
@@ -67,6 +68,13 @@ The plugin merges the following MCP servers into global OpenCode config when mis
67
68
  }
68
69
  ```
69
70
 
71
+ The plugin also merges the following default plugins when they are missing:
72
+
73
+ - `@syntesseraai/opencode-feature-factory@latest`
74
+ - `@nick-vi/opencode-type-inject@latest`
75
+ - `@franlol/opencode-md-table-formatter@latest`
76
+ - `opencode-pty@latest`
77
+
70
78
  ### Merge Outcomes
71
79
 
72
80
  `DEFAULT_MCP_SERVERS` currently includes 4 servers (`jina-ai`, `gh_grep`, `context7`, `morph-mcp`).
@@ -77,7 +85,11 @@ The merge behavior is additive and non-destructive:
77
85
  - Existing config with 1 custom server and a customized `gh_grep` entry -> 5 servers after merge (custom + customized `gh_grep` + 3 missing defaults).
78
86
  - Existing server definitions are preserved and never overwritten by defaults.
79
87
 
80
- The plugin list is also merged non-destructively to ensure required companion plugins are present.
88
+ Plugin merge behavior is also additive and non-destructive:
89
+
90
+ - Existing plugin entries are preserved and never removed.
91
+ - Matching is by package base name, so pinned versions (for example `opencode-pty@1.2.3`) prevent adding the `@latest` variant.
92
+ - Legacy `@spoons-and-mirrors/subtask2` entries in user config remain untouched if already present, but are no longer added to new installs/default merges.
81
93
 
82
94
  ## Related Docs
83
95
 
package/bin/ff-deploy.js CHANGED
@@ -60,7 +60,6 @@ const DEFAULT_PLUGINS = [
60
60
  '@syntesseraai/opencode-feature-factory@latest',
61
61
  '@nick-vi/opencode-type-inject@latest',
62
62
  '@franlol/opencode-md-table-formatter@latest',
63
- '@spoons-and-mirrors/subtask2@latest',
64
63
  'opencode-pty@latest',
65
64
  ];
66
65
 
@@ -8,7 +8,6 @@ export const DEFAULT_PLUGINS = [
8
8
  '@syntesseraai/opencode-feature-factory@latest',
9
9
  '@nick-vi/opencode-type-inject@latest',
10
10
  '@franlol/opencode-md-table-formatter@latest',
11
- '@spoons-and-mirrors/subtask2@latest',
12
11
  'opencode-pty@latest',
13
12
  ];
14
13
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@syntesseraai/opencode-feature-factory",
4
- "version": "0.10.4",
4
+ "version": "0.10.5",
5
5
  "type": "module",
6
6
  "description": "OpenCode plugin for Feature Factory agents - provides sub-agents and skills for validation, review, security, and architecture assessment",
7
7
  "license": "MIT",