* feat: move to bun plugin to intercept WASM
* feat: new build/server.ts with refactored
* fix: clean-up source map dirs before build
* fix: remove elide for build
* fix: clean-up source map ordering
* fix: add debug logging for start:dev
* feat: use eventsource-parser for schedule tasks
* fix: remove reasoning traces, minor UI updates for schedule task
* fix: bug with textdelta
* fix: controller-ext is built separately
* fix: remove un-used scripts in agent/
* fix: rename to assistant
* fix: add build scripts
* feat: new start:dev to start both
* fix: update gitignore
* feat: --new-ports support for dev:start
* feat: update start-all to support port and new data dir
* fix: add help insturctions for start:dev
* chore: refactoring
* fix: return all response parts from tool execution
Previously, handleToolExecution only returned responseParts[0], causing
data loss when tools returned multiple parts. This fix:
- Changes ToolExecutionResult.part to ToolExecutionResult.parts (array)
- Returns all responseParts instead of just the first one
- Spreads all parts into toolResponseParts in processToolRequests
* chore: fix monorepo setup
1) use single .env.development file at the root
2) update package.json to contain commands to start server and agent
3) rename "Assistant" package name to "agent"
4) rename HTTP_MCP_PORT to SERVER_PORT
* chore: update README
* chore: update .env.example
* fix: clean-up old docs
* feat: refactored test utils
* fix: clean-up dev scripts and move to scripts/dev
* fix: clean-up script
* fix: refactor tests into properly controller tests and cdp tests
* feat: refactor packages into single project
* feat: created apps directory
* chore: removed duplicate packages
* fix: delete package-lock.json
since project uses bun
Switch from x64-modern (requires AVX2) to x64-baseline (SSE4.2 only)
for Linux and Windows builds. This fixes the "Illegal instruction"
crash on pre-Haswell Intel CPUs (Ivy Bridge, Sandy Bridge) and
pre-Excavator AMD CPUs that lack AVX2 support.
Fixes: MCP server crashes with SIGILL on Ivy Bridge CPUs
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Claude <noreply@anthropic.com>
* monorepo: core
* monorepo: tools and server
* mono: repo refactor
* moved tests, removed old files
* update server tests
* agent server location and TBD
* fix formatting
* add new workflows
* rename core to common, mcp-server, to mcp, agent-server to agent
* remove nodejs tests
* test: add simple GitHub Actions workflow for running tests on PR
* test workflow
* feat: add test coverage reporting to GitHub Actions workflow
- Run tests with --coverage flag to generate coverage reports
- Display coverage summary in PR comments
- Upload coverage artifacts for analysis
- Show coverage in GitHub Actions summary
* simple test workflow