▲ 2 r/CortexPrism+1 crossposts

Why I built a self-hosted AI agent OS instead of using LangChain or CrewAI

I spent months trying to build an autonomous agent system using existing tools. The pattern I kept running into:

  • LangChain gives you the agent loop. You build everything else: UI, persistence, sandboxing, security, channel bots, multi-agent coordination. Every upgrade broke something in my glue code.
  • CrewAI nails multi-agent roles but inherits LangChain's dependency tree and has no web UI, no persistent memory, no security model.
  • OpenAI Assistants is polished but locked to one provider, no customization of the agent loop, no multi-agent, and data residency is their problem.

So I built CortexPrism — a self-hosted AI agent operating system. Single Deno binary, zero external runtime dependencies, Apache 2.0 licensed.

What's different:

Instead of a library you build on top of, it's a complete OS for agents. The agent loop, memory, tools, web UI, IDE editor, security, and channel adapters all work together because they were built to work together.

  • 10 built-in agent profiles with HEXACO personality configuration and specialized tool sets — Assistant, Developer, Researcher, Architect, Analyst, Writer, DevOps, Security, Code Reviewer, QA/Tester
  • 5-tier persistent memory — episodic (FTS5), semantic (vector), skills, graph (D3 interactive visualization), reflection (meta-patterns). Hybrid BM25 + vector search with time-decay scoring and checkpoint time-travel
  • 60+ built-in tools — web search, sandboxed code execution, Playwright browser automation, Chrome Bridge, GitHub, voice, computer use, file_diff
  • 6 multi-agent orchestration strategies — sequential, parallel, debate, review-loop, hierarchical, graph — backed by 13 sub-agent types
  • Runtime tool forging — agents can create, test, and export TypeScript tools at runtime with safety scanning
  • 30 LLM providers — Claude, GPT, Gemini, Ollama, Groq, DeepSeek, OpenRouter, Replicate, Cloudflare, DeepInfra, Hyperbolic, MiniMax, Zhipu, and 18 more — with cascade routing (start cheap, escalate when confidence is low)
  • Parallax security — regex policy validator, LLM security supervisor, human approval modals, SSRF protection, AES-256-GCM vault, AgentLint (33+ static audits), Dependency Guardian CVE monitoring, append-only audit lens
  • Full web UI — 40+ pages, streaming chat, IDE-style code editor, memory graph, prompt lab with A/B testing, sessions tree, node/swarm dashboard
  • Custom TUI framework — double-buffered virtual screen, emacs keybindings, 3 themes
  • Distributed swarm — multi-instance orchestration via Google A2A protocol
  • WASM plugin runtime — compile from C, Rust, or Zig with ABI versioning and supply-chain scanning
  • Multi-user collaboration — users (PBKDF2), teams, API tokens (SHA-256), federation
  • 9 channel adapters — Discord, Slack, Telegram, Teams, Mattermost, Rocket.Chat, WhatsApp, Google Chat, Lark
  • Zero telemetry — everything runs locally on your hardware

The design philosophy: Cohesive beats composable. A single binary where everything works together beats 6 libraries that you stitch together and hope don't break on the next upgrade.

Stack: Deno 2.x (strict TypeScript) · SQLite (WAL mode) via libSQL · tree-sitter WASM (14+ language parsing) · CodeMirror 6 · AES-256-GCM + PBKDF2

Install (macOS/Linux):

curl -fsSL https://cortexprism.io/install.sh | bash
cortex setup && cortex serve
# Open http://localhost:3000

GitHub: https://github.com/CortexPrism/cortex

Apache 2.0 · Zero telemetry · Contributions welcome

reddit.com
u/scarecr0w12 — 12 days ago

CortexPrism — a self-hosted AI agent operating system that runs as a single binary

https://preview.redd.it/t9q2khq3b59h1.png?width=1126&format=png&auto=webp&s=0c76304fbececd3435454a2571c242c39dcbf1d0

CortexPrism is an open-source agent operating system I've been working on that gives any LLM persistent memory, a rich tool ecosystem, sandboxed code execution, multi-agent orchestration, and a full-featured web UI — all running locally under your control.

