- Add XML-structured description (<must>, <operations>, <examples>, <auto>) - Add 5 concrete examples including BAD pattern showing duplication - Add explicit anti-duplication warning for range replace - Move snapshot rule to top-level <must> section - Clarify batch semantics (multiple ops, not one big replace) - Fix lines schema: add string[] to union (was string|null, now string[]|string|null) - Matches runtime RawHashlineEdit type and description text
19 lines
528 B
JSON
19 lines
528 B
JSON
{
|
|
"name": "hashline-edit-benchmark",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "Hashline edit tool benchmark using Vercel AI SDK with FriendliAI provider",
|
|
"scripts": {
|
|
"bench:basic": "bun run test-edit-ops.ts",
|
|
"bench:edge": "bun run test-edge-cases.ts",
|
|
"bench:multi": "bun run test-multi-model.ts",
|
|
"bench:all": "bun run bench:basic && bun run bench:edge"
|
|
},
|
|
"dependencies": {
|
|
"@friendliai/ai-provider": "^1.0.9",
|
|
"ai": "^6.0.94",
|
|
"zod": "^4.1.0"
|
|
}
|
|
}
|