Commit Graph

355 Commits

Author SHA1 Message Date
Mohamed Boudra
dfda6daeed refactor(cli): rename ps to ls and add top-level agent commands 2026-01-29 10:41:19 +07:00
Mohamed Boudra
6fd4214466 test(cli): add zx TDD infrastructure and phase 1 tests
- Install zx as devDependency for E2E testing
- Create tests/ directory with setup utilities
- Add setup.ts with test context helpers:
  - Random port generation (never 6767)
  - Temp directory creation for PASEO_HOME and workDir
  - Daemon startup/waitForDaemon helper (WebSocket only)
  - Cleanup function
  - paseo() helper to run CLI commands against test daemon
- Add Phase 1 foundation tests (01-foundation.test.mts):
  - Test paseo --version outputs version
  - Test paseo --help shows commands
- Add test runner (run-all.mts) that discovers and runs all tests
- Add test:e2e script to package.json
2026-01-28 22:47:08 +07:00
Mohamed Boudra
2c138312b2 Update files 2026-01-28 21:57:31 +07:00
Mohamed Boudra
f7935f9cc1 Update files 2026-01-28 15:25:12 +07:00
Mohamed Boudra
96b211a2cf Update files 2026-01-28 13:25:48 +07:00
Mohamed Boudra
a18739319f Update files 2026-01-27 13:38:56 +07:00
Mohamed Boudra
766585d1cb Update files 2026-01-27 13:06:01 +07:00
Mohamed Boudra
637967fa14 Update files 2026-01-26 20:38:39 +07:00
Mohamed Boudra
c233c99cd3 Update files 2026-01-26 18:03:51 +07:00
Mohamed Boudra
fe5ab731e0 Update files 2026-01-26 14:09:07 +07:00
Mohamed Boudra
ccd175b4b7 Capture dictation/TTS debug audio and show dictation errors 2026-01-25 09:35:07 +07:00
Mohamed Boudra
9d0dd8b19e Update files 2026-01-25 08:42:00 +07:00
Mohamed Boudra
084177da16 Persist agent deletion and support subdir worktree cleanup 2026-01-24 23:34:09 +07:00
Mohamed Boudra
504fb83fa9 Update files 2026-01-24 22:21:28 +07:00
Mohamed Boudra
1f91de5cbc Update files 2026-01-24 22:12:07 +07:00
Mohamed Boudra
0d9d95c340 Merge branch 'cranky-moth' 2026-01-24 21:26:55 +07:00
Mohamed Boudra
22d48ea312 Update files 2026-01-24 21:26:43 +07:00
Mohamed Boudra
8fe30eae75 feat(checkout): add merge-from-base and push operations for worktree branches 2026-01-24 21:24:48 +07:00
Mohamed Boudra
6b28167fdd Merge audit/streaming-asr-tail: streaming ASR partials and env host reset 2026-01-24 19:01:23 +07:00
Mohamed Boudra
b498c9ea81 Add streaming ASR partial transcripts and reset hosts to env default
- Stream partial transcripts to the client during dictation for live feedback
- Use OpenAI semantic VAD instead of manual commit intervals for better word boundaries
- Append silence tail on finish to flush final utterance through VAD
- Skip committing silence-only audio tails
- Reset hosts to env-defined daemon when env var is present, overriding stored state
2026-01-24 19:01:14 +07:00
Mohamed Boudra
21cff48d3f refactor(server): switch agent registry to AgentStorage 2026-01-24 17:46:11 +07:00
Mohamed Boudra
9b82c02fd2 Add welcome onboarding and remove default localhost host 2026-01-24 17:01:12 +07:00
Mohamed Boudra
a0cab29e1a Merge branch 'lockdown-dictation-e2e' 2026-01-23 18:55:21 +07:00
Mohamed Boudra
0ff0293a97 Stream dictation via OpenAI Realtime and simplify retry UI 2026-01-23 18:55:14 +07:00
Mohamed Boudra
907b9f9fbd Dedup checkout status refetch and in-flight requests 2026-01-23 15:46:44 +07:00
Mohamed Boudra
eab8713c24 Persist base branch for Paseo worktrees and gate merge action 2026-01-23 15:27:42 +07:00
Mohamed Boudra
6f845093b4 Merge branch 'fix/initial-prompt-instructions' 2026-01-23 14:47:39 +07:00
Mohamed Boudra
250a320ff2 Fix E2E tests: gate on credentials and parse agentId robustly 2026-01-23 14:47:37 +07:00
Mohamed Boudra
938d57c8ae Update files 2026-01-23 14:18:06 +07:00
Mohamed Boudra
3459faabc4 Stabilize tests after merge 2026-01-23 14:01:29 +07:00
Mohamed Boudra
2b27b71467 Merge main 2026-01-23 13:53:52 +07:00
Mohamed Boudra
3ff6d6c712 Inject Paseo prompt instructions via first user message 2026-01-23 13:51:30 +07:00
Mohamed Boudra
912a694221 Update files 2026-01-23 13:41:33 +07:00
Mohamed Boudra
cb39f4c5c2 Merge branch 'review/tool-call-display-parsing' 2026-01-23 11:28:50 +07:00
Mohamed Boudra
69f32da90d Run worktree setup async and stream status 2026-01-23 11:28:48 +07:00
Mohamed Boudra
27c493922c Replace checkout diff parsing with async highlighted diff 2026-01-23 11:23:56 +07:00
Mohamed Boudra
f8ba0ff239 Fix agent model fallback and title/branch tool parsing 2026-01-23 10:14:46 +07:00
Mohamed Boudra
53155ebcc9 feat(app): checkout diff pane styling and e2e test support
- Style diff file cards edge-to-edge with single divider between files
- Remove monospace font from filenames for better readability
- Add checkout-ship e2e test for app
- Export Page type from e2e fixtures
- Add checkout query hooks for diff, status, and PR status
2026-01-23 08:37:15 +07:00
Mohamed Boudra
746d413082 refactor(server): improve self-identification instructions
- Made the timing clearer: "Immediately after your first message where
  you understand the task and decide to do multi-step work"