What it does:

  • Autonomous agent loop — LLMs execute tools, search the web, run code, browse pages, edit files, and collaborate with sub-agents across multi-turn sessions with full persistence and resume
  • Multi-agent orchestration — 6 strategiesorchestrate tool with sequential, parallel, debate, review-loop, hierarchical, and graph strategies. Sub-agents spawn as 13 typed workers (explorer, coder, researcher, security auditor, architect, devops, writer, reviewer, and more)
  • 10 built-in agents — Assistant, Developer, Researcher, Architect, Analyst, Writer, DevOps, Security, Code Reviewer, QA/Tester — each with specialized tool sets, soul prompts, and output conventions
  • HEXACO personality system — agents configured with six-factor personality (honesty, emotionality, extraversion, agreeableness, conscientiousness, openness) that influences system prompts, memory retrieval, response style, and model routing
  • Runtime tool forging — agents can create, test, and export custom tools at runtime with safety scanning and an optional LLM security judge
  • 5-tier persistent memory — episodic → semantic → skills → graph → reflection. Hybrid FTS5+vector search, auto-decay, heuristic learning, interactive D3 force-directed memory graph, and checkpoint time-travel
  • Quartermaster intelligence — dual self-learning systems: Model Quartermaster (6-signal model selection) and Quartermaster (5-signal tool prediction), both with adaptive learning and confidence scoring
  • Prompt Lab — A/B testing with variant comparison, prompt generation from structured parameters, automatic variation generation (5 strategies), 14 API endpoints
  • Multi-user collaboration — users, teams, API tokens, resource scoping, instance federation, authorization guards, login page, team selector, CLI auth commands
  • 60+ built-in tools: web search, sandboxed code execution, headless Playwright browser, Chrome Bridge, GitHub, real-time voice, computer use, file_diff
  • Chat with any LLM — 30 providers (Anthropic, OpenAI, Google, Ollama, Groq, DeepSeek, OpenRouter, xAI, Replicate, Cloudflare Workers AI, DeepInfra, and more)
  • Custom Deno-native TUI framework — double-buffered virtual screen, component tree, 3 themes, emacs keybindings, 12 slash commands
  • IDE-style code editor — resizable panels, fuzzy quick-open (Ctrl+P), find/replace, context menus, file type icons, integrated xterm.js terminal with real-time WebSocket I/O
  • Virtual filesystem/cortex/agents/:id/, /cortex/memory/:tier/, /cortex/config/, /cortex/logs/
  • Agent Builder with multi-select tool dropdowns, icon picker (30 emojis), category/version badges, and one-click agent cloning
  • Agent-to-Agent (A2A) v1.0 Google Protocol bridge for seamless cross-framework cooperation
  • Memori Checkpointing — full-state serialization and restore to survive crashes, restarts, and context resets
  • Tree-sitter code intelligence parsing 14+ languages (with dependency visuals, call graphs, and impact analysis)
  • Built-in Web UI + REST API + CLI + TUI + 9 Discord/Slack/Telegram channel adapters
  • Distributed swarm orchestration — multi-instance agent swarms with node registry, A2A transport, directive dispatch, remote kernel process-tree proxying, and fleet-wide resource accounting
  • WASM plugin runtime — compile plugins from C/Rust/Zig to WASM; ABI versioning, linear memory allocator, synchronous HTTP, parameter schemas, permission enforcement, supply-chain binary scanning, SDK + test suite
  • Rigorous security: Parallax policy validator + LLM supervisor + 16 default deny rules + AgentLint (33+ static checks) + Dependency Guardian CVE monitoring, AES-256-GCM vault, SSRF shields, append-only audit log
  • 100% local, zero telemetry, Apache 2.0 licensed

One-liner install:

macOS / Linux:

curl -fsSL https://cortexprism.io/install.sh | bash

Windows (PowerShell):

irm https://cortexprism.io/install.ps1 | iex

After install, run:

cortex setup
cortex chat

Then open http://localhost:3000 with cortex serve

Would love to hear what you think. Questions / PRs welcome.

reddit.com
u/scarecr0w12 — 13 days ago

CortexPrism — a self-hosted AI agent operating system that runs as a single binary

Self-hosted, single-binary AI agent OS built on Deno. No Docker required.

What it is:

CortexPrism is an open-source agent operating system that gives any LLM persistent memory, a rich tool ecosystem, sandboxed code execution, multi-agent orchestration, and a full-featured web UI — all running locally under your control.

What it does:

  • Autonomous agent loop — LLMs execute tools, search the web, run code, browse pages, edit files, and collaborate with sub-agents across multi-turn sessions with full persistence and resume
  • Multi-agent orchestration — 6 strategiesorchestrate tool with sequential, parallel, debate, review-loop, hierarchical, and graph strategies. Sub-agents spawn as 13 typed workers (explorer, coder, researcher, security auditor, architect, devops, writer, reviewer, and more)
  • 10 built-in agents — Assistant, Developer, Researcher, Architect, Analyst, Writer ✍️, DevOps 🚀, Security 🔐, Code Reviewer 👁️, QA/Tester 🧪 — each with specialized tool sets, soul prompts, and output conventions
  • HEXACO personality system — agents configured with six-factor personality (honesty, emotionality, extraversion, agreeableness, conscientiousness, openness) that influences system prompts, memory retrieval, response style, and model routing
  • Runtime tool forging — agents can create, test, and export custom tools at runtime with safety scanning and an optional LLM security judge
  • 5-tier persistent memory — episodic → semantic → skills → graph → reflection. Hybrid FTS5+vector search, auto-decay, heuristic learning, interactive D3 force-directed memory graph, and checkpoint time-travel
  • Quartermaster intelligence — dual self-learning systems: Model Quartermaster (6-signal model selection) and Quartermaster (5-signal tool prediction), both with adaptive learning and confidence scoring
  • Prompt Lab — A/B testing with variant comparison, prompt generation from structured parameters, automatic variation generation (5 strategies), 14 API endpoints
  • 60+ built-in tools: web search, sandboxed code execution, headless Playwright browser, Chrome Bridge, GitHub, real-time voice, computer use, file_diff
  • Chat with any LLM — 24 providers (Anthropic, OpenAI, Google, Ollama, Groq, DeepSeek, OpenRouter, xAI, and more)
  • Custom Deno-native TUI framework — double-buffered virtual screen, component tree, 3 themes, emacs keybindings, 12 slash commands
  • IDE-style code editor — resizable panels, fuzzy quick-open (Ctrl+P), find/replace, context menus, file type icons, integrated xterm.js terminal with real-time WebSocket I/O
  • Virtual filesystem/cortex/agents/:id/, /cortex/memory/:tier/, /cortex/config/, /cortex/logs/
  • Agent Builder with multi-select tool dropdowns, icon picker (30 emojis), category/version badges, and one-click agent cloning
  • Agent-to-Agent (A2A) v1.0 Google Protocol bridge for seamless cross-framework cooperation
  • Memori Checkpointing — full-state serialization and restore to survive crashes, restarts, and context resets
  • Tree-sitter code intelligence parsing 14+ languages (with dependency visuals, call graphs, and impact analysis)
  • Built-in Web UI + REST API + CLI + TUI + 9 Discord/Slack/Telegram channel adapters
  • Rigorous security: Parallax policy validator + LLM supervisor + 16 default deny rules + AgentLint (33+ static checks) + Dependency Guardian CVE monitoring, AES-256-GCM vault, SSRF shields, append-only audit log
  • 100% local, zero telemetry, Apache 2.0 licensed

One-liner install:

macOS / Linux:

curl -fsSL https://cortexprism.io/install.sh | bash

Windows (PowerShell):

