akka-buildlisted
Install: claude install-skill akka/ai-marketplace
## User Input
You **MUST** consider the user input before proceeding (if not empty).
## Purpose
This command is the **local development loop**. It compiles, tests, and runs
the service locally so you can iterate quickly. No Docker images are built,
no containers are pushed, no platform deployments happen. When the service
works locally and you're ready to ship, hand off to `/akka:deploy`.
## Outline
1. **Compile**: Use the `akka_maven_compile` MCP tool to compile the project.
If compilation fails, the tool returns extracted `[ERROR]` lines — read them,
report to the user, and fix the code before proceeding.
2. **Test**: Use the `akka_maven_test` MCP tool to run all tests. If tests fail:
- The tool returns test failure details and `[ERROR]` lines
- Report which tests failed and why
- Suggest fixes based on the failure messages
- Stop and hand off to `/akka:implement` for fixes
3. **Start local environment**: Use the `akka_local_start` MCP tool to start
the local development environment in the background. **Tell the user** that
the local runtime is starting — it provides gRPC proxying, service discovery,
and trace collection on `localhost:9889`. This is idempotent — if already
running, tell the user it is already active and report its status.
4. **Run the service**: Use `akka_local_run_service` to start the service
locally. This tool compiles first (catching errors immediately), then runs
`mvn exec:java` in the background. **Tell the