This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
## Project Overview
Core is a Web3 Framework written in Go using Wails v3 to replace Electron for desktop applications. It provides a dependency injection framework for managing services with lifecycle support.
## Build & Development Commands
This project uses [Task](https://taskfile.dev/) for automation. Key commands:
```bash
# Run all tests
task test
# Generate test coverage
task cov
task cov-view # Opens coverage HTML report
# GUI application (Wails)
task gui:dev # Development mode with hot-reload
task gui:build # Production build
# CLI application
task cli:build # Build CLI
task cli:run # Build and run CLI
# Code review
task review # Submit for CodeRabbit review
task check # Run mod tidy + tests + review
```
Run a single test: `go test -run TestName ./...`
## Architecture
### Core Framework (`core.go`, `interfaces.go`)
The `Core` struct is the central application container managing:
-`WithService`: Auto-discovers service name from package path, registers IPC handler if service has `HandleIPCEvents` method
-`WithName`: Explicitly names a service
### Runtime (`runtime_pkg.go`)
`Runtime` is the Wails service wrapper that bootstraps the Core and its services. Use `NewWithFactories()` for custom service registration or `NewRuntime()` for basic setup.
### ServiceRuntime Generic Helper (`runtime.go`)
Embed `ServiceRuntime[T]` in services to get access to Core and typed options: