-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"name": "agent-prompt-tuning-lab",
"version": "0.1.0",
"private": true,
"description": "Harvest, normalize, and split Cursor agent transcripts for prompt tuning",
"type": "module",
"scripts": {
"harvest": "./scripts/harvest.sh host",
"harvest:host": "./scripts/harvest.sh host",
"harvest:devcontainer": "./scripts/harvest.sh devcontainer",
"harvest:both": "./scripts/harvest.sh both",
"harvest:all": "./scripts/harvest.sh host --all --unpack && ./scripts/harvest.sh devcontainer --unpack",
"harvest:unpack": "./scripts/harvest.sh both --unpack",
"normalize": "node scripts/normalize.mjs --source host",
"split": "node scripts/split.mjs",
"insights": "node scripts/insights.mjs",
"seed-manifest": "node scripts/seed-manifest.mjs",
"tag-manifest": "node scripts/tag-manifest.mjs",
"install-artifacts": "node scripts/install-artifacts.mjs",
"suggest-artifacts": "node scripts/suggest-artifacts.mjs"
},
"optionalDependencies": {
"@cursor/sdk": "^0.1.0"
}
}