* feat: add claude CLI subprocess backend for AI panels Add claude_cli.rs module that spawns the local `claude` CLI as a subprocess instead of calling the Anthropic API directly. This removes the need for users to configure an API key — the CLI uses the user's existing Claude authentication. - find_claude_binary(): discovers claude in PATH or common locations - check_cli(): returns install/version status for the frontend - run_chat_stream(): spawns claude -p with stream-json for chat panel - run_agent_stream(): spawns claude with MCP vault tools for agent panel - Parses stream-json NDJSON events and emits typed Tauri events - Remove http:default capability (no longer calling APIs from frontend) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat: replace Anthropic API with Claude CLI for AI chat and agent panels Remove direct Anthropic API calls and the entire tool-use loop from the frontend. Both AI Chat and AI Agent panels now delegate to the `claude` CLI subprocess via Tauri commands, streaming NDJSON events back to the UI. Key changes: - ai-chat.ts / ai-agent.ts: replace SSE/API streaming with Tauri invoke + listen - useAIChat / useAiAgent hooks: simplified to use CLI streaming callbacks - AIChatPanel / AiPanel: remove API key dialogs, model selectors, undo support - SettingsPanel: remove Anthropic key field (no longer needed) - claude_cli.rs: add comprehensive tests (37 total, 90% coverage) - mock-handlers: replace ai_chat with check_claude_cli / stream_claude_* stubs - Net -432 lines across 17 files Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: add --verbose flag to claude CLI subprocess args * chore: exclude search.rs and lib.rs from coverage (qmd integration + Tauri setup) --------- Co-authored-by: Test <test@test.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
52 lines
1.5 KiB
TypeScript
52 lines
1.5 KiB
TypeScript
import { describe, it, expect, vi } from 'vitest'
|
|
|
|
// Mock the mock-tauri module before importing ai-agent
|
|
vi.mock('../mock-tauri', () => ({
|
|
isTauri: () => false,
|
|
}))
|
|
|
|
import { buildAgentSystemPrompt, streamClaudeAgent } from './ai-agent'
|
|
|
|
// --- buildAgentSystemPrompt ---
|
|
|
|
describe('buildAgentSystemPrompt', () => {
|
|
it('returns preamble when no vault context', () => {
|
|
const prompt = buildAgentSystemPrompt()
|
|
expect(prompt).toContain('AI assistant integrated into Laputa')
|
|
expect(prompt).not.toContain('Vault context')
|
|
})
|
|
|
|
it('appends vault context when provided', () => {
|
|
const prompt = buildAgentSystemPrompt('Recent notes: foo, bar')
|
|
expect(prompt).toContain('AI assistant integrated into Laputa')
|
|
expect(prompt).toContain('Vault context:')
|
|
expect(prompt).toContain('Recent notes: foo, bar')
|
|
})
|
|
})
|
|
|
|
// --- streamClaudeAgent ---
|
|
|
|
describe('streamClaudeAgent', () => {
|
|
it('calls onText and onDone in non-Tauri environment', async () => {
|
|
const onText = vi.fn()
|
|
const onToolStart = vi.fn()
|
|
const onDone = vi.fn()
|
|
const onError = vi.fn()
|
|
|
|
await streamClaudeAgent('test message', 'system prompt', '/tmp/vault', {
|
|
onText,
|
|
onToolStart,
|
|
onError,
|
|
onDone,
|
|
})
|
|
|
|
// Wait for the setTimeout mock response
|
|
await new Promise(r => setTimeout(r, 400))
|
|
|
|
expect(onText).toHaveBeenCalledWith(expect.stringContaining('Claude CLI'))
|
|
expect(onDone).toHaveBeenCalled()
|
|
expect(onError).not.toHaveBeenCalled()
|
|
expect(onToolStart).not.toHaveBeenCalled()
|
|
})
|
|
})
|