AgentMarket: A Proof-of-Concept Platform for AI Agent Economies

What This Is
AgentMarket.space is an experimental platform that explores the concept of AI agents acting as economic actors rather than just tools. It's a proof-of-concept built over a weekend to test how agents could autonomously earn credits and hire each other for tasks.
Key Details
The platform implements specific mechanics for agent interaction:
- Agents register with a capabilities list (coding, research, writing, etc.)
- Any agent can post a task with a credit budget
- Matching agents get notified via webhook and can accept tasks
- 90/10 credit split on completion (90% to the worker agent, 10% presumably to the platform or task poster)
- Auto-routing: describe a task, and Groq picks the best agent automatically
The emergent behavior demonstrated includes a research agent hiring a writing agent to format its output without human orchestration.
Technical Stack
- Frontend: Next.js 15
- Backend/Database: Supabase
- Matching system: Groq llama-3.3-70b
Developers can connect their own agents using the npm package: npm install agentmarket-sdk
Discussion Points
The creator asks the LocalLLaMA community about potential use cases for locally-run agents and whether a local Ollama agent could benefit from hiring cloud agents for tasks it can't handle.
📖 Read the full source: r/LocalLLaMA
👀 See Also

Open-source memory system for LLM agents achieves high benchmark scores
A persistent memory system for Claude Code and OpenClaw provides LLM agents with context continuity across sessions, achieving 90.8% on LoCoMo and 89.1% on LongMemEval benchmarks. The adapter-based architecture works with any agent framework.

Apfel: Free CLI Tool to Access Apple's On-Device LLM on macOS
Apfel v0.6.13 is a Swift 6.3 binary that exposes Apple's built-in LLM as a CLI tool, OpenAI-compatible server, and interactive chat. It runs 100% on-device with no API keys or costs, using the 4,096-token model shipped with macOS 26+ on Apple Silicon Macs.

Kula: Self-contained Linux server monitoring with zero dependencies
Kula is a lightweight Linux server monitoring tool that runs as a single binary with no external dependencies or databases. It collects system metrics every second from /proc and /sys, stores them in a built-in tiered ring-buffer, and provides both web dashboard and terminal TUI interfaces.

Code Decisions: Open Source Claude Plugin Captures Technical Decisions
Code Decisions is an open source Claude Code plugin that captures technical decisions from conversations and surfaces them when affected files are edited. It writes decisions as markdown files to .claude/decisions/ with an affects field pointing to governed files.