Back to news
Dec 30, 2025
5 min read

πŸŽ‰ QonQrete v1.0.0-stable Released! The Production-Ready AI Orchestration Platform

After months of development and 90 validation runs, QonQrete is officially production-ready with bulletproof language detection and enforced briq sensitivity!

πŸŽ‰ QonQrete v1.0.0-stable Released!

December 30, 2025 | Major Release Announcement


After months of intensive development, testing, and 90 validation runs across our WoNQ Matrix testing framework, we’re thrilled to announce the production-ready release of QonQrete v1.0.0-stable!


What is QonQrete?

QonQrete is an open-source, local-first multi-agent AI orchestration system that generates code autonomously through iterative cycles. Think of it as a self-hosted alternative to cloud-based AI coding platforms, giving you complete control over your AI-powered development workflow.

The Three-Agent Pipeline

πŸ“ InstruQtor    β†’    πŸ”¨ ConstruQtor    β†’    πŸ” InspeQtor
   (Planning)            (Building)           (Reviewing)
  1. InstruQtor breaks down your task into manageable β€œbriqs” (building blocks)
  2. ConstruQtor generates the actual code for each briq
  3. InspeQtor reviews the output and identifies issues
  4. Repeat until your project is complete!

What’s New in v1.0.0-stable?

πŸ”₯ Bulletproof Language Detection

The #1 issue reported during beta was the β€œpy file bug” - when using certain AI providers (especially OpenAI), code blocks tagged with shorthand identifiers like ```py would create files literally named β€œpy” instead of being recognized as Python code.

The fix: We expanded our language detection from 23 keywords to 400+ entries, covering:

  • Every variant of every major programming language
  • All GitHub Linguist identifiers
  • Infrastructure-as-Code languages (Terraform, Ansible, Kubernetes, etc.)
  • Generic markers AI models use (code, snippet, output, console)

Result: QonQrete now works flawlessly with ALL major AI providers:

ProviderStatus
βœ… OpenAI GPT-4/GPT-4oNOW BULLETPROOF
βœ… Google GeminiWorks perfectly
βœ… Anthropic ClaudeWorks perfectly
βœ… DeepSeekNOW BULLETPROOF
βœ… QwenNOW BULLETPROOF

🎯 Enforced Briq Sensitivity

Previously, the sensitivity setting was just a β€œhint” to the AI. Now it’s enforced:

SensitivityBriq RangeUse Case
9Exactly 1Single-file scripts
73-5 briqsRecommended default
58-12 briqsComponent-level work
315-20 briqsStandard granularity
040-60 briqsMaximum decomposition

If the AI produces too few briqs, the system retries with a stronger prompt. Too many? It intelligently merges them. Consistency guaranteed.

πŸ†• New CLI Controls

# Override cycle count directly
./qonqrete.sh run -c 6

# Combine with sensitivity
./qonqrete.sh run -b 5 -c 6

Battle-Tested: The WoNQ Matrix

We didn’t just build it and ship it. We validated it.

The WoNQ Matrix is our comprehensive testing framework that runs QonQrete across every combination of sensitivity levels (0-9) and cycle counts (1-9). That’s 90 unique configurations, each tested with a complex real-world project.

Results

╔═══════════════════════════════════════════════════════════════╗
β•‘                 WoNQ MATRIX RESULTS                           β•‘
╠═══════════════════════════════════════════════════════════════╣
β•‘ Total Runs:           90 (100% coverage)                      β•‘
β•‘ Clean Completions:    90 (100% success)                       β•‘
β•‘ Champion Score:       658 (sensitivity=3, cycle=7)            β•‘
β•‘ Global Average:       554                                     β•‘
β•‘ Scores β‰₯600:          35.6%                                   β•‘
β•šβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•

Key Findings

  1. Sweet Spot: Sensitivity 2-4 with 5-7 cycles produces the best results
  2. Champion Config: sens=3, cycle=7 consistently hits peak performance
  3. Avoid: Sensitivity β‰₯7 shows diminishing returns; Cycle 8 is a β€œdeath valley”

Cost Efficiency

QonQrete is designed to be cost-efficient. With our batched review system and local-first architecture:

ConfigurationEstimated Cost per Run
Simple project (sens=7, 4 cycles)~$0.50
Medium project (sens=5, 6 cycles)~$2.00
Complex project (sens=3, 7 cycles)~$4.00

Compare that to manually prompting an AI assistant dozens of times!


Getting Started

Prerequisites

  • Docker
  • An API key from any supported provider (OpenAI, Gemini, Anthropic, DeepSeek, or Qwen)

Quick Start

# Clone the repo
git clone https://github.com/qonqrete/qonqrete.git
cd qonqrete

# Copy env template and add your API keys
cp .env.example .env
nano .env

# Initialize (builds Docker container)
./qonqrete.sh init

# Create your task
echo "Build a REST API with FastAPI..." > worqspace/tasq.md

# Run!
./qonqrete.sh run

For most projects, we recommend:

# config.yaml
briq_sensitivity: 7
auto_cycle_limit: 4

For complex multi-service projects:

briq_sensitivity: 5
auto_cycle_limit: 6

What’s Next?

v1.0.0-stable is a major milestone, but we’re not stopping here! On the roadmap:

  • πŸ”Œ MCP Server Integration - Full Model Context Protocol support
  • 🧠 Enhanced Context Management - Smarter caching and context window optimization
  • πŸ”„ Parallel Briq Execution - Speed up large projects with concurrent building
  • πŸ“Š Built-in Analytics Dashboard - Visualize your build metrics

Found a bug? Have a feature request? Open an issue on GitHub!


Thank You!

A massive thank you to everyone who tested the beta versions, reported bugs, and provided feedback. This release wouldn’t be possible without you.

Now go build something amazing with QonQrete v1.0.0-stable! πŸš€


Changelog Highlights (v0.9.9-beta β†’ v1.0.0-stable)

  • +400 language identifiers for bulletproof code block parsing
  • Enforced briq sensitivity with automatic retry/merge logic
  • New -c/--cyqles CLI flag for cycle override
  • Updated defaults: sensitivity 7, cycles 4
  • 90 validation runs confirming production readiness

QonQrete is open-source software released under the MIT License.

#QonQrete #LocalFirst #AIAgents #OpenSource #v1.0.0