Virgil
7ab16075c4
feat(ide): add DuckDB brain recall cache
...
Test / test (push) Successful in 4m43s
Security Scan / security (push) Failing after 13m58s
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-31 19:11:01 +00:00
Claude
16dcb1643d
chore: update dependencies to dappco.re tagged versions
...
Security Scan / security (push) Successful in 10s
Test / test (push) Failing after 1m56s
Security Scan / security (pull_request) Successful in 13s
Test / test (pull_request) Failing after 2m5s
Migrate scm and log imports to dappco.re vanity paths:
- forge.lthn.ai/core/go-scm → dappco.re/go/core/scm v0.4.0
- forge.lthn.ai/core/go-log → dappco.re/go/core/log v0.1.0
- Pin dappco.re/go/core/io v0.2.0 (transitive dep)
api, core/go, go-ws, go-process kept as forge.lthn.ai — gui/mcp
are not yet migrated and require forge concrete types.
Also fix bare type assertion in findFreePort (comma-ok pattern).
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-22 01:43:01 +00:00
Snider
5efd2c69d4
chore: sync dependencies for v0.1.2
...
Security Scan / security (push) Successful in 13s
Test / test (push) Failing after 2m5s
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-16 22:19:16 +00:00
Snider
14a41d18a1
chore: sync workspace dependencies
...
Security Scan / security (push) Successful in 8s
Test / test (push) Failing after 1m51s
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-15 15:45:03 +00:00
Snider
4c4e0eda06
chore: sync go.mod dependencies
...
Security Scan / security (push) Waiting to run
Test / test (push) Waiting to run
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-15 15:39:57 +00:00
Snider
eaeddfc226
chore: bump forge deps for v0.1.0 release
...
Security Scan / security (push) Successful in 14s
Test / test (push) Failing after 1m29s
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-15 15:18:03 +00:00
Snider
a424c2d589
feat: wire brain + agentic subsystems, update wails build artifacts
...
Security Scan / security (push) Successful in 13s
Test / test (push) Failing after 1m30s
Add brain.NewDirect() and agentic.NewPrep() to MCP service.
Update go.mod to core/mcp v0.2.0. Regenerated wails bindings.
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-15 15:11:09 +00:00
Snider
1ef9ac8c8d
fix: align dependency versions for forge resolution
...
Security Scan / security (push) Successful in 12s
Test / test (push) Failing after 1m22s
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-14 14:48:07 +00:00
Snider
f578fd9c6d
fix: update stale import paths and dependency versions from extraction
...
Security Scan / security (push) Successful in 12s
Test / test (push) Failing after 1m52s
Remove local replace directives (workspace handles resolution) and
regenerate go.sum via workspace-aware go mod tidy.
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-14 13:39:05 +00:00
Snider
bfd5c59cac
feat: update Wails to alpha 74, add iOS/Android/Docker build support
...
Security Scan / security (push) Successful in 8s
Test / test (push) Failing after 1m41s
- Updated wails3 CLI to v3.0.0-alpha.74
- Added build/ios/, build/android/, build/docker/ from new template
- Updated all platform Taskfiles (darwin, linux, windows)
- Fixed Angular versions to ~20.3.16
- Root Taskfile with platform-aware build/package/run
- Binary compiles and runs — system tray appears on macOS
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-14 13:10:55 +00:00
Snider
2d55600bb2
feat(runtime): add RuntimeManager for provider loading
...
Security Scan / security (push) Successful in 9s
Test / test (push) Failing after 54s
RuntimeManager discovers providers in ~/.core/providers/, starts their
binaries via os/exec, waits for health checks, and registers ProxyProviders
in the API engine. Wired into all three IDE modes (MCP stdio, headless,
GUI) with proper startup/shutdown lifecycle. Includes implementation plan.
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-14 12:22:46 +00:00
Snider
7d1d5ce2df
refactor: update import path from go-config to core/config
...
Security Scan / security (push) Successful in 8s
Test / test (push) Failing after 53s
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-14 10:28:39 +00:00
Snider
4375919ca3
feat: wire service provider framework into IDE
...
Security Scan / security (push) Successful in 11s
Test / test (push) Failing after 53s
Adds provider registry and API engine to all three modes (MCP-only,
headless, GUI). Registers process and brain providers, starts the API
server on :9880 (configurable via CORE_API_ADDR), and runs the WS hub
for real-time event streaming. go-api and go-process promoted to direct
dependencies.
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-14 09:47:59 +00:00
Snider
e2281f8c88
feat: modernise IDE with ecosystem packages
...
Security Scan / security (push) Successful in 8s
Test / test (push) Failing after 58s
Replace 7 hand-rolled service files (mcp_bridge, webview_svc, brain_mcp,
claude_bridge, headless_mcp, headless, greetservice) with ecosystem
packages from core/gui, core/mcp, and core/go-ws.
Three operating modes: GUI (Wails systray), MCP (--mcp stdio for Claude
Code), and headless (no display). Core framework manages all service
lifecycles via dependency injection.
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-14 09:18:55 +00:00
Snider
5a2d508254
feat: add brain MCP tools and webview service
...
Security Scan / security (push) Successful in 8s
Test / test (push) Failing after 1m12s
Adds brain_remember/recall/forget/ensure_collection MCP tools via
BrainService. Extracts WebviewService, wires brain tools into both
headless and GUI MCP bridges.
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-13 09:30:05 +00:00
Claude
30e9edcfb9
chore: refresh go.sum after upstream tag updates
...
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-22 23:36:25 +00:00
Claude
4d9643ce8e
chore: sync workspace dependency versions
...
Run go work sync to align dependency versions across workspace.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-22 21:41:04 +00:00
Claude
74e9994a6b
refactor: update module path and imports for standalone repo
...
- Change module from forge.lthn.ai/core/cli/internal/core-ide
to forge.lthn.ai/core/ide
- Update dependency from core/cli to core/go + core/gui
- Fix all imports: core/cli/pkg/ → core/go/pkg/
- Fix self-references: core/cli/internal/core-ide/ → core/ide/
- Add replace directives for core/go and core/gui
- Run go mod tidy
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-16 14:22:26 +00:00
Snider
9fad7cc1ab
move
2026-02-16 13:55:59 +00:00