- Added explicit "do not repeat" constraint to prevent over-calling
- Made set_branch instruction dynamic based on whether cwd looks like
  a Paseo worktree (contains .paseo/worktrees)
- When in a worktree, explicitly tell the agent to call set_branch
- When not in a worktree, keep the cautious "only if certain" language
2026-01-22 21:53:31 +07:00
Mohamed Boudra
d41267e8a5 feat(server): checkout RPCs + ship loop e2es 2026-01-22 20:37:12 +07:00
Mohamed Boudra
ef9c538842 feat(server): self-identification tools 2026-01-22 14:01:57 +07:00
Mohamed Boudra
cc2bdbf01f Add structured agent helper and checkout git fixes 2026-01-22 12:23:01 +07:00
Mohamed Boudra
88490a9af1 Add .paseo worktree manager and e2e coverage 2026-01-22 10:43:18 +07:00
Mohamed Boudra
7157a43a74 feat(pairing): QR offer + app scanner 2026-01-22 09:24:08 +07:00
Mohamed Boudra
ae9a98223f refactor: rename conversation to voice conversation throughout stack 2026-01-21 11:43:16 +07:00
Mohamed Boudra
fd5e8206a7 feat: relay transport (plaintext) 2026-01-21 09:27:16 +07:00
Mohamed Boudra
4a90312480 feat: emit connection offer 2026-01-21 08:23:42 +07:00
Mohamed Boudra
cba3ad2721 chore: checkpoint 2026-01-21 08:16:11 +07:00
Mohamed Boudra
d9c487dd54 feat: add Tauri desktop app support and terminal management 2026-01-20 10:09:35 +07:00
Mohamed Boudra
12f617dd10 fix(server): remove Claude auth filesystem preflight checks
Remove validateClaudeAuth() function and all filesystem probing for
.claude directory and .credentials.json files from test utilities.

Changes:
- Deleted validateClaudeAuth() preflight check from claude-auth.ts
- Removed validateClaudeAuth() calls from claude-agent-commands.e2e.test.ts and agent-mcp.e2e.test.ts
- Updated seedClaudeAuth() to only use environment variables (no filesystem probing)
- Tests now rely on default Claude authentication without explicit validation

Tests run with default local Claude settings; no config directory
overrides or credential file inspection.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-17 16:43:41 +07:00