Add Grok agent and Liza peer-supervised coding system#12
Open
jonastbrg wants to merge 2 commits intoagentic-box:mainfrom
Open
Add Grok agent and Liza peer-supervised coding system#12jonastbrg wants to merge 2 commits intoagentic-box:mainfrom
jonastbrg wants to merge 2 commits intoagentic-box:mainfrom
Conversation
added 2 commits
January 29, 2026 14:29
Grok Agent: - New GrokRunner with dual model support (reasoning + coding) - GROK_MODEL (xai/grok-4-1-fast-reasoning) for deliberation - GROK_CODE_MODEL (xai/grok-code-fast-1) for coding tasks - start_grok_session / resume_grok_session MCP tools - Grok included as 5th council agent Liza Peer-Supervised Coding: - Based on liza-mas/liza (adversarial vibe coding) - Claude = Coder + Orchestrator (trusted) - Codex/Gemini/Grok = Reviewers (external validation) - liza_start, liza_submit, liza_status, liza_feedback MCP tools - Blackboard state management (.owlex/liza-state.yaml) - Behavioral contracts (no fabrication, no test corruption, etc.) - 19 tests for Liza module Documentation: - CLAUDE.md project documentation - Updated README with all features - skills/liza/liza.md and commands/liza.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds two major features, rebased cleanly on upstream main (no conflicts).
1. Grok Agent
GrokRunnerwith dual model support:GROK_MODEL(default:xai/grok-4-1-fast-reasoning) for reasoning/deliberationGROK_CODE_MODEL(default:xai/grok-code-fast-1) for coding tasksstart_grok_session/resume_grok_sessionMCP toolsXAI_API_KEYenvironment variable2. Liza Peer-Supervised Coding
Based on liza-mas/liza - adversarial vibe coding without the vibes.
Architecture:
MCP Tools:
liza_startliza_submitliza_statusliza_feedbackWorkflow:
Key Principles:
Files Added/Changed
Grok:
owlex/agents/grok.py- Grok agent implementationLiza:
owlex/liza/- Complete Liza module (blackboard, contracts, orchestrator, protocol)tests/test_liza.py- 19 testsDocumentation:
CLAUDE.md,README.md,skills/liza/,commands/liza.mdTest plan
pytest tests/test_liza.py -v)🤖 Generated with Claude Code