@syntesseraai/opencode-feature-factory 0.2.24 → 0.2.25

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/dist/index.js +5 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1,5 +1,6 @@
1
1
  import { StopQualityGateHooksPlugin } from './stop-quality-gate.js';
2
2
  import { FFAgentsCurrentPlugin } from './plugins/ff-agents-current-plugin.js';
3
+ import { FFAgentsShowPlugin } from './plugins/ff-agents-show-plugin.js';
3
4
  /**
4
5
  * Stop Quality Gate Plugin
5
6
  *
@@ -11,14 +12,16 @@ export const StopQualityGatePlugin = async (input) => {
11
12
  if (!directory || directory === '' || directory === '/') {
12
13
  return {};
13
14
  }
14
- // Load quality gate + ff-agents-current plugin
15
- const [qualityGateHooks, agentsCurrentHooks] = await Promise.all([
15
+ // Load quality gate + agent plugins
16
+ const [qualityGateHooks, agentsCurrentHooks, agentsShowHooks] = await Promise.all([
16
17
  StopQualityGateHooksPlugin(input).catch(() => ({})),
17
18
  FFAgentsCurrentPlugin(input).catch(() => ({})),
19
+ FFAgentsShowPlugin(input).catch(() => ({})),
18
20
  ]);
19
21
  return {
20
22
  ...qualityGateHooks,
21
23
  ...agentsCurrentHooks,
24
+ ...agentsShowHooks,
22
25
  };
23
26
  };
24
27
  // Default export for OpenCode plugin discovery
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.2.24",
4
+ "version": "0.2.25",
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",