# extendify/3.1.5/src/Agent/lib/local-pick.js

Extendify, version 3.1.5. 11 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.1.5/code/src/Agent/lib/local-pick.js
- Raw: https://pluginprobe.com/plugins/extendify/3.1.5/raw/src/Agent/lib/local-pick.js
- Modified: 2026-08-12T16:23: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.5/code/src/Agent/lib/local-pick.js#L10-L20`.

```javascript
// Resolve a block edit's workflow on-device so we can skip the network find-agent.

import { IGNORED_BLOCKS } from './classify-block-edit';

export const localPickWorkflow = ({ block }) => {
	if (!block || !block.blockType || IGNORED_BLOCKS.has(block.blockType)) {
		return null;
	}
	return { id: 'block-patching' };
};

```
