1 points | by illdynamics 7 hours ago ago
1 comments
Mini quickstart
Target: Linux / macOS / Windows with Docker installed and running.
1. Get the code
git clone https://github.com/illdynamics/qonqrete
cd qonqrete
chmod +x qonqrete.sh
2. Set API keys for the providers you want to use (only these are required):
export OPENAI_API_KEY='...'
export GOOGLE_API_KEY='...' # or GEMINI_API_KEY
export ANTHROPIC_API_KEY='...'
export DEEPSEEK_API_KEY='...'
3. One-time init
./qonqrete.sh init
4. Define your tasQ
Edit `worqspace/tasq.md`, e.g.:
“Create a simple Python web server on port 8080 that returns 'Hello, QonQrete!' for all requests. The script should be executable.”
5. Run a cyQle
# TUI + security-focused agent personas
./qonqrete.sh run --tui --mode security
# Auto mode with fine-grained task breakdown
./qonqrete.sh run --auto --briq-sensitivity 1
# Force user-gated mode
./qonqrete.sh run --user
At a CheQpoint, if you are not running in autonomous mode, you’ll be prompted to [Q]ontinue, [T]weaQ, or [X]Quit.
When running in autonomous mode, press Ctrl+C to stop at any time. Your code will be persisted inside the qodeyard directory.
Full quickstart with more detail: https://github.com/illdynamics/qonqrete/blob/main/QUICKSTART...
Mini quickstart
Target: Linux / macOS / Windows with Docker installed and running.
1. Get the code
git clone https://github.com/illdynamics/qonqrete
cd qonqrete
chmod +x qonqrete.sh
2. Set API keys for the providers you want to use (only these are required):
export OPENAI_API_KEY='...'
export GOOGLE_API_KEY='...' # or GEMINI_API_KEY
export ANTHROPIC_API_KEY='...'
export DEEPSEEK_API_KEY='...'
3. One-time init
./qonqrete.sh init
4. Define your tasQ
Edit `worqspace/tasq.md`, e.g.:
“Create a simple Python web server on port 8080 that returns 'Hello, QonQrete!' for all requests. The script should be executable.”
5. Run a cyQle
# TUI + security-focused agent personas
./qonqrete.sh run --tui --mode security
# Auto mode with fine-grained task breakdown
./qonqrete.sh run --auto --briq-sensitivity 1
# Force user-gated mode
./qonqrete.sh run --user
At a CheQpoint, if you are not running in autonomous mode, you’ll be prompted to [Q]ontinue, [T]weaQ, or [X]Quit.
When running in autonomous mode, press Ctrl+C to stop at any time. Your code will be persisted inside the qodeyard directory.
Full quickstart with more detail: https://github.com/illdynamics/qonqrete/blob/main/QUICKSTART...