OctaAI

agent
Security Audit
Fail
Health Warn
  • License — License: MIT
  • Description — Repository has a description
  • Active repo — Last push 0 days ago
  • Low visibility — Only 6 GitHub stars
Code Fail
  • rm -rf — Recursive force deletion command in config.example.yaml
  • rm -rf — Recursive force deletion command in config.yaml
Permissions Pass
  • Permissions — No dangerous permissions requested

No AI report is available for this listing yet.

SUMMARY

An autonomous AI agent

README.md

OctaAI - Autonomous Software Engineering Agent

OctaAI is an autonomous AI agent that can design, implement, test, deploy, and manage software projects end-to-end with minimal human intervention.

Features

  • Autonomous Planning & Execution: Takes high-level prompts and breaks them into actionable tasks
  • Multi-LLM Support: Works with OpenAI, Claude, and Ollama (local models)
  • Code Generation & Self-Repair: Generates code, runs tests, and fixes errors automatically
  • Remote Server Management: SSH into servers, install packages, configure services
  • Deployment Automation: Deploy applications, configure Nginx, setup SSL certificates
  • Browser Automation: Control a live Firefox browser — navigate, fill forms, extract data, and automate web workflows via a companion extension
  • Safety First: Configurable allowed paths and command filtering

Architecture

octa-agentd  (Daemon - Agent Runtime)
     |
     +-- LLM Provider Layer (OpenAI/Claude/Ollama)
     +-- Tool Registry
          +-- Filesystem Tools
          +-- Code Execution Tools
          +-- Git Tools
          +-- SSH Tools
          +-- HTTP Tools
          +-- Browser Tools  ←── WebSocket ──► Firefox Extension

Browser Automation

OctaAI can control a live Firefox browser through a companion extension, enabling web scraping, form automation, login flows, and multi-step web workflows.

Quick setup

  1. Build and start the daemon with browser support:
    ./bin/octa-agentd --browser-port 8765
    
  2. Build and load the Firefox extension:
    cd ../octaai-firefox-addon && npm install && npm run build
    # Then in Firefox: about:debugging → Load Temporary Add-on → dist/manifest.json
    
  3. Set a shared token in config.yaml and in the extension's Settings page.

See docs/BROWSER_AUTOMATION.md for the full setup guide and examples/browser/ for usage examples.

Quick Start

Prerequisites

  • Go 1.21+
  • Ollama (optional, for local models)

Installation

# Clone the repository
git clone https://github.com/mparvin/octaai.git
cd octaai

# Build the project
make build

# Or install directly
make install

Configuration

Create a configuration file at ~/.config/octaai/config.yaml:

projects_root: "/home/user/Projects"

llm:
  provider: "ollama"
  model: "qwen2.5:32b"
  base_url: "http://localhost:11434"
  temperature: 0.3

safety:
  allow_paths:
    - "/home/user/Projects"
  deny_commands:
    - "rm -rf /"

Usage

Start the Agent Daemon

octa-agentd

Submit a Goal (Example: LocalWeather Project)

octa-agent goal "Write a python script that gives weather data about all countries in Europe, store in redis, create a Flask site, name it LocalWeather"

Check Goal Status

octa-agent status

Example: Remote Server Deployment

octa-agent goal "IP: 1.2.3.4, Username: root, Password: 123456. Setup nginx, deploy github.com/mparvin/ip9.git, configure SSL for ip9.com"

Project Structure

octaai/
├── cmd/
│   ├── octa-agentd/      # Agent daemon
│   └── octa-agent/       # CLI client
├── pkg/
│   ├── agent/            # Core agent logic
│   ├── config/           # Configuration
│   ├── llm/              # LLM provider abstraction
│   ├── storage/          # State persistence
│   └── tools/            # Tool implementations
├── examples/             # Example workflows
└── docs/                 # Documentation

Development Phases

  • Phase 1: Skeleton & LLM Provider
  • Phase 2: Filesystem & Code Runner Tools
  • Phase 3: Error Loop & Self-Repair
  • Phase 4: SSH Tool
  • Phase 5: Workflow Integration
  • Phase 6: Memory & Vector Store

License

MIT License - See LICENSE file for details

Contributing

Contributions are welcome! Please see CONTRIBUTING.md for guidelines.

Reviews (0)

No results found