irm https://cortexprism.io/install.ps1 | iex

After install, run:

cortex setup
cortex chat

Then open http://localhost:3000 with cortex serve

Would love to hear what you think. Questions / PRs welcome.

reddit.com
u/scarecr0w12 — 13 days ago
▲ 5 r/CortexPrism+1 crossposts

CortexPrism v0.47.0 — open-source agent operating system: 24 LLM providers, 5-tier memory, code intelligence, full web UI, zero telemetry

I've been working on CortexPrism for the past year — it's a self-hosted, open-source AI agent platform that runs as a single Deno binary. No Docker required, no npm/node_modules mess, no Python environment hell. One binary, zero external runtime dependencies.

The problem I was trying to solve:

Existing agent frameworks fall into three buckets:

  1. Libraries (LangChain, CrewAI) — you get a Python library and have to build everything else yourself: UI, persistence, security, code execution sandboxing, channel bots.
  2. Chat UIs (Open WebUI, Ollama Web UI) — great for chatting but no agent loop, no tool execution, no persistent memory beyond the chat window.
  3. Commercial platforms — you don't own your data, you can't customize the agent loop, and you're locked into their model ecosystem.

I wanted something that combines the depth of an agent framework with the polish of a production application — all running locally, all open source, all under my control.

Current feature set (v0.47.0):

Agent system:

  • Interactive streaming chat with full session persistence and resume
  • Memori Checkpointing — persistent agent state serialization and restore for survival across restarts, crashes, and context window resets
  • A2A Protocol Bridge — Google Agent2Agent (A2A) v1.0 protocol for cross-framework agent collaboration with JSON-RPC 2.0 server/client and SSE streaming
  • AgentLint — automated auditing of agent configs, tools, plugins, and prompts with 33+ detailed static analysis checks
  • Sub-agent orchestration — agents spawn 11 specialized child types (explorer, coder, researcher, planner, generalist, security auditor, debugger, architect, devops engineer, data analyst, UI/UX designer) as isolated subprocesses with live task tracking
  • Real-time sub-agent progress cards — live-streamed, collapsible cards showing each sub-agent's type, task, spinning indicator, and streaming output directly in the chat
  • Agent Builder with multi-select tool dropdowns, icon picker (30 emojis), category/version badges, and one-click agent cloning
  • Scoring-based metacognition engine with weighted decision dimensions, confidence scores, and task escalation for low-confidence assessments
  • Per-turn reflection with confidence scoring, meta-pattern consolidation, and adversarial self-critique
  • Automatic preference detection from conversation
  • Goal drift detection — detects when sessions change direction from prior goals
  • Policy-aware planning with logged plans and workflow integration
  • Editable SOUL.md / USER.md / MEMORY.md for personality customization

24 LLM providers, unified interface: Anthropic Claude, OpenAI GPT, Google Gemini, Mistral, Groq, DeepSeek, OpenRouter, xAI Grok, Together AI, AWS Bedrock, Cohere, Ollama (local), Cerebras, Fireworks, Perplexity, NVIDIA NIM, Moonshot/Kimi, Novita AI, LM Studio, LiteLLM, Hugging Face, Alibaba Qwen, Venice AI, Kilo AI

Model Quartermaster (MQM): Learned model selection engine using 6 signals: historical performance, episodic memory, cost, quality, trajectory, and reflection. Adaptive EMA learning with three arbiter strategies (conservative/balanced/aggressive). It watches which models succeed at which task types and adjusts routing accordingly.

Model Router:

  • Cascade: starts with the cheapest model, escalates when confidence is low
  • Threshold: RouteLLM-style prompt scoring for strong vs weak model routing

5-tier memory system:

  • Hybrid search (FTS5 BM25 + vector cosine similarity) with time-decay scoring
  • Pluggable vector backends — SQLite (built-in), Qdrant, ChromaDB, and Pinecone with mirrored writes
  • Automatic memory injection into each turn's context
  • Heuristic self-learning: access-tracking, importance boosting, co-occurrence graph relations, 12-rule auto-categorization
  • Memory health dashboard with aggregate stats and one-click heuristic cycle runner

Skills system:

  • 3 sources: TypeScript built-ins, filesystem markdown skills, LLM-extracted skills
  • 6-state lifecycle with health scoring (utility, freshness, redundancy, failure risk)
  • 4-tier trust system gate agent skill exposure
  • Live skill bus bindings view — event-driven skill orchestration with real-time monitoring
  • Bulk deletion with dependency checking and transaction safety
  • Automatic deduplication and merging
  • Dependency tracking (depends_on, conflicts_with)

60+ built-in tools:

  • File system: read, write, edit, patch, delete, rename, search, glob, tree
  • Shell: sandboxed command execution through policy validator
  • Web: search, fetch, crawl (Firecrawl, Brave, Tavily, SerpAPI)
  • Code execution: Docker/gVisor sandbox with LLM auto-fix loop
  • Browser: Playwright headless automation (navigate, click, type, screenshot, snapshot, evaluate)
  • Chrome Bridge: real Chrome browser automation via MCP — 60 tools for live browsing, network inspection, performance auditing, and accessibility testing
  • GitHub: PRs, issues, repo browsing, git push
  • Voice: TTS (OpenAI, ElevenLabs) and STT (Whisper)
  • Code intelligence: symbol search, call graph, impact analysis, architecture extraction
  • Computer use: screenshot, mouse, keyboard, scroll, drag
  • Sub-agents: spawn typed child agents

Code Intelligence (Codegraph):

  • Tree-sitter WASM parsers for 14+ languages (TypeScript, JavaScript, Python, Go, Rust, Java, Kotlin, C, C++, Ruby, PHP, Swift, Lua, Bash)
  • 6-strategy call target resolution with cross-file import analysis
  • 14 node types and 18 edge types (CALLS, IMPORTS, DEFINES, IMPLEMENTS, INHERITS, HTTP_CALLS, etc.)
  • D3.js force-directed graph visualization in the web UI
  • Incremental sync with file-hash change detection

