# extendify/3.1.3/src/Agent/workflows/plugins/recommend-plugin.js

Extendify, version 3.1.3. 10 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.1.3/code/src/Agent/workflows/plugins/recommend-plugin.js
- Raw: https://pluginprobe.com/plugins/extendify/3.1.3/raw/src/Agent/workflows/plugins/recommend-plugin.js
- Modified: 2025-10-23T16:20:58+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/extendify/3.1.3/code/src/Agent/workflows/plugins/recommend-plugin.js#L10-L20`.

```javascript
import { InstallPlugin } from '@agent/workflows/plugins/components/InstallPlugin';

const { abilities } = window.extAgentData;

export default {
	available: () => abilities.canInstallPlugins && abilities.canActivatePlugins,
	id: 'recommend-plugins',
	whenFinished: { component: InstallPlugin },
};

```
