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.
npx agentmods add commands/ganbin/4d-development-skill/vp-findgit clone --depth 1 https://github.com/Ganbin/4d-development-skillWhat 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.
| Model | Per session | Once 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 |
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.
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.
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.
- 3d ago First seen · 84 lines · 0 tokens per session scan A 96183349cc8b
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.
Other commands, from other repositories
profile
Save, apply, and share multi-agent configuration profiles.
numbers-to-excel
Convert a Numbers document to Excel.
audit-artifacts
List suspicious root agent process files and placement directories.
batch-fill
Fill a form once per row of a CSV with Emboss.
start-implementation-plan
Create implementation plan from design document.
convert-table
将 Excel 表格转为 CSV 或在对话中展示.