AskAlf: Open-source multi-agent orchestration platform for self-hosted AI workflows

What AskAlf does
AskAlf is an open-source multi-agent orchestration platform designed to run on your own hardware. Unlike single-agent tools, it dynamically creates specialized workers that coordinate through an autonomous system.
Key technical features
- 10-layer cognitive memory system combining semantic, episodic, and procedural memories
- Memory storage using PostgreSQL with pgvector extension
- Autonomous system that reviews its own knowledge and creates investigation tickets when issues are found
- Ticket dispatch to appropriate workers with resolution tracking
- Memory consolidation that strengthens useful patterns over time (e.g., the 100th security scan knows exactly where to look)
Current implementation
- Uses Claude and OpenAI as AI providers
- Architecture is model-agnostic
- Local model support (Ollama, vLLM) is on the roadmap
Technology stack
Built with TypeScript, PostgreSQL + pgvector, Redis, Docker, and MCP Protocol.
Installation
Quick installation via curl:
curl -fsSL https://get.askalf.org | bashSource and repository
GitHub repository available at: https://github.com/askalf/askalf
📖 Read the full source: r/LocalLLaMA
👀 See Also

Reddit user shares detailed prompt for exporting personal knowledge from AI assistants
A Reddit user has created a comprehensive prompt for extracting structured personal knowledge from AI assistants like Claude, addressing perceived limitations in Anthropic's ChatGPT import feature. The prompt generates three distinct JSON artifacts covering personal knowledge bases, intellectual frameworks, and knowledge graphs.

Real-time stock analysis added to Claude Desktop via MCP server
A developer built an MCP server called agent-toolbelt that adds real-time stock analysis capabilities to Claude Desktop and Claude Code. The tool provides five specific analysis functions and works with a single command installation.

Mnemos: an MCP server for persistent Claude Code memory
Mnemos is an open-source MCP server that gives Claude Code persistent memory across sessions, recording corrections as structured patterns and pushing ranked context at startup. Single 15 MB Go binary, no Docker or vector DB needed.

Why Deterministic Workflows Outperform AI-Driven Orchestration for Agent Systems
A developer with a year of experience building agent systems shares that AI-driven orchestration failed reliably due to non-deterministic routing, compounding errors, cost explosion, and impossible debugging. Switching to deterministic workflows with code-based orchestration eliminated orchestration failures.