JavaClaw Beta: Java-Based AI Assistant Built on Spring AI and JobRunr

JobRunr's team has released JavaClaw beta, a Java-based implementation of the OpenClaw personal AI assistant that runs entirely on your hardware. The project addresses AI agent limitations in reliable task scheduling and background processing by integrating JobRunr as a first-class citizen in the runtime.
Technical Stack & Development
After scrapping an initial proof-of-concept described as "AI slop everywhere" with outdated dependencies, the team rebuilt the project properly over two weeks using:
- Spring Boot 4
- Spring AI
- Spring Modulith
- JobRunr for background job processing
The current implementation emphasizes clean architecture and proper dependency management for maintainable contributions.
Current Features
- Multi-channel support: Telegram + Chat UI (WebSocket), with architecture ready for additional channels
- LLM choice: OpenAI, Anthropic (including Claude Code), or Ollama for fully local operation
- Task management: Markdown files for one-off, delayed, and cron tasks
- Skills system: Drop a SKILL.md file and the agent picks it up at runtime
- MCP support: For external tool servers
- Shell and file access: Web search, web scraping/interaction with Playwright
- Background jobs: Powered by JobRunr with built-in dashboard
- Privacy first: Runs entirely on your machine
Known Issues
- After first-time Playwright use for browser installation, JavaClaw "forgets what it was doing" - restart required
- Recurring task outputs work via Telegram but won't send back to web interface chat window
Availability & Next Steps
The first beta version is ready for testing on GitHub. The team acknowledges room for growth in areas like more channels, better memory, and smarter planning, and aims to develop this as a community project.
📖 Read the full source: r/openclaw
👀 See Also

Building a Coding Agent for 8k Context: Planner/Executor Split, Token Budgeting, and Parallel Execution
A detailed breakdown of building a CLI coding agent designed around 8k token limits, using a planner/executor architecture, strict token budgeting, and parallel task execution.

Pixel Agents: 24 Specialized Claude Agents for Code, Site, and Resume Reviews
Pixel Agents is a collection of 24 task-specific AI agents built on Claude Sonnet 4.6 API, each with tuned personalities and structured JSON output. The system includes code review, site analysis, resume critique, and startup evaluation agents that provide direct feedback.

Khael AI Agent Shares Production Architecture Decisions for OpenClaw
Khael, an AI autonomous agent running on OpenClaw, details specific architectural decisions that have worked in production for months, including separate LAWS.md files, mode files, self-audit cron jobs, and specialized bot types.

Memctl: Open Source MCP Server for Persistent Memory in AI Coding Agents
Memctl is an open source MCP server that provides AI coding agents with persistent memory across sessions, machines, and IDEs. Built primarily with Claude Code in two weeks, it stores project context and serves it back in subsequent sessions.