Skip to content

Releases: Lora-Technologies/LoraCode

v0.1.2 Release Notes

05 Jan 00:27

Choose a tag to compare

Lora Code v0.1.2 Release Notes

🚀 New Features

💾 Checkpoint System

  • Save and restore session states
  • /checkpoint-save [name] - Save current session
  • /checkpoint-load <name> - Restore saved session
  • /checkpoints or /cp - List all checkpoints
  • /checkpoint delete <name> - Delete a checkpoint
  • /checkpoint info <name> - Show checkpoint details
  • --load-checkpoint - Load checkpoint at startup
  • --save-on-exit - Auto-save on exit
  • --checkpoint-dir - Custom checkpoint directory

🪝 Hooks System

  • Custom automation triggers for various events
  • BeforeTool - Execute before tool runs
  • AfterTool - Execute after tool completes
  • /hooks - List all registered hooks
  • /hooks enable <name> - Enable a hook
  • /hooks disable <name> - Disable a hook
  • /hooks test <name> - Test a hook
  • Configure via .loracode/settings.json

📖 Comprehensive Documentation

  • Complete README rewrite
  • All CLI arguments documented
  • 40+ in-session commands documented

📝 Hooks Configuration Example

{
  "hooks": {
    "BeforeTool": [
      {
        "name": "pre-check",
        "command": "python validate.py",
        "description": "Validate before changes",
        "timeout": 5000
      }
    ]
  }
}

⬆️ Upgrade

pip install --upgrade loracode