Code Pluginsource linked

Wyszukiwarka CPVv1.0.1

OpenClaw plugin that searches Polish CPV codes from a local dataset.

openclaw-cpv-search·runtime cpv-search·by @waszkiewiczja
Community code plugin. Review compatibility and verification before install.
openclaw plugins install clawhub:openclaw-cpv-search
Latest release: v1.0.1Download zip

Capabilities

configSchema
Yes
Executes code
Yes
HTTP routes
0
Runtime ID
cpv-search

Compatibility

Built With Open Claw Version
2026.4.9
Min Gateway Version
2026.4.9
Plugin Api Range
>=2026.4.9
Plugin Sdk Version
2026.4.9
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & 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

Tier
source linked
Scope
artifact only
Summary
Validated package structure and linked the release to source metadata.
Commit
bfd2fe7
Tag
main
Provenance
No
Scan status
clean

Tags

latest
1.0.1

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