mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 12:03:53 +00:00
Demonstrates using the filesystem API to write agent hook configs inside a Docker sandbox, then verifies they fire by prompting each agent and reading back a shared log file. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
386 B
JSON
18 lines
386 B
JSON
{
|
|
"name": "@sandbox-agent/example-hooks",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "tsx src/index.ts",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@sandbox-agent/example-shared": "workspace:*",
|
|
"sandbox-agent": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "latest",
|
|
"tsx": "latest",
|
|
"typescript": "latest"
|
|
}
|
|
}
|