@syntesseraai/opencode-feature-factory 0.2.23 → 0.2.24

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