mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-16 12:03:27 +00:00
refactor: rename sandbox-daemon to sandbox-agent
This commit is contained in:
parent
f92ecd9b9a
commit
a49ea094f3
41 changed files with 808 additions and 134 deletions
|
|
@ -3,7 +3,7 @@
|
|||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Sandbox Daemon Console</title>
|
||||
<title>Sandbox Agent Console</title>
|
||||
<style>
|
||||
:root {
|
||||
color-scheme: dark;
|
||||
|
|
|
|||
|
|
@ -1,15 +1,16 @@
|
|||
{
|
||||
"name": "@sandbox-daemon/web",
|
||||
"name": "@sandbox-agent/web",
|
||||
"private": true,
|
||||
"version": "0.0.0",
|
||||
"license": "Apache-2.0",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "vite build",
|
||||
"build": "pnpm --filter @sandbox-agent/typescript-sdk build && vite build",
|
||||
"preview": "vite preview"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@sandbox-daemon/typescript-sdk": "workspace:*",
|
||||
"@sandbox-agent/typescript-sdk": "workspace:*",
|
||||
"@types/react": "^18.3.3",
|
||||
"@types/react-dom": "^18.3.0",
|
||||
"@vitejs/plugin-react": "^4.3.1",
|
||||
|
|
|
|||
|
|
@ -582,7 +582,7 @@ export default function App() {
|
|||
<header className="app-header">
|
||||
<div className="brand">
|
||||
<span className="brand-mark" />
|
||||
Sandbox Daemon Console
|
||||
Sandbox Agent Console
|
||||
</div>
|
||||
<div className="inline-row">
|
||||
<span className={`status-pill ${connected ? "success" : "warning"}`}>
|
||||
|
|
@ -602,11 +602,11 @@ export default function App() {
|
|||
<section className="connect-hero reveal">
|
||||
<div className="hero-title">Bring the agent fleet online.</div>
|
||||
<div className="hero-subtitle">
|
||||
Point this console at a running sandbox-daemon, then manage sessions, messages, and approvals in
|
||||
Point this console at a running sandbox-agent, then manage sessions, messages, and approvals in
|
||||
one place.
|
||||
</div>
|
||||
<div className="callout mono">
|
||||
sandbox-daemon --host 0.0.0.0 --port 8787 --token <token> --cors-allowed-origin
|
||||
sandbox-agent --host 0.0.0.0 --port 8787 --token <token> --cors-allowed-origin
|
||||
http://localhost:5173 --cors-allowed-methods GET,POST --cors-allowed-headers Authorization,x-sandbox-token
|
||||
</div>
|
||||
<div className="tag-list">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue