JackCode now uses a simple two-model architecture:
- Qwen 3.6 for all development work
- GPT-5.4 for audit and final verification
The legacy reasoner path has been removed.
node dist/cli/index.js chat
node dist/cli/index.js --model qwen-3.6 "implement retry logic"
node dist/cli/index.js --model gpt-5.4 "review pending patch"
node dist/cli/index.js --execute "apply the planned refactor"/model <qwen-3.6|gpt-5.4>
Project config uses two roles only:
{
"developer": "qwen-3.6",
"auditor": "gpt-5.4"
}- Planner prepares an execution brief
- Qwen 3.6 performs development work
- Build/test loop validates implementation
- GPT-5.4 performs final audit when needed