Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
42eaf77
Add AGENTS.md for waveterm-remote fork
clearlyjeremy May 12, 2026
4828633
set up local build toolchain and macOS CI workflow
clearlyjeremy May 12, 2026
5866e98
clean up upstream CI workflows
clearlyjeremy May 12, 2026
95347af
move fork notice above title in README
clearlyjeremy May 12, 2026
18c93b6
fix macOS CI workflow to download Go and Zig locally
clearlyjeremy May 12, 2026
2312729
remove telemetry, analytics, and user tracking from waveterm
clearlyjeremy May 13, 2026
f8449cf
restructure README: move fork notes higher, remove upstream-specific …
clearlyjeremy May 13, 2026
9529abc
remove AI features from README to match fork direction
clearlyjeremy May 13, 2026
0cd6489
Fix crash on tab close after SSH session exit
clearlyjeremy May 14, 2026
b2836c4
Remove trace logging added for tab-close crash diagnosis
clearlyjeremy May 14, 2026
bd355fa
Phase A review fixes: remove remaining AI references from builder and…
clearlyjeremy May 15, 2026
59123ca
fix(workspace): remove invalid nested Panel causing blank screen
clearlyjeremy May 15, 2026
4cce99c
fix(term): remove AI sparkle icon from terminal block header
clearlyjeremy May 16, 2026
234b301
docs: merge .pi/ project memory from waveterm to waveterm-remote
clearlyjeremy May 16, 2026
f180e5d
Phase C: remove AI docs, schemas, and clean generator
clearlyjeremy May 16, 2026
bd84d56
Mark builder-previewtab.tsx fix complete in todos
clearlyjeremy May 16, 2026
06284b9
fix(gap): complete Phase B — remove all remaining Go backend AI wiring
clearlyjeremy May 16, 2026
144578f
Phase D: delete all dead AI code and regenerate types
clearlyjeremy May 17, 2026
92506fd
Phase D follow-up: remove missed WaveAI references
clearlyjeremy May 17, 2026
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
54 changes: 54 additions & 0 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Build macOS
on:
workflow_dispatch:

env:
GO_VERSION: "1.26.2"
NODE_VERSION: 22
NODE_OPTIONS: --max-old-space-size=4096

jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v6

- name: Install Go
run: |
curl -sL "https://go.dev/dl/go${{ env.GO_VERSION }}.darwin-arm64.tar.gz" | tar -xzf - -C .
mv go golang-${{ env.GO_VERSION }}
echo "module golang" > golang-${{ env.GO_VERSION }}/go.mod

- name: Install Zig
run: |
curl -sL "https://ziglang.org/download/0.14.0/zig-macos-aarch64-0.14.0.tar.xz" | tar -xJf -
mv zig-macos-aarch64-0.14.0 zig-0.14.0

- uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
cache-dependency-path: package-lock.json

- name: Install Task
uses: arduino/setup-task@v2
with:
version: 3.x
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Install deps
run: npm ci --no-audit --no-fund
env:
GIT_ASKPASS: "echo"
GIT_TERMINAL_PROMPT: "0"

- name: Build
run: task package
env:
USE_SYSTEM_FPM: true

- name: Upload artifacts
uses: actions/upload-artifact@v5
with:
name: macos-build
path: make/
20 changes: 1 addition & 19 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,25 +12,7 @@
name: "CodeQL"

on:
push:
branches: ["main"]
paths:
- "**/*.go"
- "**/*.ts"
- "**/*.tsx"
pull_request:
branches: ["main"]
paths:
- "**/*.go"
- "**/*.ts"
- "**/*.tsx"
types:
- opened
- synchronize
- reopened
- ready_for_review
schedule:
- cron: "36 5 * * 5"
workflow_dispatch:

env:
NODE_VERSION: 22
Expand Down
80 changes: 0 additions & 80 deletions .github/workflows/deploy-docsite.yml

This file was deleted.

83 changes: 0 additions & 83 deletions .github/workflows/testdriver-build.yml

This file was deleted.

141 changes: 0 additions & 141 deletions .github/workflows/testdriver.yml

This file was deleted.

3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,6 @@ docsite/
.superpowers
docs/superpowers
.claude
golang-*/
zig-*/
.pi/
Loading