Built-in Web UI:

  • 40+ pages across 8 sections: Core, Intelligence, Development, Infrastructure, Tools & MCP, Security, System, Other
  • WebSocket-powered streaming chat with live sub-agent progress cards
  • CodeMirror editor with git integration
  • File upload (drag-and-drop PDFs, images, documents)
  • Session persistence across page refreshes
  • Workflows page with visual designer, goal drift tracking, and sub-agent task board
  • Supply-chain verification reports with trust badges in plugin cards
  • Optional WebAuth authentication

Security (Parallax model):

  1. Policy validator — regex allow/deny rules for shell commands, file paths, network requests
  2. LLM security supervisor — fast model reviews sensitive access requests with decision caching
  3. LLM vulnerability scanner — detects prompt injection, data leaks, destructive commands, XSS, and SQL injection in prompts/outputs
  4. Data classification — automatic sensitivity detection (passwords, API keys, PII, credit cards, SSNs)
  5. Human approval — CLI and Web UI modals with preview and temporary grants
  6. AES-256-GCM vault — PBKDF2 key derivation with per-installation random salt (200K iterations), encrypted credential storage with hygiene monitoring
  7. Credentials hygiene monitor — checks vault for duplicates, namespace conventions, and total count warnings
  8. Zero-trust policy generator — generates path/domain allow-lists from enabled policy rules
  9. Supply-chain verification — plugin integrity verification with SHA-256 hash checking, signature verification, author reputation scoring, and malware pattern scanning
  10. Dependency Guardian — continuous CVE monitoring, license enforcement, and security remediation suggestions across 6 package ecosystems
  11. Audit log — append-only, all tool/LLM calls, policy decisions, security approvals
  12. SSRF protection — DNS-resolution guard blocking requests to private/internal IP ranges and metadata hosts
  13. Config encryption — provider API keys and tokens encrypted on disk via AES-256-GCM
  14. HTTPS/TLS support — configurable cert/key for encrypted transport
  15. CSP, CORS, rate limiting, body size limits, and security headers on all HTTP responses

Production infrastructure:

  • Daemon supervisor (Validator, Executor, Scheduler) with exponential backoff restart
  • Cron job scheduler
  • Pipeline hooks (10-stage middleware, 10 built-in hooks)
  • Event triggers (webhooks, filesystem watchers, git hooks)
  • Plugin system (Deno modules + WASM with sandboxed permissions and supply-chain verification)
  • MCP server (Model Context Protocol over stdio and HTTP)
  • 9 channel adapters (Discord, Slack, Telegram, Teams, Mattermost, Rocket.Chat, WhatsApp, Google Chat, Lark)
  • Distributed node management
  • Workflow engine — visual no-code agentic workflow builder with approvals
  • Memory health monitor — health scoring and warnings for memory stores with entity resolution
  • Multi-modal memory vault — supports arbitrary content storage (embeddings, images, files, text)
  • Bug reproduction studio — generates reproduction manifests with steps and environment
  • Dev environment as code — serializes sandbox config, providers, and web auth
  • Prometheus + OpenTelemetry + Langfuse observability
  • Auto-update with SHA-256 verification

Desktop app: Tauri v2 wrapper (macOS, Windows, Linux) with system tray and native notifications.

One-liner install:

macOS / Linux:

curl -fsSL https://cortexprism.io/install.sh | bash

Windows (PowerShell):

irm https://cortexprism.io/install.ps1 | iex

Or from source:

git clone https://github.com/CortexPrism/cortex.git
cd cortex
deno task serve

Links:

Happy to answer questions. PRs and issues welcome.

reddit.com
u/scarecr0w12 — 15 days ago

Old Man WoW | 3.3.5a | AI Playerbots, Nemesis System, Mythic+, PvPvE, Individual progression, AutoBalance Raids, Guild Housing + Villages

Welcome to Old Man Warcraft: WotLK, Reimagined for Adults

https://preview.redd.it/5dwtb98rle5h1.png?width=1857&format=png&auto=webp&s=9926cfefc41042aa825ec2d664e5f9981f068226

We built Old Man WoW for players who still love Wrath of the Lich King but no longer have the time or patience for the parts of MMO life that get in the way of actually having fun. This is a custom 3.3.5a experience built around two pillars: Individual Progression through the full arc of wow history, and Advanced Playerbots that make the entire game world playable on your schedule.

Whether you log in for thirty minutes after work or spend an entire weekend pushing progression, the server is built to support the way adults actually play. You can level steadily, tackle dungeons and raids without waiting on a perfect roster, and experience a world that still feels social and alive even during off-hours.

Come check us out at oldmanwarcraft.com or Discord!

Individual Progression: Your Journey, Your Era

The core of Old Man wow — and what separates it from every other WotLK server — is Individual Progression: a character-based path through Vanilla, TBC, and Wrath of the Lich King that keeps the entire game world relevant and turns your adventure into a real journey rather than a sprint to the final patch.

Instead of everyone starting at the finish line, you move through the eras you have earned. The world reacts to your progress. Content that most servers have abandoned becomes the heart of your experience.

  • Progressive Era Advancement: Move through Vanilla, TBC, and WotLK in sequence. You unlock each era through play, not a server-wide schedule. Your character's history is genuinely yours.
  • Phased, Reactive World: NPCs, loot, encounters, and world states respond to your progression level. The world treats you differently depending on where you are in your journey.
  • Relevant Legacy Content: Classic dungeons, raids, and elite outdoor zones are tuned to matter at the era you are currently in. Nothing is obsolete. Nothing is skipped.
  • Play at Your Own Speed: Friends can be at different progression stages and still share the same world — grouping when it makes sense, using bots to fill gaps when it doesn't.
  • A Reason to Experience Everything: For the first time in years, older raid tiers, classic zones, and forgotten dungeons are part of an active progression path, not just transmog runs.

