| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-05-08 | 5.0 kB | |
| v1.9.3 -- Smarter Agents, Safer Company Configuration, and Better Workspace Tools source code.tar.gz | 2026-05-08 | 2.4 MB | |
| v1.9.3 -- Smarter Agents, Safer Company Configuration, and Better Workspace Tools source code.zip | 2026-05-08 | 2.7 MB | |
| Totals: 3 Items | 5.1 MB | 0 | |
v1.9.3 — Smarter Agents, Safer Company Configuration, and Better Workspace Tools
What's New
Smarter Agent Memory and Follow-up Tracking
Agents now manage their active work through a structured Focus system instead of relying on loose workspace notes. This makes reminders, follow-ups, recurring triggers, and ongoing tasks easier to understand and more reliable across sessions.
The Aware page has also been improved to show active work, system focus items, completed items, and related triggers in a clearer way.
Safer Company and Agent Permissions
Agent visibility and access control are now more explicit. Companies can better distinguish between company-wide agents, private agents, and custom-access agents.
This improves privacy for personal agents while still allowing company admins to manage shared agents appropriately.
Company Tool Settings Are Now Properly Isolated
Company-level tool configuration is now scoped to the current company. A newly created company will no longer appear to inherit API keys or configured states from another company.
This affects tools such as AgentBay, Smithery, Tavily, Vertex image generation, and other company-configured tools.
Better Talent Market Creation Flow
Creating a new digital employee from the dashboard now opens the Talent Market experience directly instead of sending users to the older creation page.
The new creation flow also supports clearer setup paths for platform-hosted agents and connected external agents.
Custom Image Generation API Support
A new image generation tool is available for custom API gateways. Companies can configure an API key, base URL, and model, then use it to generate images through providers such as TokenRouter, OpenRouter, or other OpenAI-compatible gateways.
Advanced request settings are available but hidden by default, so most users only need to fill in the core connection information.
Better AgentBay Code Sandbox File Operations
Agents now have dedicated tools for reading, writing, and editing files inside the AgentBay Code Sandbox.
This makes coding tasks in AgentBay more natural and reduces confusion between files in the Clawith workspace and files inside the AgentBay sandbox.
Improved Workspace File Experience
Workspace files are easier to work with:
- Code files such as Python, TypeScript, JavaScript, CSS, YAML, shell scripts, Dockerfiles, and config files can now be previewed directly.
- Workspace files and folders can be moved or renamed more reliably.
- File preview, download, upload, and folder creation actions have been polished.
- Markdown image previews now support larger preview and download interactions.
More Reliable MCP Discovery and Installation
MCP discovery and installation now use company-level Smithery and ModelScope settings more reliably. If a company key is already configured, agents should no longer unnecessarily ask the user to provide another key.
The MCP installer guidance has also been cleaned up and moved to the newer skill location.
Relationship and Plaza Visibility Improvements
Private and restricted agents are now handled more carefully in Plaza and relationship views. Company-wide social surfaces only show appropriate company-visible agents, helping prevent private agents from appearing where they should not.
General UX and Reliability Polish
This release includes improvements across onboarding, login/setup flows, model selection, tool configuration dialogs, workspace interactions, and document conversion reliability.
Upgrade Guide
Database migration required. Run migrations before restarting production services.
Docker Deployment
:::bash
git pull origin main
docker exec clawith-backend-1 alembic upgrade heads
docker compose down
docker compose up -d --build
Source Deployment
:::bash
git pull origin main
cd backend
alembic upgrade heads
cd ..
cd frontend
npm install
npm run build
cd ..
./restart.sh
Kubernetes / Helm
:::bash
helm upgrade clawith helm/clawith/ -f values.yaml
Then run the database migration job or equivalent backend command:
:::bash
alembic upgrade heads
Upgrade Notes
- Review company tool settings after upgrade, especially API keys for AgentBay, Smithery, Tavily, image generation, and MCP discovery tools.
- Company-level built-in tool configuration is now company-scoped. This fixes cross-company configuration leakage, but admins may need to re-save settings for each company if they were relying on old shared values.
- Agent Focus is now stored in structured system storage. Existing
focus.mdcontent is treated as legacy data and can be migrated into the new Focus system when accessed. - Private and custom-access agents now have stricter visibility behavior in Plaza and relationship features.
- If you use custom image generation gateways, configure the new “Generate Image (Custom API)” tool at the company or agent level before use.