@archships/dim-plugin-grep-glob
v0.0.3
Published
Official grep-glob plugin for dim-agent-sdk.
Readme
@archships/dim-plugin-grep-glob
Official supported filesystem search plugin for dim-agent-sdk.
What it adds
glob: list files that match a glob patterngrep: search file contents for a text query
Permissions
- requests
fs: 'read'
Usage
import { createAgent, createModel } from '@archships/dim-agent-sdk'
import { createGrepGlobPlugin } from '@archships/dim-plugin-grep-glob'
const agent = createAgent({
model: createModel(adapter),
plugins: [createGrepGlobPlugin()],
includeBuiltinTools: false,
})Notes
- tool execution uses the standard file system gateway
- this plugin is covered by the centralized plugin integration smoke tests