This is the full wow story, played as it was meant to be — start to finish, at your pace, with every chapter worth experiencing.

Playerbots: Your Crew, Always Ready

The hardest part of any private server is not the content — it is finding people at the exact moment you want to play. Old Man wow solves that with the most advanced playerbot integration available on any WotLK server.

These are not simple follow-bots. They are capable, geared, class-aware companions that make real content accessible whenever you are ready for it.

  • Run Real Content, Anytime: Fill your party or raid with intelligent AI companions that can tank, heal, or DPS at a competent level. Queue for a dungeon at 2am, start a raid with friends and bots filling the gaps, or take on outdoor elites without waiting on a roster.
  • Bots That Grow With You: Your bot companions level, gear, and advance alongside your character. They feel like persistent party members — part of your ongoing story — not disposable throw-aways.
  • Class-Aware Behavior: Bots understand their roles. They respond to aggro, manage cooldowns, follow strategic commands, and handle real encounter mechanics rather than standing still and auto-attacking.
  • AI-Powered Conversation: Powered by real LLMs, bots and NPCs can communicate naturally in chat. They have personality, respond in context, and make the world feel inhabited rather than empty.
  • Old Man Assistant Addon: Our custom in-game AI interface gives you instant access to server documentation, synced Aowow data, and curated server knowledge — all from inside the game client.
  • Always-On Economy: An active Auction House bot keeps the market moving around the clock so you are never stuck without supplies.

The result is a server where you are never truly alone, and content is never gated behind the availability of other people.

Why Old Man WoW Exists

Most Wrath servers ask you to fit your life around the game.

We built Old Man wow to do the opposite.

This server is for:

  • Players who miss the world, class design, and pacing of WotLK
  • Adults with jobs, families, and limited play windows
  • Solo players who still want to experience group content
  • Small friend groups who want to raid without recruiting 20 more people
  • Long-term MMO players who want progression to feel meaningful again

You should be able to log in, make progress, and have a good time without spending your entire session forming a group, traveling across the world for basic convenience, or feeling locked out because most of the server is active in a different time zone.

Raids & Dungeons on Your Terms

Old Man wow is built around the idea that content should be playable when you are ready for it, not only when the perfect number of players happens to be online.

All major group content has been enhanced to give you more options without trivializing the challenge.

  • Flex Autobalance: Raids and selected challenge content scale around your real group size and composition, making small-group progression more practical when roster size is tight.
  • Small Group, Big Ambitions: Want to step into content designed for much larger groups? Bring friends, bring bots, and take it on anyway.
  • Mythic+ and Challenge Modes: Modern-style scaling difficulty, affixes, and timed dungeon progression bring long-term replayability to familiar Wrath content.
  • Scaled Rewards: More difficult content earns more meaningful rewards, giving skilled and organized players room to push higher.
  • Instanced World Bosses: World boss progression happens without open-world griefing, tag wars, or performance issues caused by overcrowding.

The result is an endgame that is more flexible, more replayable, and far less dependent on perfect scheduling.

A Better Fit for Solo Players and Small Groups

You do not need to join a giant raid guild just to see the best parts of the game.

Old Man Warcraft is ideal for:

  • Solo players who still want access to dungeons, raids, and progression systems
  • Couples or small groups who want to play together without waiting on a full roster
  • Returning veterans who know the content but do not want to commit to rigid schedules
  • Completionists who want old and new content to remain worthwhile

If you want the satisfaction of RPG progression without the logistical frustration of traditional MMO group formation, this server is built for you.

A Guild System Worth Investing In

Guilds on Old Man Warcraft are no longer just chat channels with a bank tab. With our new Guild Level System, your guild grows stronger alongside the people in it.

As members level, complete quests, explore the world, and rack up honorable kills, the guild earns experience and advances through 25 guild levels. That progression unlocks Cataclysm-inspired perks that make guild life feel tangible instead of cosmetic.

  • Shared Progression: Your guild levels up through normal play, so simply being active with your community helps the whole roster move forward.
  • Meaningful Perks: Unlock bonuses like faster reputation and honor gains, better profession momentum, reduced durability loss on death, improved mounted travel, and other quality-of-life rewards.
  • Real Utility Unlocks: Higher-level guilds can access powerful conveniences like Cash Flow deposits into the guild bank, Mobile Banking, and even Mass Resurrection for guild groups.
  • Stronger Social Identity: Guild progression gives smaller communities and long-term friend groups another reason to stick together, build something lasting, and feel rewarded for doing it.
  • Territory Control and Guild Wars: Beyond leveling, guilds can buy and hold contested zones, defend them through regular activity, and accept war declarations from rival guilds who want to take that territory for themselves.

It is one more way the server supports adult-friendly progression: log in, play normally, and help your guild grow without turning the game into a second job.

Rates That Respect Your Time

We are not interested in turning progression into a meaningless blur, but we also do not think adult players should be forced into the slowest possible grind just to prove dedication.

Our rates are tuned to preserve the feeling of earned progression while cutting out unnecessary drag.

  • Adjustable Experience Rates: Start at 1x and choose the pace that fits your schedule with 2x and 3x options, plus VIP rates up to 4x and 5x.
  • Live Stream Bonus: Eligible live streamers can earn an additional XP bonus while broadcasting.
  • Blizzlike Economy and Drops: Core drop rates remain meaningful so professions, farming, and loot progression still matter.
  • Steady, Sustainable Progression: The goal is not instant gratification. It is a healthier pace for real-world schedules.

PvP Without the Hassle

Competitive players still have plenty to chase, without some of the usual barriers that stop people from participating.

  • Solo Queue 3v3: Queue without maintaining a permanent roster and still get matched into meaningful arena games.
  • 1v1 Arenas: Practice, compete, settle rivalries, and push your class knowledge in a dedicated rated bracket.
  • City Sieges and Dynamic PvP Events: Large-scale custom faction conflict adds spectacle and server identity beyond standard battleground rotations.
  • Guild Wars for Zone Control: Rival guilds can declare war over owned territories, forcing real open-world FFA battles where kills, timers, defense, and coordination decide who keeps control.
  • Competitive PvP Variety: Between solo queue, duels, city sieges, and guild wars, there are multiple ways to stay active without relying on a fixed team schedule.

Whether you are a hardcore PvPer or just like the occasional competitive session, there is room for you here.

A Nemesis System That Creates Real Rivalries

Some of the best MMO memories come from the players and enemies you learn to hate.

Our custom Nemesis System turns PvE deaths into persistent revenge targets. The world remembers who has beaten you, letting recurring enemies grow in threat and become part of your character's story.

  • Persistent Rivalries: Dangerous enemies can return as ranked Nemeses tied to your journey, giving repeat encounters real identity.
  • Escalating Threat: Nemeses grow more dangerous over time, turning ordinary defeats into memorable rematches.
  • Rewards & Revenge: Hunting down your Nemesis earns special rewards and the satisfaction of settling the score.

Financial Flexibility: The Goblin Bank

MMOs are about progression, and sometimes that requires a bit of capital. Our Goblin Bank module introduces a functional loan system for the modern adventurer.

  • Custom Loans: Borrow gold from Goblin Bankers with daily or weekly repayment schedules.
  • Simple & Accruing Interest: Manage your debt wisely to avoid falling into a financial hole.
  • Real Consequences: Defaulting on a loan isn't just a flavor text—it results in "Bad Credit" punishments including reduced run speed, XP debuffs, and loot restrictions until your debt is settled.

The Quality of Life You Deserve

We added the features many players wish classic WoW had from the beginning, while still keeping the core gameplay recognizable.

  • AoE Looting: Spend less time clicking corpses and more time actually playing.
  • Account-Friendly VIP Convenience: Premium account features and portable services help your alts and mains feel less siloed without turning the game into retail-style excess.
  • Guild Villages and Housing: Invest in shared spaces with real functionality, identity, and long-term value for your group.
  • Guild Levels and Perks: Build your guild over time and unlock progression that benefits the entire community, not just a single character.
  • Guild Territory Warfare: Claim zones, maintain ownership, earn zone-specific benefits, and give your guild a reason to fight for something tangible in the open world.
  • Transmog: Build the look you want without sacrificing character power.
  • Modern Convenience Without Retail Bloat: The server smooths away dated friction points while preserving the pace and feel of Wrath.
  • Robust Anticheat: Fair play matters. Competitive integrity and a stable community are part of the server's foundation.

These systems are not just conveniences. They are part of what makes the server sustainable and enjoyable over the long term.

Community, Philosophy, and Long-Term Vision

Old Man Warcraft is not trying to be the loudest or most disposable seasonal server.

The goal is to build a stable, feature-rich home for players who want a long-term Wrath experience with modern improvements and a mature community culture. That means valuing progression, reducing busywork, supporting different playstyles, and making sure the server stays fun whether you are online at peak time or off-hours.

We want the game to feel:

  • Welcoming to returning players
  • Friendly to adults with limited time
  • Deep enough for grinders and min-maxers
  • Flexible enough for solo players
  • Social without being logistically exhausting

If that sounds like the kind of server you have been waiting for, you will probably feel at home here.

At a Glance

Here is what defines the Old Man Warcraft experience:

  • Individual Progression — your character moves through Vanilla, TBC, and WotLK in sequence; every era matters, nothing is skipped
  • Advanced Playerbots — capable, class-aware AI companions that level and gear with you, available for dungeons and raids anytime
  • AI-powered conversation and the Old Man Assistant in-game addon
  • Flexible raid autobalance, Mythic+, and challenge content
  • A custom Nemesis System with ranked revenge targets and rewards
  • 25-level Guild Progression with guild XP, shared perks, and utility unlocks
  • Guild Wars with capturable territories, war declarations, and open-world zone battles
  • Goblin Bank loan system with repayment and credit tracking
  • Adjustable XP rates from 1x-3x, with VIP options up to 5x
  • Live stream XP bonuses for eligible broadcasters
  • Solo queue and custom PvP systems
  • VIP account perks and portable convenience features
  • Strong quality-of-life upgrades without losing the Wrath feel

Join Us

If you still love WoW but need a version that respects your time, supports your schedule, and lets you actually experience the game your way, Old Man Warcraft is ready for you.

Ready to jump back in?

Grab your gear and join us at oldmanwarcraft.com.

Join the community on Discord.

Welcome to the retirement home.

reddit.com
u/scarecr0w12 — 1 month ago

BlizzLike+ | Old Man Warcraft | 3.3.5a | Playerbots, Nemesis System, Mythic+, PvPvE, Individual progression, Auto-Balance Raids, Guild Housing + Villages

Welcome to Old Man Warcraft: WotLK, Reimagined for Adults

https://preview.redd.it/ezingttxxp0h1.jpg?width=1857&format=pjpg&auto=webp&s=089454cd05e178a6fe16f64a776d674e62187a1a

We built Old Man Warcraft for players who still love Wrath of the Lich King but no longer have the time or patience for the parts of MMO life that get in the way of actually having fun. This is a custom 3.3.5a experience built around character-based individual progression, flexibility, accessibility, and long-term progression without sacrificing the spirit of classic World of Warcraft.

Whether you log in for 30 minutes after work or spend an entire weekend pushing progression, the server is built to support how adults actually play. You can level steadily, tackle dungeons and raids without waiting on a perfect roster, enjoy meaningful character progression through multiple eras of content, and experience a world that still feels social and alive even during off-hours.

The core of Old Man Warcraft is Individual Progression: a character-based progression path through Vanilla, TBC, and Wrath that keeps older content relevant and turns the full game world into part of your journey instead of a leveling hallway to endgame.

Old Man Warcraft combines the nostalgia of original WoW with a curated set of modern systems: advanced playerbots, AI-powered conversations, scalable group content, personal progression, a brand-new guild leveling system with meaningful perks, guild territorial warfare, account-friendly quality-of-life features, and a server philosophy centered on respecting your time.

Come check us out at oldmanwarcraft.com or Discord!

True Individual Progression

Experience the full Warcraft journey from the original game through The Burning Crusade and into Wrath of the Lich King at your own pace.

Instead of rushing everyone to the same final patch endgame, Old Man Warcraft gives your character an individual progression path through the major eras of content. That means older raids, dungeons, and zones matter again. Your journey feels like an actual adventure rather than a race to skip straight to the last tier.

  • Progressive Eras: You move through Vanilla, TBC, and WotLK in sequence, unlocking content as your character advances rather than starting at the finish line.
  • Phased Content: NPCs, drops, encounters, and world states react to your progression level, creating a more personalized world.
  • Relevant Legacy Content: Classic dungeons, raids, and elite outdoor zones remain meaningful and appropriately tuned for the era you're currently playing.
  • Play Together Your Way: Friends can progress at different speeds while still sharing the same world, grouping together when it makes sense and using bots to fill gaps when needed.

This system makes the entire game world matter again, not just the latest raid tier.

Why Old Man Warcraft Exists

Most Wrath servers ask you to fit your life around the game.

We built Old Man Warcraft to do the opposite.

This server is for:

  • Players who miss the world, class design, and pacing of WotLK
  • Adults with jobs, families, and limited play windows
  • Solo players who still want to experience group content
  • Small friend groups who want to raid without recruiting 20 more people
  • Long-term MMO players who want progression to feel meaningful again

You should be able to log in, make progress, and have a good time without spending your entire session forming a group, traveling across the world for basic convenience, or feeling locked out because most of the server is active in a different time zone.

A World That Actually Feels Alive

The hardest part of many private servers is not the content. It is finding people at the exact moment you want to play.

Old Man Warcraft addresses that by making the world feel active, responsive, and social even when your guild is offline.

  • Intelligent Playerbots: Fill parties and raids with capable AI companions that can tank, heal, DPS, follow commands, and help you run real content on demand.
  • Bots That Grow With You: Your companions level, gear, and adventure alongside you, making them feel like part of your ongoing journey instead of disposable placeholders.
  • Next-Gen AI Chat & Assistant: Powered by real LLMs, bots and NPCs can communicate naturally. Our custom Old Man Assistant addon provides an in-game AI interface backed by server documentation, synced Aowow data, and curated server knowledge to help you on your journey.
  • Always-On Economy: An active Auction House bot keeps the market moving, while the Goblin Bank loan system adds another layer of adult-friendly financial flexibility, with real consequences for defaulting.
  • Global Cross-Faction Chat: The community stays connected across faction lines, helping the server feel like a single living world rather than multiple isolated groups.
  • Guilds That Actually Progress: Guilds now earn experience from the things your members are already doing—questing, leveling, exploring, and fighting—unlocking meaningful long-term perks as your community grows.
  • Guild Territory That Matters: Guilds can claim strategic zones, hold them through taxes and activity, and turn open-world ownership into a real source of pride, pressure, and rivalry.

The result is a server where you can be self-sufficient without feeling alone.

Raids & Dungeons on Your Terms

Old Man Warcraft is built around the idea that content should be playable when you are ready for it, not only when the perfect number of players happens to be online.

All major group content has been enhanced to give you more options without trivializing the challenge.

  • Flex Autobalance: Raids and selected challenge content scale around your real group size and composition, making small-group progression more practical when roster size is tight.
  • Small Group, Big Ambitions: Want to step into content designed for much larger groups? Bring friends, bring bots, and take it on anyway.
  • Mythic+ and Challenge Modes: Modern-style scaling difficulty, affixes, and timed dungeon progression bring long-term replayability to familiar Wrath content.
  • Scaled Rewards: More difficult content earns more meaningful rewards, giving skilled and organized players room to push higher.
  • Instanced World Bosses: World boss progression happens without open-world griefing, tag wars, or performance issues caused by overcrowding.

The result is an endgame that is more flexible, more replayable, and far less dependent on perfect scheduling.

A Better Fit for Solo Players and Small Groups

You do not need to join a giant raid guild just to see the best parts of the game.

Old Man Warcraft is ideal for:

  • Solo players who still want access to dungeons, raids, and progression systems
  • Couples or small groups who want to play together without waiting for a full roster
  • Returning veterans who know the content but do not want to commit to rigid schedules
  • Completionists who want old and new content to remain worthwhile

If you want the satisfaction of RPG progression without the logistical frustration of traditional MMO group formation, this server is built for you.

A Guild System Worth Investing In

Guilds on Old Man Warcraft are no longer just chat channels with a bank tab. With our new Guild Level System, your guild grows stronger alongside the people in it.

As members level, complete quests, explore the world, and rack up honorable kills, the guild earns experience and advances through 25 guild levels. That progression unlocks Cataclysm-inspired perks that make guild life feel tangible instead of cosmetic.

  • Shared Progression: Your guild levels up through normal play, so simply being active with your community helps the whole roster move forward.
  • Meaningful Perks: Unlock bonuses like faster reputation and honor gains, better profession momentum, reduced durability loss on death, improved mounted travel, and other quality-of-life rewards.
  • Real Utility Unlocks: Higher-level guilds can access powerful conveniences like Cash Flow deposits into the guild bank, Mobile Banking, and even Mass Resurrection for guild groups.
  • Stronger Social Identity: Guild progression gives smaller communities and long-term friend groups another reason to stick together, build something lasting, and feel rewarded for doing it.
  • Territory Control and Guild Wars: Beyond leveling, guilds can buy and hold contested zones, defend them through regular activity, and accept war declarations from rival guilds who want to take that territory for themselves.

