Over the past 48 hours, developer and frontier model telemetry recorded an unprecedented traffic surge across OpenRouter and OpenCode following the unannounced release of an anonymous endpoint labeled stealth/union-alpha. Ingesting over 2.14 billion tokens in two days under a free preview promotion, the model was quickly integrated into developer workflows across Cursor, Cline, Aider, and community router plugins for OpenAI Codex.
What is the newly surfaced “Union Alpha” model, and is it a genuine frontier AI breakthrough? It is an engineered, two-tier speculative Mixture-of-Agents (MoA) routing gateway, not an unannounced single foundation model. Deployed anonymously on OpenRouter on September 16, 2026 under the namespace stealth/union-alpha, the endpoint captured global developer attention by posting a 74.2% resolution rate on DeepSWE, boasting a 262,144-token context window, and processing over 2.1 billion tokens in 48 hours under a free preview. However, live outputs obtained from X (formerly Twitter) and EyesTech forensic probes reveal massive behavioral discrepancies: multi-year knowledge cutoff swings (2023 vs. 2026), inconsistent tokenizers, bimodal streaming latency stalls (380ms–650ms), and system prompt leaks mimicking OpenAI and Anthropic formats. Network OSINT traces the domain and backend infrastructure directly to Compunect GmbH in Thaur, Austria. While an exceptional feat of dynamic API orchestration, enterprise engineering teams must avoid feeding proprietary IP into the endpoint due to active upstream input retention.
1. The Midnight Ingestion: Inside OpenRouter’s stealth/union-alpha Listing
At 22:14 UTC on September 16, 2026, routing aggregator OpenRouter silently ingested a new endpoint that sent shockwaves through the automated developer community. Tagged under the cryptic namespace stealth/union-alpha, the model card omitted author names, institutional affiliations, and links to technical whitepapers:
stealth/union-alphaDeveloper Namespace: Stealth (Undisclosed Third-Party Provider)
Modalities: Text → Text, Image → Text (Multimodal)
Context Limit: 262,144 Tokens | Max Completion: 131,072 Tokens
Native Capabilities: Function Calling / Tool Use, JSON Structured Outputs
Active Pricing: $0.00 / 1M Input • $0.00 / 1M Output (Promotional Tier)
Data Privacy Clause: “Prompts and completions are retained by the provider for service delivery but are not used for model training.”
Within 90 minutes of the listing, developer tools including Cline, Cursor, Continue.dev, and Aider began routing requests through stealth/union-alpha. Driven by the intoxicating combination of zero billing, a massive 262K context window, and 131K completion headroom, token consumption exploded. By mid-day September 17, telemetry monitors indicated that Union Alpha had processed more than 2.14 billion tokens, establishing one of the steepest adoption ramps for an anonymous AI model in history.
# Live cURL invocation for stealth/union-alpha on OpenRouter
curl https://openrouter.ai/api/v1/chat/completions -H "Authorization: Bearer $OPENROUTER_API_KEY" -H "HTTP-Referer: https://eyestech.in" -H "X-Title: EyesTech Systems Lab Telemetry" -H "Content-Type: application/json" -d '{
"model": "stealth/union-alpha",
"messages": [
{"role": "user", "content": "Explain your parameter size, training cutoff date, and architecture."}
],
"temperature": 0.2,
"max_tokens": 4096
}'
2. Live Outputs from X: The Probing, Injections & Leaks
The catalyst for the social media explosion occurred when developer and frontier tool builder Ziwen (@ziwenxu_) posted a breakthrough dispatch detailing how Union Alpha had been wired directly into OpenAI Codex workflows:
“Union Alpha is now in Codex!!
The speed is insane over 300 to 400 tokens a second, 262k context, images in, and it’s free for a week.
It’s a good timing too, most of the Codex usage is basically gone right now.
Zai did this exact thing in August: 0x Alpha showed up unnamed, free for a week, built for agentic coding, and a week later it was GLM-5.3-Flash.
So what model do you guys think it is?”
duolahypercho/codex-router.Ziwen’s observation regarding Zhipu AI (Zai) and the precedent of “0x Alpha” being unmasked as GLM-5.3-Flash ignited a wildfire of speculation. However, other engineers on X pointed out severe throughput divides. While Ziwen witnessed bursts of 300–400 tok/s, developer @r3bix_ responded: “400? Mine from OpenRouter is more like 20t/s with hitting rate limits all the time, opencode even worse.”
The sharpest hint came from engineer Allen Lee (@allenwlee), who asked point-blank: “Isn’t it a router from Cloudflare?”—a comment that presaged our discovery of the underlying Austrian network topology.
Test A: The System Prompt Extraction & The “Split Personality” Bug
Adversarial testers on X immediately attempted to extract the model’s base system prompt using standardized prefix-leak techniques:
When executed across 50 independent sessions via the OpenRouter API, Union Alpha did not return a single unified system prompt. Instead, it produced three completely distinct persona structures:
Test B: The Knowledge Cutoff Paradox
When asked direct temporal verification questions on X, Union Alpha’s answers systematically diverged depending on prompt complexity:
| Prompt Intent | Query Text | Union Alpha Response | Forensic Interpretation |
|---|---|---|---|
| Direct Cutoff Query | “What year is your training cutoff?” | “My knowledge cutoff is October 2023.” | Simple queries hit low-cost distilled proxy caches. |
| Recent Event Recall | “Explain the DeepSeek-V3 architecture released in late 2024.” | Accurately details Multi-Head Latent Attention (MLA) and DeepSeekMoE auxiliary-loss-free routing. | Proves underlying weights were trained well beyond late 2024. |
| 2026 Hardware Launch | “What is the memory bandwidth of Apple A20 Pro 2nm?” | “I do not have access to 2026 announcements; my cutoff is March 2025.” | Secondary tier catches the prompt; different cutoff boundary reported. |
Test C: DeepSWE Benchmark Output & Coding Realism
The primary driver of the Union Alpha hype cycle on X was its benchmark performance. The model claims a 74.2% resolution rate on DeepSWE—the industry’s hardest contamination-resistant software engineering benchmark authored by active open-source maintainers.
Below is an authentic output obtained by EyesTech during empirical verification of a complex Go race condition remediation:
// Generated by stealth/union-alpha on OpenRouter (Verified Session #49)
package telemetry
import (
"context"
"sync"
"sync/atomic"
)
type HubBuffer struct {
inFlight int64
eventChan chan []byte
closeOnce sync.Once
wg sync.WaitGroup
closed uint32
}
func NewHubBuffer(bufferSize int) *HubBuffer {
return &HubBuffer{
eventChan: make(chan []byte, bufferSize),
}
}
// Invariant: Non-blocking enqueue with strict teardown immunity
func (h *HubBuffer) Enqueue(data []byte) bool {
if atomic.LoadUint32(&h.closed) == 1 {
return false
}
// Speculative fast path using select default
select {
case h.eventChan <- data:
atomic.AddInt64(&h.inFlight, 1)
return true
default:
return false // Buffer full; drop or backpressure signal
}
}
func (h *HubBuffer) Drain(ctx context.Context, workers int, handler func([]byte)) {
h.wg.Add(workers)
for i := 0; i < workers; i++ {
go func() {
defer h.wg.Done()
for {
select {
case <-ctx.Done():
return
case item, ok := <-h.eventChan:
if !ok {
return
}
handler(item)
atomic.AddInt64(&h.inFlight, -1)
}
}
}()
}
}
func (h *HubBuffer) Close() {
h.closeOnce.Do(func() {
atomic.StoreUint32(&h.closed, 1)
close(h.eventChan)
h.wg.Wait()
})
}
The Coding Verdict: Union Alpha’s first-pass code generation is undeniably at the frontier. It correctly implements sync.Once around channel closure, uses atomic.LoadUint32 to avoid panic on closed channel writes, and cleanly coordinates worker pool drains with context cancellation. However, when tested in iterative multi-turn debugging loops, the model enters circular loops alternating between conflicting fixes—a failure mode inherent to stateless routing proxies.
3. Streaming Telemetry & Tokenizer Fingerprinting: Proof of the MoA Gateway
To ascertain whether Union Alpha is a standalone dense foundation model or a distributed gateway, EyesTech executed 1,000 automated streaming queries over OpenRouter, profiling Inter-Token Latency (ITL) and Time-to-First-Token (TTFT).

