ClawAI Release: Workspace Automation Governance, Desktop Agent Marketplace & TypeScript 6 Platform Foundation #10
ihabkhaled
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
ClawAI Release: Workspace Automation Governance, Desktop Agent Marketplace & TypeScript 6 Platform Foundation
Release Range:
caba27e7dd8247698de1d17ae6cb7d2107139306→3e8d0455d473b26d63ad849e9a5a37dc12c61135Release Type:
Platform, Workspace Automation, Desktop Agent, Admin Operations, Security, Infrastructure, TypeScript Upgrade
Executive Summary
This release moves ClawAI from a powerful AI workspace into a more mature, governable, and enterprise-ready automation platform.
The main focus of this release is controlled automation. ClawAI now has stronger runtime gates, webhook limits, suggestion budgets, approval controls, agent recipe workflows, marketplace installation flows, local activity memory, capability visibility, organization-scoped policies, and stronger sandbox protection.
From a product point of view, this release makes ClawAI easier to trust, operate, and explain to business users.
From a technical point of view, this release adds important foundations for scalable automation, admin observability, secure agent execution, marketplace-driven workflows, and long-term TypeScript compatibility.
Major Highlights
Product & Business Features
1. Governed Workspace Automation Runtime
Business Value
ClawAI now provides stronger control over automated workspace actions.
This is a major step for enterprise readiness. AI automation cannot run without limits in real business environments. Teams need to control how often automations run, which providers are allowed, how much budget is consumed, and why actions are rejected.
This release makes automation safer, clearer, and easier to operate.
What Users Get
Feature Details
ClawAI now supports runtime gates for workspace automation, including:
Technical Details
New runtime controls include:
The approval manager now supports stronger rejection handling with clear reasons such as:
USER_DISABLEDPROVIDER_DISABLEDBUDGET_EXCEEDEDLarge JSON payloads are now mapped to HTTP
413 Payload Too Large, making failure behavior clearer and easier to debug.2. Admin Webhook Deliveries Console
Business Value
Webhook integrations are critical for automation platforms. When a webhook fails, admins need visibility and control.
This release adds a dedicated admin experience for webhook deliveries, helping operators inspect delivery state and replay failed or selected webhook events.
This reduces the need for manual backend debugging and improves supportability.
What Users Get
Feature Details
A new admin page was added:
The page supports:
Technical Details
The frontend now includes a webhook deliveries administration page.
Replay is handled through:
This creates a cleaner operational loop for failed webhook events and integration troubleshooting.
3. Agent Recipes and Recipe Run Details
Business Value
ClawAI now supports a more productized agent workflow experience.
Instead of treating agents as hidden background logic, users can now browse recipes, inspect recipe runs, and understand how each automation step behaves.
This makes ClawAI easier to explain as a workflow-based AI automation platform.
What Users Get
Feature Details
New frontend routes were added:
The recipe run detail page includes step-level status visibility, helping users understand what happened during an agent workflow.
Technical Details
The frontend now includes:
This creates the frontend foundation for reusable agent automation flows.
4. Agent Marketplace
Business Value
ClawAI now has a marketplace experience for agent recipes.
This is a major product direction. It allows ClawAI to move toward reusable, installable AI automation templates that users can browse and activate.
This improves product scalability because users do not need to create every workflow from scratch.
What Users Get
Feature Details
A new frontend route was added:
The marketplace allows users to browse available agent listings and filter them by sandbox status.
Technical Details
Marketplace installation now materializes listing DSL into an actual recipe record.
This means marketplace installation is no longer only a metadata action. It now creates a real recipe artifact in the user’s library.
Install records are also linked to the generated
recipeId, improving traceability between marketplace listings and installed recipes.5. Local Agent Activity Memory
Business Value
AI agent platforms need transparency.
This release adds a dedicated activity memory page so users can inspect local agent activity context. This helps users understand what the local agent has observed or stored.
It improves trust, debugging, and explainability.
What Users Get
Feature Details
A new frontend route was added:
This page provides visibility into local agent activity memory powered by the agent CLI local store.
Technical Details
The activity memory page is part of the new desktop/local agent experience and is integrated into the frontend route and sidebar structure.
6. Capability Invocation Visibility
Business Value
Users and admins need to understand what capabilities an agent invoked.
This release adds capability invocation visibility directly inside the approvals experience. This makes the approval flow more informative and helps users connect approval decisions with real agent actions.
What Users Get
Feature Details
The workspace approvals page now includes a capability invocations section.
This improves approval review by showing more operational context.
Technical Details
The frontend now embeds capability invocation data into the approvals experience, connecting approval workflows with capability execution visibility.
7. Organization-Scoped Capability Policies
Business Value
Different organizations need different automation rules.
This release makes capability policies organization-aware, which is important for multi-tenant and enterprise usage.
A user in one organization may be allowed to run certain capabilities, while another organization may restrict them. ClawAI now has a stronger foundation for this type of governance.
What Users Get
Feature Details
Capability policies can now be evaluated based on the user’s organization membership.
Technical Details
The agent service now resolves user organization memberships and scopes active capability policies to:
This improves the capability risk flow and avoids treating policy lookup as globally flat.
8. Stronger Sandbox and Recipe Security
Business Value
AI agents can interact with sensitive systems, local files, browser sessions, clipboard data, and external tools.
This release improves sandbox and recipe execution safety to reduce the risk of unsafe access, bypass tricks, or malicious marketplace content.
What Users Get
Feature Details
Security improvements include:
Technical Details
The sandbox static analyzer now recursively walks targets and payloads, checking raw string leaves against banned patterns.
This helps detect bypass attempts such as:
The recipe expression resolver now blocks dangerous property traversal such as:
The recipe runner also handles synchronous
DENIEDoutcomes and routes failures throughon_error.9. Inbox Reply Auto-Suggestions
Business Value
ClawAI can now support automated draft reply suggestions for inbox workflows.
This is useful for productivity, customer support, personal assistants, and workspace automation use cases.
Instead of only reacting manually, ClawAI can now detect messages that need replies and generate draft suggestions within configured limits.
What Users Get
Technical Details
The inbox reply suggestion flow is controlled by:
This allows operators to control how frequently ClawAI checks for messages needing replies and how far back it should look.
10. Operational Runbooks and UAT Documentation
Business Value
This release adds important operational documentation, making the product easier to deploy, support, and validate.
This is important for real production usage because operators need clear guidance for capability areas, UAT status, and runtime behavior.
What Users Get
Feature Details
Runbooks were added for several capability areas, including:
Technical Details
Documentation updates include:
The UAT documentation records that deferred scenarios were moved to pass and that a 7-day soak window started on
2026-05-02.11. TypeScript 6 Beta Platform Upgrade
Business Value
This release upgrades the monorepo to TypeScript 6 beta.
This is a platform foundation improvement. It keeps ClawAI aligned with the future TypeScript ecosystem and reduces future migration risk.
For a large multi-service product, this kind of upgrade helps prevent technical debt from accumulating.
What Users Get
Technical Details
The monorepo now pins:
Additional TypeScript updates include:
ignoreDeprecationsfrom5.0to6.0.typeRoots.unknown.Validation status from the final commit:
415/415passing.Technical Changelog
Frontend
Added
/admin/webhook-deliveries/agent/recipes/agent/recipe-runs/[runId]/agent/marketplace/agent/activity-memoryImproved
Workspace Service
Added
Improved
Agent Service
Added
recipeId.DENIEDhandling in recipe execution.on_errorrouting.Improved
Infrastructure
Added
.env.example.CLAUDE.md.Improved
Platform
Added / Updated
typeRoots.Validation
415/415.Environment Variables Added or Updated
Variable Purpose
WORKSPACE_SUGGESTION_FACTORY_RATE_PER_HOURControls how many workspace suggestions can be generated per hour.
WEBHOOK_CONNECTOR_REQUESTS_PER_MINUTEControls how many webhook requests are allowed per connector per minute.
AUTO_SUGGEST_INBOX_REPLY_CRONControls how frequently inbox reply auto-suggestions run.
AUTO_SUGGEST_INBOX_REPLY_LOOKBACK_HOURSControls how far back the inbox reply suggestion job should look for messages.
Database / Migration Notes
Workspace Service
A Prisma migration adds:
This allows each suggestion trigger rule to have its own hourly budget.
Deployment Requirement
Run the workspace-service migration before relying on per-rule suggestion budgets.
New Routes
Admin Routes
Agent Routes
Workspace Routes Improved
Release Impact
Impact for Business Users
This release makes ClawAI easier to understand as a real automation platform.
ClawAI is no longer only about chatting with models. It now supports governed automation, recipe-based agent workflows, marketplace-installed automations, admin replay tooling, local activity visibility, and enterprise-style policy controls.
Business Positioning
ClawAI can now be positioned as:
Impact for Product Teams
Product teams can now explain ClawAI through clearer product capabilities:
This improves product storytelling and makes ClawAI easier to sell, demo, and onboard.
Impact for Engineering Teams
Engineering teams now have stronger foundations for:
This release also improves long-term maintainability by upgrading TypeScript and tightening runtime safety.
Impact for Admins and Operators
Admins now have better tools to inspect and control automation behavior.
They can:
Impact for End Users
End users get a safer and more transparent agent experience.
They can:
Breaking Changes
No explicit breaking user-facing behavior was identified from the analyzed release range.
However, deployment teams should pay attention to:
Upgrade Notes
1. Pull Latest Changes
2. Install Dependencies
3. Apply Database Migrations
Run the workspace-service Prisma migration before deploying the workspace automation runtime changes.
Use the project-specific command if the workspace service has its own migration script.
4. Configure Runtime Environment Variables
Add the following values to the target environment:
5. Validate Frontend Routes
Confirm the following pages are accessible:
6. Run Validation
pnpm typecheck pnpm lint pnpm test pnpm buildExpected validation status from this release:
Suggested GitHub Release Description
ClawAI Release: Workspace Automation Governance, Desktop Agent Marketplace & TypeScript 6 Platform Foundation
This release introduces a major platform upgrade for ClawAI, focused on governed workspace automation, desktop agent visibility, recipe marketplace workflows, admin operations, security hardening, and TypeScript 6 readiness.
Highlights
Why It Matters
ClawAI is now safer, more observable, and more operationally ready.
Automation is no longer just executable. It is now rate-limited, policy-aware, budget-aware, auditable, and easier to administer.
This release strengthens the product foundation for enterprise-grade AI workspace automation.
Final Release Summary
This release is a major step forward for ClawAI.
It introduces the governance, observability, marketplace, recipe, policy, and platform foundations needed to support a serious AI automation product.
The most important improvement is that ClawAI now treats automation as a controlled product capability, not just a background technical feature.
With this release, ClawAI becomes:
This discussion was created from the release ClawAI Release: Workspace Automation Governance, Desktop Agent Marketplace & TypeScript 6 Platform Foundation.
All reactions