Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
ae47730
feat: mirror control-plane product surfaces in status bar
smithclay Jun 8, 2026
6e60a3d
docs: scope CLI PowerSync removal
smithclay Jun 8, 2026
41c0704
chore: refresh GraphQL schema mirror; record CLI API migration findings
smithclay Jun 8, 2026
7e0ba35
wip: reconcile GraphQL operations with refreshed schema
smithclay Jun 8, 2026
a0641ca
refactor: migrate GraphQL operations to refreshed control-plane schema
smithclay Jun 12, 2026
c5c7dda
feat: add GraphQL reads for issues, checks, and edge instances
smithclay Jun 12, 2026
39e1656
refactor: make chat ephemeral, drop message persistence
smithclay Jun 12, 2026
0d0f6b5
feat: re-point status surfaces to control-plane GraphQL reads
smithclay Jun 12, 2026
6b7b536
feat: convert service enable/disable write to a GraphQL mutation
smithclay Jun 12, 2026
a41713e
feat: replace SQL chat tools with GraphQL read tools
smithclay Jun 12, 2026
66f24d6
refactor: delete PowerSync engine and local SQLite substrate
smithclay Jun 12, 2026
fd3ae32
refactor: remove the workspace concept, account is the working context
smithclay Jun 12, 2026
2e5a748
fix: resolve the user during preflight so onboarding completes on resume
smithclay Jun 12, 2026
00e2bdd
feat: add CLI commands to view account surfaces directly
smithclay Jun 12, 2026
74844ea
feat: replace chat with a minimal issue explorer; remove chat entirely
smithclay Jun 12, 2026
c55f142
feat: add -o json output to the surface commands
smithclay Jun 12, 2026
ab65ad9
ci: fix checks after PowerSync/SQLite removal
smithclay Jun 12, 2026
f98a997
ci: fix Workflow Lint and Security scans (pre-existing infra)
smithclay Jun 12, 2026
5b13008
docs: rewrite README for the current CLI, organized by Diátaxis
smithclay Jun 12, 2026
88c434c
docs: use usetero.com for documentation and contact links
smithclay Jun 12, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
30 changes: 0 additions & 30 deletions .github/workflows/_go-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,6 @@ on:
required: false
default: ubuntu-latest
type: string
run-powersync-replay:
description: Run PowerSync replay correctness check
required: false
default: true
type: boolean

jobs:
lint:
Expand Down Expand Up @@ -83,37 +78,13 @@ jobs:
# Regenerate API client from committed schema snapshot.
(cd internal/boundary/graphql/gen && go run github.com/Khan/genqlient)

# Regenerate SQLite reflection/sqlc artifacts from embedded schema snapshot.
go generate ./internal/sqlite

if [ -n "$(git status --porcelain)" ]; then
echo "Generated artifacts are out of date. Run generation locally and commit results."
git status --short
git diff
exit 1
fi

powersync-replay:
runs-on: ${{ inputs.runner }}
timeout-minutes: 20
permissions:
contents: read
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6

- name: Setup Hermit
uses: cashapp/activate-hermit@e49f5cb4dd64ff0b0b659d1d8df499595451155a # v1
with:
cache: "true"

- name: Run PowerSync replay correctness test
if: ${{ inputs.run-powersync-replay }}
run: task test:correctness:powersync-replay

- name: Skip PowerSync replay correctness test
if: ${{ !inputs.run-powersync-replay }}
run: echo "PowerSync replay correctness test disabled for this workflow call"

tagged-compile:
runs-on: ${{ inputs.runner }}
timeout-minutes: 15
Expand All @@ -137,7 +108,6 @@ jobs:
- unit
- integration
- gen-check
- powersync-replay
- tagged-compile
runs-on: ubuntu-latest
timeout-minutes: 1
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ concurrency:
jobs:
checks:
uses: ./.github/workflows/_go-checks.yaml
with:
run-powersync-replay: true
secrets: inherit

integration-live:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ jobs:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6

- name: Run actionlint
uses: reviewdog/action-actionlint@f45e6423f07e6ea6fce879bbdb0d74407c1fbf55 # v1
uses: reviewdog/action-actionlint@e0207a28405ecad11953ba625a95d92f7889572a # v1
with:
fail_level: any
Loading
Loading