Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion website/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default defineConfig({
},
integrations: [
skillVersion(),
typecheckCodeBlocks(),
// typecheckCodeBlocks(), // Temporarily disabled for local dev
generateRoutes(),
mdx({
syntaxHighlight: false,
Expand Down
6 changes: 6 additions & 0 deletions website/src/content/docs/actors/appearance.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
---
title: "Icons & Names"
description: "Customize actors with display names and icons for the Rivet inspector and dashboard."
skill: false
---

# Icons & Names

Actors can be customized with a display name and icon that appear in the Rivet inspector & dashboard. This helps identify actors at a glance when managing your application.
Expand Down
6 changes: 6 additions & 0 deletions website/src/content/docs/actors/lifecycle.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
---
title: "Lifecycle"
description: "Understanding actor lifecycle hooks for initialization, state management, and cleanup."
skill: false
---

# Lifecycle

Actors follow a well-defined lifecycle with hooks at each stage. Understanding these hooks is essential for proper initialization, state management, and cleanup.
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 32 additions & 0 deletions website/src/content/posts/2026-02-05-weekly-updates/page.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
author: nicholas-kissel
published: "2026-02-05"
category: changelog
keywords: ["weekly-update", "namespace", "archive", "opencode", "sandbox-agent", "github-preview", "gigacode"]
title: "Rivet Weekly Changelog 2026-06"
description: "Namespace & project archiving, OpenCode support for Sandbox Agent, ARM builds, embedded UI, and GitHub preview CI improvements."
---

## Rivet Cloud

### Namespace & Project Archive
Projects and namespaces can now be archived directly from the dashboard. Archived resources are hidden from the default view but can be restored at any time.
## Sandbox Agent

### OpenCode Support
Sandbox Agent now supports [OpenCode](https://opencode.ai) as an adapter, expanding the range of AI coding assistants that can be orchestrated through the universal agent API.

### Gigacode Launch for Sandbox Agent SDK
Gigacode allows you to use OpenCode UI with any coding agent, built into Sandbox Agent SDK. This isn't a fork of Opencode.


### ARM Builds
Native ARM64 Docker images are now published for Sandbox Agent, enabling efficient deployment on Apple Silicon Macs, AWS Graviton, and other ARM-based infrastructure without emulation overhead.

### Embedded UI
The Sandbox Agent UI is now bundled directly into the agent binary. No separate frontend deployment required—just run the agent and access the inspector UI at the configured port.

## CI/CD

### GitHub Preview CI
Improved GitHub Actions workflow for preview deployments, enabling faster iteration on pull requests with automatic preview environments.
Loading