Overview

AI code assistant that runs in your terminal. Built to be a drop-in replacement for Claude Code with enterprise features.


What it does

AgentiCode is what happens when you take Claude Code, add multi-provider support, and wire it up to enterprise infrastructure. You get the same agentic coding experience, but it works with Ollama locally or routes through AgenticWork's API.


Install

npm install -g @agentic-work/agenticode

Requires Node.js 20+.


Usage

# Interactive session
agenticode

# Use a specific model
agenticode -m gpt-4o

# One-off prompt
agenticode "explain this code"

# Skip all confirmations (careful with this)
agenticode --yolo "fix the bug in utils.ts"

Features

Terminal UI

  • React Ink interface with live streaming

  • Syntax highlighting for code blocks

  • Token counter in the status bar

  • Multi-line input with Shift+Enter

14 built-in tools

  • File ops: read, write, edit, list, delete

  • Shell: command execution with sandboxing

  • Search: grep with regex, glob patterns

  • Web: search and fetch pages

  • Background tasks for long-running processes

  • Screenshot and image viewing

Session management

  • Sessions persist via Redis/PostgreSQL

  • Context compaction when things get long

  • Vector search for memory retrieval

  • Resume previous conversations

Security

  • Human-in-the-loop confirmations by default

  • Dangerous command blocking

  • File path validation


Provider modes

Local with Ollama

AgenticWork API

Auto-detect (default)

It'll find what's available and use it.


Docs

Last updated