It is one more way the server supports adult-friendly progression: log in, play normally, and help your guild grow without turning the game into a second job.

Rates That Respect Your Time

We are not interested in turning progression into a meaningless blur, but we also do not think adult players should be forced into the slowest possible grind just to prove dedication.

Our rates are tuned to preserve the feeling of earned progression while cutting out unnecessary drag.

  • Adjustable Experience Rates: Set your leveling pace to match your schedule, whether you want a more blizzlike journey or a faster climb when time is tight.
  • Reputation Support: 1.5x Reputation rates keep important grinds moving at a satisfying pace without making progression feel disposable.
  • Twitch XP Bonus: Link your account and earn a unique 1.5x Twitch Bonus while you are live on stream.
  • Blizzlike Economy and Drops: Core drop rates remain meaningful so professions, farming, and loot progression still matter.
  • Steady, Sustainable Progression: The goal is not instant gratification. It is a healthier pace for real-world schedules.

PvP Without the Hassle

Competitive players still have plenty to chase, without some of the usual barriers that stop people from participating.

  • Solo Queue 3v3: Queue without maintaining a permanent roster and still get matched into meaningful arena games.
  • 1v1 Arenas: Practice, compete, settle rivalries, and push your class knowledge in a dedicated, rated bracket.
  • City Sieges and Dynamic PvP Events: Large-scale custom faction conflict adds spectacle and server identity beyond standard battleground rotations.
  • Guild Wars for Zone Control: Rival guilds can declare war over owned territories, forcing real open-world FFA battles where kills, timers, defense, and coordination decide who keeps control.
  • Competitive PvP Variety: Between solo queue, duels, city sieges, and guild wars, there are multiple ways to stay active without relying on a fixed team schedule.

Whether you are a hardcore PvPer or just like the occasional competitive session, there is room for you here.

A Nemesis System That Creates Real Rivalries

Some of the best MMO memories come from the players and enemies you learn to hate.

Our custom Nemesis System turns PvE deaths into persistent revenge targets. The world remembers who has beaten you, promoting them into powerful foes with unique affixes and scaling power.

  • NemesisTracker Companion Addon: Track your rivals with a dedicated in-game interface built to surface last-seen locations and personal Nemesis data inside the client.
  • Dynamic Promotions: City Siege attackers and defenders can become temporary Nemeses, creating high-stakes conflicts during server events.
  • Persistent Rivalries: Recurring enemies and standout encounters gain ranks (1-5+) and affixes like Vampiric, Enraged, or Spellward, becoming part of your personal story.
  • Rewards & Revenge: Hunting down your Nemesis grants unique revenge rewards, while other players can claim bounties on world-famous threats.

Financial Flexibility: The Goblin Bank

MMOs are about progression, and sometimes that requires a bit of capital. Our Goblin Bank module introduces a functional loan system for the modern adventurer.

  • Custom Loans: Borrow gold from Goblin Bankers with daily or weekly repayment schedules.
  • Simple & Accruing Interest: Manage your debt wisely to avoid falling into a financial hole.
  • Real Consequences: Defaulting on a loan isn't just a flavor text—it results in "Bad Credit" punishments, including reduced run speed, XP debuffs, and loot restrictions until your debt is settled.

The Quality of Life You Deserve

We added the features many players wish classic WoW had from the beginning, while still keeping the core gameplay recognizable.

  • AoE Looting: Spend less time clicking corpses and more time actually playing.
  • Account-Friendly VIP Convenience: Premium account features and portable services help your alts and mains feel less siloed without turning the game into retail-style excess.
  • Guild Villages and Housing: Invest in shared spaces with real functionality, identity, and long-term value for your group.
  • Guild Levels and Perks: Build your guild over time and unlock progression that benefits the entire community, not just a single character.
  • Guild Territory Warfare: Claim zones, maintain ownership, earn zone-specific benefits, and give your guild a reason to fight for something tangible in the open world.
  • Transmog: Build the look you want without sacrificing character power.
  • Modern Convenience Without Retail Bloat: The server smooths away dated friction points while preserving the pace and feel of Wrath.
  • Robust Anticheat: Fair play matters. Competitive integrity and a stable community are part of the server's foundation.

These systems are not just conveniences. They are part of what makes the server sustainable and enjoyable over the long term.

Community, Philosophy, and Long-Term Vision

Old Man Warcraft is not trying to be the loudest or most disposable seasonal server.

The goal is to build a stable, feature-rich home for players who want a long-term Wrath experience with modern improvements and a mature community culture. That means valuing progression, reducing busywork, supporting different playstyles, and ensuring the server stays fun whether you are online during peak times or off-hours.

We want the game to feel:

  • Welcoming to returning players
  • Friendly to adults with limited time
  • Deep enough for grinders and min-maxers
  • Flexible enough for solo players
  • Social without being logistically exhausting

If that sounds like the kind of server you have been waiting for, you will probably feel at home here.

At a Glance

Here is what defines the Old Man Warcraft experience:

  • Progressive character-based era advancement
  • Smart playerbots for parties, raids, and world play
  • AI-powered assistant tools and conversational bot systems
  • Flexible raid autobalance, Mythic+, and challenge content
  • A custom Nemesis System with companion addon support
  • 25-level Guild Progression with guild XP, shared perks, and utility unlocks
  • Guild Wars with capturable territories, war declarations, and open-world zone battles
  • Goblin Bank loan system with repayment and credit tracking
  • Adjustable XP rates with Twitch Live XP boosts
  • Solo queue and custom PvP systems
  • VIP account perks and portable convenience features
  • Strong quality-of-life upgrades without losing the Wrath feel

Join Us

If you still love WoW but need a version that respects your time, supports your schedule, and lets you actually experience the game your way, Old Man Warcraft is ready for you.

Ready to jump back in?

Grab your gear and join us at oldmanwarcraft.com.

Join the community on Discord.

Welcome to the retirement home.

reddit.com
u/scarecr0w12 — 2 months ago