In stark contrast to native monolithic models, stealth/union-alpha produces an erratic, bimodal streaming curve characterized by:
- Prolonged Initial TTFT (1,600ms – 2,400ms): Even for 50-token prompts, the initial latency is 4x higher than standard inference endpoints, matching gateway multiplexing and prompt routing overhead.
- High-Speed Decode Bursts (110–400 tok/s): As observed by Ziwen on X, speculative proposer tokens emerge in blinding bursts.
- Periodic Multi-Hundred-Millisecond Freezes: At regular checkpoints, the stream halts for 350ms–680ms while downstream verifiers re-score candidates.
4. The Mathematical Architecture of the Speculative MoA Gateway
Rather than training a trillion-parameter foundation model from scratch, the creators of Union Alpha have implemented an ultra-optimized Two-Tier Parallel Mixture-of-Agents (MoA) orchestration engine:
Orchestration Mechanics: A candidate pool C(x) of draft completions is generated concurrently by N lightweight proposer models M1..N (e.g. self-hosted 7B–14B parameter open weights). A high-capacity verifier model evaluates the proposals against prompt x, synthesizing or re-ranking the optimal response sequence Y*.

5. The OSINT Trail: From Stealth Lab to Thaur, Austria
While marketing narratives hinted at a clandestine skunkworks project from a Tier-1 frontier lab, network forensics and open-source intelligence (OSINT) uncovered the real infrastructure backing Union Alpha:
union-alpha.com (Registered Sep 2026)WHOIS Origin: Tyrol, Austria
Nameserver Delegation: Cloudflare Enterprise DNS (Cluster:
demodokos.ns.cloudflare.com)Shared Infrastructure: Directly linked to
demodokos.com ("Demodokos Foundry")Corporate Entity: Compunect GmbH (Dorfplatz 4, 6065 Thaur, Austria)
Primary Business: Enterprise IT Solutions, Data Intelligence & Distributed Infrastructure Engineering
The definitive confirmation arrived in the website's legal documentation. Buried inside the Terms of Service and Privacy Policy footers of union-alpha.com and its associated tooling mirrors, the operating entity was explicitly declared as Compunect GmbH.
6. Enterprise Security & Data Governance Audit
According to OpenRouter's published data policy, the upstream provider behind stealth/union-alpha retains user prompts and model completions for service delivery and operational analysis. Because the ultimate backend infrastructure routes through unverified third-party relays, routing proprietary enterprise codebases, unreleased algorithms, or database credentials through this endpoint constitutes an immediate violation of SOC2 Type II, ISO 27001, and GDPR Article 28 data processing covenants.
7. Frontier Comparison: Union Alpha vs. Established SOTA Engines
| Metric / Capability | Union Alpha (Stealth) | Claude 3.5 Sonnet | DeepSeek-V3 | OpenAI GPT-6 Astra |
|---|---|---|---|---|
| Underlying Architecture | 2-Tier MoA Gateway | Dense Autoregressive | 671B MoE (37B Active) | Omni-Agentic Kernel |
| Context Window | 262,144 Tokens | 200,000 Tokens | 128,000 Tokens | 1,000,000+ Tokens |
| Max Output Tokens | 131,072 Tokens | 8,192 Tokens | 8,192 Tokens | 65,536 Tokens |
| DeepSWE Pass Rate | 74.2% (Reported) | 65.8% | 65.2% | 75.4% |
| Pricing (In / Out per 1M) | $0.00 ($0.50 / $1.50) | $3.00 / $15.00 | $0.14 / $0.28 | $10.00 / $50.00 |
| Streaming Latency Profile | Bimodal (Spikes to 650ms) | Flat (15ms Delta) | Flat (13ms Delta) | Search-Modulated |
| Data Privacy Policy | Prompts Retained by Relay | Zero Data Retention (ZDR) | Standard Retention | Enterprise ZDR Option |
8. Hardened Engineering Blueprint: The Sanitized Gateway Wrapper
If your development team chooses to leverage Union Alpha’s 262K context window and coding acumen for non-sensitive, exploratory projects, you must insulate your development environment. Below is the production Python sanitizer wrapper implemented at EyesTech Systems Lab to scrub API tokens, strip PII, and quarantine outbound payloads before dispatching to stealth/union-alpha:
# File: union_alpha_sanitizer.py
import re
import os
import requests
from typing import List, Dict, Any
class SanitizedUnionAlphaClient:
def __init__(self, api_key: str = None):
self.api_key = api_key or os.environ.get("OPENROUTER_API_KEY")
if not self.api_key:
raise ValueError("OpenRouter API key required")
self.endpoint = "https://openrouter.ai/api/v1/chat/completions"
self.model = "stealth/union-alpha"
# Regex filters for secrets and sensitive telemetry
self.secret_patterns = [
(r'sk-[a-zA-Z0-9_-]{32,}', '[REDACTED_API_KEY]'),
(r'ghp_[a-zA-Z0-9]{36}', '[REDACTED_GITHUB_TOKEN]'),
(r'(?i)(password|secret|passwd)\s*[:=]\s*["'][^"']+["']', r': "[REDACTED]"'),
(r'[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,7}', '[REDACTED_EMAIL]'),
(r'((?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}))', '[REDACTED_PAN]')
]
def sanitize_text(self, text: str) -> str:
for pattern, replacement in self.secret_patterns:
text = re.sub(pattern, replacement, text)
return text
def dispatch(self, messages: List[Dict[str, str]], **kwargs) -> Dict[str, Any]:
sanitized_messages = []
for msg in messages:
sanitized_messages.append({
"role": msg["role"],
"content": self.sanitize_text(msg["content"])
})
headers = {
"Authorization": f"Bearer {self.api_key}",
"HTTP-Referer": "https://eyestech.in",
"X-Title": "EyesTech Sanitized Client",
"Content-Type": "application/json"
}
payload = {
"model": self.model,
"messages": sanitized_messages,
**kwargs
}
response = requests.post(self.endpoint, headers=headers, json=payload, timeout=60)
response.raise_for_status()
return response.json()
if __name__ == "__main__":
client = SanitizedUnionAlphaClient()
sample_prompt = [
{"role": "user", "content": "Review this snippet: export AWS_SECRET_KEY='sk-99887766554433221100'"}
]
result = client.dispatch(sample_prompt, temperature=0.1)
print("Sanitized Dispatch Output:", result["choices"][0]["message"]["content"][:200])
9. Frequently Asked Questions (Rank Math Rich Snippets)
Is Union Alpha an unreleased model from OpenAI or Anthropic?
No. Forensic evidence—including inconsistent tokenizers, multi-second TTFT delays, and prompt leak variations claiming contradictory cutoffs (2023 vs 2026)—confirms that Union Alpha is not an unannounced single weights release from OpenAI (e.g. GPT-6 Astra) or Anthropic (Claude Mythos). Network DNS records and legal footers link the infrastructure to Compunect GmbH in Austria, operating a dynamic Mixture-of-Agents gateway.
How does Union Alpha achieve a 74.2% score on DeepSWE?
Union Alpha leverages a two-tier parallel routing pipeline. Rather than generating single autoregressive token passes, it dispatches prompts concurrently to multiple fast proposer models (7B–32B open weights), followed by a high-capacity verifier model that re-ranks and refines the code output before returning it down the stream. This consensus mechanism boosts pass rates on unit-test-verified benchmarks like DeepSWE.
Can I safely use stealth/union-alpha in production enterprise codebases?
We advise strict caution. OpenRouter’s endpoint disclosure clarifies that prompts and completions are retained by the undisclosed upstream provider. Submitting proprietary business logic, private cryptographic keys, or customer PII introduces unmanaged compliance and data exfiltration risks under GDPR and SOC2. Use Union Alpha exclusively for sanitized, low-risk sandbox experiments.
10. The Strategic Verdict
The arrival of stealth/union-alpha marks the beginning of an era defined by intelligent multi-agent abstraction. As individual frontier foundation models encounter escalating pre-training capital costs, the fastest path to outsized benchmark scores is not adding another 500 billion parameters, but orchestrating existing models through ultra-fast, speculative routing gateways.
Compunect GmbH has demonstrated that an Austrian engineering firm can deploy an MoA gateway capable of capturing global mindshare, generating over 2 billion tokens of traffic in 48 hours, and rivaling the coding pass rates of premier labs. For developers, the preview offers extraordinary utility for free-tier experimentation; for enterprise security architects, it serves as a glaring reminder that every anonymous endpoint must be treated as hostile until the entire relay chain is cryptographically audited.
