Agent for Work โ Your Local Agent Workspace
Powered by Claude Agent SDK & Cursor CLI
AgentStudio is a local Agent workspace running on your computer โ a true personal AI assistant. Your data stays completely private, secure, and under your control. It supports scheduled task automation and multi-agent collaboration.
AgentStudio transforms the CLI experience into a friendly Web interface, making AI agents accessible to everyone, not just developers.
AgentStudio supports two AI engines:
| Engine | Description | Best For |
|---|---|---|
| Claude Agent SDK | Full-featured engine with complete read/write capabilities | Power users who need full control |
| Cursor CLI | Read-only integration with Cursor's configuration | Users who manage configs via Cursor IDE |
Install and run with npm:
# Install globally
npm install -g agentstudio
# Start the server
agentstudio startThen open http://localhost:4936 in your browser.
More commands:
agentstudio start --port 8080 # Custom port
agentstudio install # Install as system service (auto-start)
agentstudio upgrade # Upgrade to latest version
agentstudio doctor # Check system status
agentstudio --help # Show all commands- Runs on your computer โ A true local workspace
- Data stays private โ Nothing uploaded to the cloud
- Full control โ Files, code, and conversations remain in your hands
- Say goodbye to CLI โ Embrace a friendly Web interface
- Visual tool execution โ See what your Agent is doing in real-time
- Built-in file browser โ View project files alongside conversations
Manage your AI configurations through a friendly interface:
| Feature | Claude SDK | Cursor CLI |
|---|---|---|
| MCP | Full CRUD | Read-only (view ~/.cursor/mcp.json) |
| Rules | Full CRUD | Read-only (view ~/.cursor/rules/) |
| Commands | Full CRUD | Read-only (view ~/.cursor/commands/) |
| Skills | Full CRUD | Read-only (view ~/.cursor/skills/) |
| Hooks | Full CRUD | Not available |
| Plugin Ecosystem | โ | โ |
| Project Memory | โ | โ |
| Subagents | โ | โ |
| Multi-Model | Claude, GLM, DeepSeek, Kimi K2, MiniMax, and more | Cursor models |
Let your Agent work automatically on a schedule โ true AI work automation!
Example scenarios:
- ๐ Daily progress reports โ Generate project updates every morning at 9am
- ๐ Automated code review โ Check repositories every 2 hours
- ๐ Weekly meeting notes โ Summarize and archive every Friday
- ๐ Monthly analytics โ Generate business data reports on the 1st
Build a collaborative network of intelligent agents:
- Secretary Agent dispatch โ One Agent receives tasks and delegates to project-specific Agents
- Local โ Remote collaboration โ Agents on your computer communicate with Agents on remote dev machines
- Mobile access โ Interact with local Agents from mobile messaging apps (beta)
Create your own specialized Agents without writing code:
- PPT creation Agent
- Secretary Agent
- Document writing Agent
- Code review Agent
- And any other workflow you need!
| Feature | AgentStudio | Claude Code |
|---|---|---|
| Interface | Web UI | Command Line (CLI) |
| Target Users | Everyone | Primarily developers |
| Tool Display | Visual rendering | Plain text |
| File Browser | โ | โ |
| Agent Customization | โ | โ |
| Scheduled Tasks | โ | โ |
| A2A Protocol | โ | โ |
| Mobile Access | Beta | โ |
Same Claude Agent SDK, friendlier experience.
docker build -t agentstudio:latest .
docker-compose up -dSee DOCKER.md for details.
macOS/Linux:
curl -fsSL https://raw.githubusercontent.com/okguitar/agentstudio/main/scripts/install-macos.sh | bashWindows (PowerShell):
irm https://raw.githubusercontent.com/okguitar/agentstudio/main/scripts/windows-install.ps1 | iexgit clone https://github.com/okguitar/agentstudio.git
cd agentstudio
pnpm install
cp backend/.env.example backend/.env
# Edit backend/.env with your API keys
pnpm run devAgentStudio supports two AI engines. Choose the one that fits your workflow.
Set the ENGINE environment variable before starting the server:
# Use Claude Agent SDK (default, full features)
ENGINE=claude-sdk pnpm run dev
# Use Cursor CLI (read-only config management)
ENGINE=cursor-cli pnpm run devOr set it in your backend/.env file:
# Choose: claude-sdk or cursor-cli
ENGINE=claude-sdk| Feature | Claude SDK | Cursor CLI |
|---|---|---|
| MCP Management | Create, edit, delete | View only |
| Rules Management | Create, edit, delete | View only |
| Commands Management | Create, edit, delete | View only |
| Skills Management | Create, edit, delete | View only |
| Hooks | โ Supported | โ Not available |
| Provider Selection | โ Multiple providers | โ Cursor only |
| Config Location | ~/.claude/ |
~/.cursor/ |
| File Extension | .md |
.mdc |
Claude Agent SDK is recommended when:
- You want full control over configurations
- You need to create/edit MCP servers, rules, commands, skills
- You want to use Hooks for automation
- You prefer managing everything through AgentStudio
Cursor CLI is recommended when:
- You primarily use Cursor IDE for configuration
- You want AgentStudio as a read-only dashboard
- You need to view your Cursor configurations in a web interface
- You want to avoid accidental config modifications
-
Config Isolation: Each engine uses its own config directory
- Claude SDK:
~/.claude/ - Cursor CLI:
~/.cursor/
- Claude SDK:
-
Read-Only Mode: In Cursor CLI mode, write operations are blocked with a "Read-only mode" indicator
-
Feature Visibility: Some features (like Hooks) are automatically hidden in Cursor CLI mode
-
Switching Engines: Restart the server when changing engines
pnpm run dev # Start development servers
pnpm run test # Run tests
pnpm run type-check # Type checking
pnpm run lint # Linting
pnpm run build # Production buildFrontend: React 19, TypeScript, Vite, TailwindCSS, Zustand, React Query
Backend: Node.js, Express, TypeScript, Claude Agent SDK, Cursor CLI, JWT
Supported Engines:
- Claude Agent SDK โ Full-featured AI agent capabilities
- Cursor CLI โ Integration with Cursor IDE configurations
Contributions are welcome! Please feel free to submit a Pull Request.
GPL v3 License โ see LICENSE for details.
- ๐ Report Issues
- ๐ฌ Discussions
- ๐ง Email: okguitar@gmail.com
Made with โค๏ธ by the AgentStudio Team

