vp-find

vp-find is a command for coding agents from Ganbin/4d-development-skill. It costs 0 tokens per session (1,250 once invoked), scanned A, original, MIT.

A command for searching a range of data for a text value, with optional rules and replacement text.

In plain words
What is it for?
Finding matching values in a range, narrowing the search with conditions, and replacing results.
Why use it?
It avoids writing separate search and replacement logic when working with structured ranges.

Command

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/ganbin/4d-development-skill/vp-find
Clone the repo
git clone --depth 1 https://github.com/Ganbin/4d-development-skill
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,250 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.01250
Opus 5 $0.00000 $0.00625
Sonnet 5 $0.00000 $0.00250
Haiku 4.5 $0.00000 $0.00125

Measured 3d ago against content hash 96183349cc8b, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

vp-find scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

docs/ViewPro/commands/vp-find.md · 84 lines

How it starts

The opening of the file, as written. The whole thing — 84 lines — stays where its author put it; the contents beside it link to each section on GitHub.

VP Find ( rangeObj : Object ; searchValue : Text ) : ObjectVP Find ( rangeObj : Object ; searchValue : Text ; searchCondition : Object ) : ObjectVP Find ( rangeObj : Object ; searchValue : Text ; searchCondition : Object ; replaceValue : Text ) : Object

Parameter Type Description
rangeObj Object -> Range object
searchValue Text -> Search value
searchCondition Object -> Object containing search condition(s)
replaceValue Text -> Replacement value
Result Object <- Range object

Description

The VP Find command searches the rangeObj for the searchValue. Optional parameters can be used to refine the search and/or replace any results found.

In the rangeObj parameter, pass an object containing a range to search.

The searchValue parameter lets you pass the text to search for within the rangeObj.

You can pass the optional searchCondition parameter to specify how the search is performed. The following properties are supported:

Property Type Description
afterColumn Integer The number of the column just before the starting column of the search. If the rangeObj is a combined range, the column number given must be from the first range. Default value: -1 (beginning of the rangeObj)
afterRow Integer The number of the row just before the starting row of the search. If the rangeObj is a combined range, the row number given must be from the first range. Default value: -1 (beginning of the rangeObj)
all Boolean True - All cells in rangeObj corresponding to searchValue are returnedFalse - (default value) Only the first cell in rangeObj corresponding to searchValue is returned
flags Integer vk find flag exact matchThe entire content of the cell must completely match the search valuevk find flag ignore caseCapital and lower-case letters are considered the same. Ex: "a" is the same as "A".vk find flag noneno search flags are considered (default)vk find flag use wild cardsWildcard characters (*,?) can be used in the search string. Wildcard characters can be used in any string comparison to match any number of characters:* for zero or multiple characters (for example, searching for "bl*" can find "bl", "black", or "blob")? for a single character (for example, searching for "h?t" can find "hot", or "hit"These flags can be combined. For example: $search.flags:=vk find flag use wild cards+vk find flag ignore case
order Integer vk find order by columnsThe search is performed by columns. Each row of a column is searched before the search continues to the next column.vk find order by rowsThe search is performed by rows. Each column of a row is searched before the search continues to the next row (default)
target Integer vk find target formulaThe search is performed in the cell formulavk find target tagThe search is performed in the cell tagvk find target textThe search is performed in the cell text (default)These flags can be combined. For example:$search.target:=vk find target formula+vk find target text

In the optional replaceValue parameter, you can pass text to take the place of any instance of the text in searchValue found in the rangeObj.

Read the full file on GitHub · 84 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 84 lines · 0 tokens per session scan A 96183349cc8b

Subscribe to this mod's changes

vp-find is a command published in the GitHub repository Ganbin/4d-development-skill (9 stars, last pushed 6mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,250 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.