# Build Test

> Use when you need build, test, or dev commands for memory-service across Go, Java, frontend, or Python modules.

- Skill: `tomevault-io/build-test` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/build-test`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/build-test/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Web & Frontend
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/build-test

---


# Build & Development

Use the smallest verification that matches the files you changed.

## Go
```bash
go build ./...
go test ./internal/plugin/store/sqlite -count=1
task dev:memory-service
```

## Java
```bash
./java/mvnw -f java/pom.xml compile
./java/mvnw -f java/pom.xml test
```

## Frontend
```bash
cd frontends/chat-frontend
npm run lint
npm run build
```

## Python
```bash
python3 -m compileall python
task verify:python
```

## Debugging Build Failures
```bash
go build ./... > build.log 2>&1
rg -n "ERROR|FAIL|panic|undefined:" build.log

go test ./... > test.log 2>&1
rg -n "ERROR|FAIL|panic|--- FAIL:" test.log
```

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/chirino) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-13 -->

