Files
wehub-resource-sync 8a21a212f8
Deploy Documentation / deploy (push) Has been cancelled
Canary / build-cli (push) Has been skipped
Canary / Upload Install Script (push) Has been skipped
Canary / bundle-desktop (push) Has been skipped
Canary / bundle-desktop-intel (push) Has been skipped
Canary / bundle-desktop-linux (push) Has been skipped
Canary / bundle-desktop-windows (push) Has been skipped
Canary / bundle-desktop-windows-cuda (push) Has been skipped
Canary / Release (push) Has been skipped
Cargo Deny / deny (push) Has been skipped
Unused Dependencies / machete (push) Has been skipped
Canary / Prepare Version (push) Failing after 1s
Live Provider Tests / check-fork (push) Failing after 0s
Create Minor Release PR / check-version-bump-pr (push) Has been skipped
Publish Ask AI Bot Docker Image / docker (push) Failing after 1s
Live Provider Tests / changes (push) Has been skipped
Scorecard supply-chain security / Scorecard analysis (push) Has been skipped
Publish Docker Image / docker (push) Failing after 1s
CI / changes (push) Failing after 8s
Create Minor Release PR / release (push) Has been skipped
Live Provider Tests / Smoke Tests (push) Has been cancelled
Live Provider Tests / Smoke Tests (Code Execution) (push) Has been cancelled
Live Provider Tests / Compaction Tests (push) Has been cancelled
CI / Build Rust Project on Windows (push) Has been cancelled
Live Provider Tests / Build Binary (push) Has been cancelled
CI / Lint Rust Code (push) Has been cancelled
CI / Check Generated Schemas are Up-to-Date (push) Has been cancelled
CI / Test and Lint Electron Desktop App (push) Has been cancelled
CI / Check Rust Code Format (push) Has been cancelled
CI / Build and Test Rust Project (push) Has been cancelled
CI / Check MSRV (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:04:08 +08:00

3.5 KiB

title, description
title description
Apps Extension Create, manage, and launch custom HTML apps in standalone windows

import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import { PlatformExtensionNote } from '@site/src/components/PlatformExtensionNote'; import GooseBuiltinInstaller from '@site/src/components/GooseBuiltinInstaller';

The Apps extension lets you create, manage, and launch simple custom apps through chat. This feature is ideal for:

  • Quick utilities and tools like calculators and converters
  • Data visualizations like graphs and dashboards
  • Simple games and interactive widgets

Custom apps are single-file HTML applications with JavaScript, CSS, and HTML (no external dependencies or npm packages). They're exposed as MCP App resources that run in standalone, sandboxed windows that you can launch from the Apps page or by asking goose in chat.

You can create, modify, and delete apps through chat without needing to edit files directly. Behind the scenes, the Apps extension stores each app as an HTML file in:

  • macOS/Linux: ~/.local/share/goose/apps/
  • Windows: %APPDATA%\Block\goose\data\apps\

Configuration

  1. Run the configure command:
goose configure
  1. Choose to Toggle Extensions
┌   goose-configure 
│
◇  What would you like to configure?
│  Toggle Extensions 
│
◆  Enable extensions: (use "space" to toggle and "enter" to submit)
// highlight-start    
│  ● apps
// highlight-end  
└  Extension settings updated successfully

Example Usage

Let's ask goose to create a utility app.

:::info LLM Anthropic's Claude Sonnet 4.5 was used for this example. :::

goose Prompt

Create a JSON formatter app

goose Output

:::note Desktop I'll create a JSON formatter app for you. This will be a useful tool for formatting, validating, and beautifying JSON data.

Perfect! I've created a JSON formatter app called "json-beautifier" that should have opened in a new window.

The app includes:

Input & Output Areas: Split view with input on the left and formatted output on the right
Format Button: Prettifies JSON with proper indentation
Minify Button: Compresses JSON to a single line
Validate Button: Checks JSON validity and shows errors
Copy Button: Copies the formatted JSON to clipboard
Clear Button: Resets everything
Syntax Highlighting: Color-coded keys, strings, numbers, and booleans
Indentation Options: Choose between 2 or 4 spaces
Error Display: Clear error messages in red
Character/Line Count: Shows statistics about your JSON
Dark Theme: Modern, easy-on-the-eyes design

You can paste JSON into the left panel and use the buttons to format, minify, validate, or copy it. The app should be ready to use right away! :::

Results

Here's what the JSON formatter looks like:

JSON Formatter App

The first iteration of my app looks and works great, but you can just ask goose to add features, change the styling, and more!