Skip to content
Merged
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
1 change: 1 addition & 0 deletions .github/actions/setup-mux/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,4 @@ runs:
if: steps.cache-node-modules.outputs.cache-hit != 'true'
shell: bash
run: bun install --frozen-lockfile

2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch:
inputs:
tag:
description: "Tag to release (e.g., v1.2.3). If provided, will checkout and release this tag regardless of current branch."
description: 'Tag to release (e.g., v1.2.3). If provided, will checkout and release this tag regardless of current branch.'
required: false
type: string

Expand Down
37 changes: 19 additions & 18 deletions .github/workflows/terminal-bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,34 +4,34 @@ on:
workflow_call:
inputs:
model_name:
description: "Model to use (e.g., anthropic:claude-sonnet-4-5)"
description: 'Model to use (e.g., anthropic:claude-sonnet-4-5)'
required: false
type: string
thinking_level:
description: "Thinking level (off, low, medium, high)"
description: 'Thinking level (off, low, medium, high)'
required: false
type: string
dataset:
description: "Terminal-Bench dataset to use"
description: 'Terminal-Bench dataset to use'
required: false
type: string
default: "terminal-bench-core==0.1.1"
default: 'terminal-bench-core==0.1.1'
concurrency:
description: "Number of concurrent tasks (--n-concurrent)"
description: 'Number of concurrent tasks (--n-concurrent)'
required: false
type: string
default: "4"
default: '4'
livestream:
description: "Enable livestream mode (verbose output to console)"
description: 'Enable livestream mode (verbose output to console)'
required: false
type: boolean
default: false
sample_size:
description: "Number of random tasks to run (empty = all tasks)"
description: 'Number of random tasks to run (empty = all tasks)'
required: false
type: string
extra_args:
description: "Additional arguments to pass to terminal-bench"
description: 'Additional arguments to pass to terminal-bench'
required: false
type: string
secrets:
Expand All @@ -42,34 +42,34 @@ on:
workflow_dispatch:
inputs:
dataset:
description: "Terminal-Bench dataset to use"
description: 'Terminal-Bench dataset to use'
required: false
default: "terminal-bench-core==0.1.1"
default: 'terminal-bench-core==0.1.1'
type: string
concurrency:
description: "Number of concurrent tasks (--n-concurrent)"
description: 'Number of concurrent tasks (--n-concurrent)'
required: false
default: "4"
default: '4'
type: string
livestream:
description: "Enable livestream mode (verbose output to console)"
description: 'Enable livestream mode (verbose output to console)'
required: false
default: false
type: boolean
sample_size:
description: "Number of random tasks to run (empty = all tasks)"
description: 'Number of random tasks to run (empty = all tasks)'
required: false
type: string
model_name:
description: "Model to use (e.g., anthropic:claude-sonnet-4-5, openai:gpt-5.1-codex)"
description: 'Model to use (e.g., anthropic:claude-sonnet-4-5, openai:gpt-5.1-codex)'
required: false
type: string
thinking_level:
description: "Thinking level (off, low, medium, high)"
description: 'Thinking level (off, low, medium, high)'
required: false
type: string
extra_args:
description: "Additional arguments to pass to terminal-bench"
description: 'Additional arguments to pass to terminal-bench'
required: false
type: string

Expand Down Expand Up @@ -147,3 +147,4 @@ jobs:
benchmark.log
if-no-files-found: warn
retention-days: 30

217 changes: 0 additions & 217 deletions .storybook/mocks/orpc.ts

This file was deleted.

14 changes: 1 addition & 13 deletions .storybook/preview.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import React, { useMemo } from "react";
import React from "react";
import type { Preview } from "@storybook/react-vite";
import { ThemeProvider, type ThemeMode } from "../src/browser/contexts/ThemeContext";
import { ORPCProvider } from "../src/browser/orpc/react";
import { createMockORPCClient } from "./mocks/orpc";
import "../src/browser/styles/globals.css";

const preview: Preview = {
Expand All @@ -24,16 +22,6 @@ const preview: Preview = {
theme: "dark",
},
decorators: [
// Global ORPC provider - ensures useORPC works in all stories
(Story) => {
const client = useMemo(() => createMockORPCClient(), []);
return (
<ORPCProvider client={client}>
<Story />
</ORPCProvider>
);
},
// Theme provider
(Story, context) => {
// Default to dark if mode not set (e.g., Chromatic headless browser defaults to light)
const mode = (context.globals.theme as ThemeMode | undefined) ?? "dark";
Expand Down
19 changes: 0 additions & 19 deletions babel.config.js

This file was deleted.

Loading