mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 20:03:05 +00:00
- DOSBox now starts at session_start and persists in background - /dosbox command attaches UI to running instance (Ctrl+Q detaches) - Added dosbox tool with actions: send_keys, screenshot, read_text - Bundled QuickBASIC 4.5 files, mounted at C:\QB on startup - Agent can interact with DOSBox programmatically via tool Use: pi -e ./examples/extensions/pi-dosbox Then: /dosbox to view, or let agent use the dosbox tool
22 lines
396 B
JSON
22 lines
396 B
JSON
{
|
|
"name": "pi-dosbox",
|
|
"private": true,
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"scripts": {
|
|
"clean": "echo 'nothing to clean'",
|
|
"build": "echo 'nothing to build'",
|
|
"check": "echo 'nothing to check'"
|
|
},
|
|
"pi": {
|
|
"extensions": [
|
|
"./index.ts"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"emulators": "^8.3.9"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.11.30"
|
|
}
|
|
}
|