Community code plugin. Review compatibility and verification before install.
Latest release: v1.0.1Download zip
Capabilities
Compatibility
Security Scan
OpenClaw
Benign
high confidencePurpose & Capability
Name/description (Polish CPV search) match the implementation: the plugin loads a bundled cpv.json and exposes a search tool and a /cpv command. No unrelated environment variables or binaries are required.
Instruction Scope
SKILL.md describes installing the plugin locally and how to configure/use it. The runtime code only reads the bundled cpv.json and exposes search results; it does not instruct reading unrelated files, contacting external endpoints, or collecting other system data.
Install Mechanism
No install spec is provided (installation from local folder is documented). The plugin is shipped with source, built dist files, and a bundled dataset; there are no downloads from untrusted URLs or extract/install steps that would write arbitrary remote code to disk.
Credentials
The skill declares no required environment variables or credentials and the code does not access environment secrets or config paths. The package-lock contains many transitive packages, but package.json only depends on 'openclaw' — nothing in the code needs extra secrets.
Persistence & Privilege
The skill is not forced-always; it's user-invocable and may be invoked autonomously (platform default). It only registers its own tool/command and does not modify other plugins or system-wide settings.
Assessment
This plugin appears to be a straightforward local CPV lookup: it uses the bundled cpv.json and exposes a search tool and a /cpv command. Before installing: (1) confirm you trust the plugin source (local folder or repository) since it contains JavaScript/TypeScript code that will run in the OpenClaw gateway; (2) review the bundled cpv.json if you want to ensure no unexpected data is present; (3) if your organization restricts third-party code, consider running the plugin in a sandbox or reviewing the source files (they are small and readable). There are no requested credentials or network endpoints in the code.Verification
Tags
Wyszukiwarka kodów CPV
Wyszukiwarka kodów CPV, która pomaga szybko znaleźć odpowiednie kody i opisy do przetargów publicznych. Źródłem danych jest wyszukiwarka przetargów ZnajdzPrzetargi.pl, która wyszukuje przetargi i zamówienia publiczne w Polsce.
CPV Search
A CPV code search engine that helps you quickly find the right codes and descriptions for public tenders. The data source is the tender search engine ZnadzPrzetargi.pl, which searches for tenders and public contracts in Poland. CPV lookup tool backed by the bundled cpv.json file.
What it adds
- Agent tool:
search_cpv - Text command:
/cpv <query>
Example prompts:
Find the CPV code for office cleaning services/cpv laptopy/cpv 90910000
Install from a local folder
openclaw plugins install ./path/to/openclaw-cpv-search
openclaw gateway restart
Example config
Put this under your OpenClaw config:
{
plugins: {
enabled: true,
allow: ["cpv-search"],
entries: {
"cpv-search": {
enabled: true,
config: {
defaultLimit: 8,
maxLimit: 15,
},
},
},
},
}
If your tool policy is restrictive, allow either the plugin id cpv-search or the tool name search_cpv.
Tool output
The tool returns:
- the original query
- the number of matches returned
- a ranked list of CPV codes with descriptions
Development
npm install
npm run typecheck
npm test
npm run build
