Skip to content

Latest commit

Β 

History

History
155 lines (111 loc) Β· 5.49 KB

File metadata and controls

155 lines (111 loc) Β· 5.49 KB

Personal AI Infrastructure β€” Coding Module

Version: v1.2.3 | Status: Active | Last Updated: March 2026

Overview

The Coding module is a comprehensive toolkit for code execution, sandboxing, review, monitoring, and debugging. It provides 5 submodules with 40+ exports covering the full lifecycle of code β€” from execution in sandboxed environments to quality review and automated debugging. This is a Core Layer module that PAI agents use extensively during BUILD, EXECUTE, and VERIFY phases.

PAI Capabilities

Code Execution

Execute code in multiple languages with structured output:

from codomyrmex.coding import execute_code, SUPPORTED_LANGUAGES, validate_language

# Execute Python code
result = execute_code("python", "print('Hello!')")
# Returns: {"stdout": "Hello!", "stderr": "", "exit_code": 0}

# Check available languages
print(SUPPORTED_LANGUAGES)  # ["python", "javascript", "bash", ...]

Sandboxed Execution

Run code with resource limits and container isolation:

from codomyrmex.coding import (
    ExecutionLimits, execute_with_limits,
    run_code_in_docker, check_docker_available,
    sandbox_process_isolation,
)

# Execute with resource limits
limits = ExecutionLimits(timeout=30, memory_mb=512)
result = execute_with_limits("python", code, limits)

# Docker-based isolation (if available)
if check_docker_available():
    result = run_code_in_docker("python", code)

Code Review

Analyze code quality with the review submodule:

from codomyrmex.coding import (
    CodeReviewer, QualityDashboard, PyscnAnalyzer,
    analyze_file, analyze_project, check_quality_gates,
    generate_report,
)

# Review a file
reviewer = CodeReviewer("./src")
issues = reviewer.analyze_file("module.py")

# Check quality gates
gates = check_quality_gates("./src")
# Returns QualityGateResult with pass/fail and details

# Generate HTML/JSON report
report = generate_report("./src", format="html")

Execution Monitoring

Track execution metrics and resource usage:

from codomyrmex.coding import ExecutionMonitor, MetricsCollector, ResourceMonitor

monitor = ExecutionMonitor()
# Tracks execution time, memory, CPU usage
# Integrates with execution submodule

Automated Debugging

Analyze errors and generate fixes:

from codomyrmex.coding import Debugger, ErrorAnalyzer, PatchGenerator, FixVerifier

debugger = Debugger()
diagnosis = debugger.debug(code, stdout, stderr, exit_code)
# Returns ErrorDiagnosis with root cause and suggested fixes

# Generate patches
generator = PatchGenerator()
patch = generator.generate(code, diagnosis)

# Verify fixes
verifier = FixVerifier()
result = verifier.verify(patch)

CLI Commands

codomyrmex coding languages            # List supported execution languages
codomyrmex coding execute [lang] [code] # Execute code snippet

Submodules

Submodule Key Classes Purpose
execution execute_code, SUPPORTED_LANGUAGES, validate_language, validate_session_id Multi-language code execution
sandbox ExecutionLimits, execute_with_limits, run_code_in_docker, sandbox_process_isolation Container isolation and resource limits
review CodeReviewer, QualityDashboard, PyscnAnalyzer, analyze_file, analyze_project, check_quality_gates Static analysis and code quality
monitoring ExecutionMonitor, MetricsCollector, ResourceMonitor Execution metrics and resource tracking
debugging Debugger, ErrorAnalyzer, PatchGenerator, FixVerifier Automated error analysis and fix generation

Key Data Types

Type Purpose
AnalysisResult Individual analysis finding
AnalysisSummary Aggregate analysis summary
CodeMetrics Quantitative code quality metrics
QualityGateResult Pass/fail result for quality checks
ErrorDiagnosis Root cause analysis of an error
Patch Code fix patch
VerificationResult Result of verifying a patch
ArchitectureViolation Detected architectural issue
DeadCodeFinding Detected dead/unreachable code
ComplexityReductionSuggestion Suggestion to reduce complexity

MCP Integration

The MCP server's run_command tool provides shell command execution. The analyze_python_file tool uses code analysis capabilities from this module's review submodule for Python AST inspection.

PAI Algorithm Phase Mapping

Phase Coding Module Contribution
BUILD execute_code β€” run code generation; CodeReviewer β€” review generated code
EXECUTE execute_code, execute_with_limits, run_code_in_docker β€” run code in sandboxed environments
VERIFY check_quality_gates, analyze_project β€” validate code quality; FixVerifier β€” verify patches work
LEARN MetricsCollector β€” capture execution metrics; Debugger β€” analyze failures for patterns

Architecture Role

Core Layer β€” Depends on logging_monitoring and environment_setup (Foundation). Provides the code execution and analysis capabilities that agent modules and service modules build upon.

Navigation