Infinibay/infinidev

AI agent coder for small LLMs

4

stars

458

commits

Python

primary language

Sep 7, 2026

updated

README

Infinidev

PyPI Python Tests License: MIT

Infinidev is an autonomous AI coding agent for the terminal. It can inspect a repository, plan changes, edit code, run commands and tests, review its work, and keep project knowledge across sessions.

It works with hosted models through LiteLLM and with local models through Ollama.

An optional React web workspace provides conversations, named teams and tickets, shared notes, live process output, file diffs, findings, model settings and usage. It drives the same harness as the terminal. See Web workspace for setup, development and the current scope.

Infinidev TUI

Install

Python 3.11 or newer is required. The recommended installation uses uv, which keeps Infinidev in an isolated tool environment:

uv tool install infinidev

Upgrade later with:

uv tool upgrade infinidev

You can also install it with pipx:

pipx install infinidev

Start

Run Infinidev from the project you want it to work on:

cd path/to/your/project
infinidev

Use /models manage to choose a provider and model, or /settings to edit the project configuration. By default, Infinidev expects Ollama at http://localhost:11434.

Useful command-line modes:

infinidev --no-tui                 # text-only interface
infinidev -p "explain this repo"   # one prompt, then exit
infinidev --continue               # resume the latest local session
infinidev --resume                 # choose, rename, or delete a previous session

Inside either interface, use /session <name> to give the current session a durable name. The --resume picker shows all sessions registered in the active workspace database (local-workspace entries first), including their names and estimated storage; enter rename NUMBER NAME or delete NUMBER to manage an entry before resuming it.

Use /prompts to list the optional prompt capabilities in your shared catalog, narrow that list with /prompts search <term>, and inspect a guide before activation with /prompts show <name>. Then use /prompts enable <name> or /prompts disable <name> to change one for future tasks. Use /prompts reset <name> to remove your override and inherit the catalog or project state again. Shared profiles live in ~/.infinidev/prompts/; a project's .infinidev/prompts.json can override them. See Prompt profiles for the catalog format and precedence rules.

What it includes

  • A live terminal UI with task progress, diffs, files, logs, and context usage.
  • Live output tabs for background commands through /ps or /bg.
  • Research teams with named specialists, visible roles, shared notes, and direct messages.
  • Plan-execute-summarize and staged execution for long, multi-step tasks.
  • File, shell, Git, web, code-intelligence, knowledge, and image tools.
  • Persistent, searchable working memory with recoverable tool evidence.
  • Project and user-level prompt profiles, with opt-in workflow guides managed through /prompts.
  • Model capability detection and native or text-based tool calling.
  • MCP server support; Ken is used for semantic project context when available.
  • Permission checks, deterministic completion gates, tests, and post-change review.
  • Image attachments, terminal image viewing, and opt-in image generation.

Essential commands

CommandPurpose
/helpShow commands and keybindings
/models manageChoose the active provider and model
/settingsView or change project settings
/engineSelect the task execution engine
/plan <task>Review a plan before execution
/mcpShow MCP server health
/findingsBrowse saved project knowledge
/ps or /bgSelect a background task and open its live output
/usageShow usage and available quota information for the selected provider
/reindexRebuild the local code index
/clearClear the transcript
/exitQuit

How it works

request
  -> principal agent
  -> direct work or tickets and delegated specialists
  -> evidence, tests, and objective checks
  -> principal review
  -> result

Infinidev stores settings, history, logs, and its SQLite knowledge database in .infinidev/ inside the current project. Environment variables use the INFINIDEV_ prefix. Secrets and generated runtime state should not be committed.

Council transcripts shown by /agents are process-local and retain the 100 most recent completed councils by default, while always preserving active councils. Set COUNCIL_HISTORY_LIMIT in .infinidev/settings.json (or INFINIDEV_COUNCIL_HISTORY_LIMIT) to a non-negative number; use 0 to discard a transcript after its completion event or null for unlimited retention.

See Background tasks for output tabs and shortcuts, Research teams for delegation and shared notes, and Provider usage for quota sources and optional billing credentials.

Development

git clone https://github.com/Infinibay/infinidev.git
cd infinidev
uv sync
uv run pytest
uv run infinidev

Architecture and subsystem documentation live in docs/. Contributor guidance is in AGENTS.md.

License

The Infinidev software and documentation are available under the MIT License. The manually authored task-policy annotations in data/task-policy-reviews/ are a separately licensed data component; see their data license and attribution notice.

Contributors

anga

458 commits

Infinibay/infinidev

AI agent coder for small LLMs

4

stars

458

commits

Python

primary language

Sep 7, 2026

updated

README

Infinidev

PyPI Python Tests License: MIT

Infinidev is an autonomous AI coding agent for the terminal. It can inspect a repository, plan changes, edit code, run commands and tests, review its work, and keep project knowledge across sessions.

It works with hosted models through LiteLLM and with local models through Ollama.

An optional React web workspace provides conversations, named teams and tickets, shared notes, live process output, file diffs, findings, model settings and usage. It drives the same harness as the terminal. See Web workspace for setup, development and the current scope.

Infinidev TUI

Install

Python 3.11 or newer is required. The recommended installation uses uv, which keeps Infinidev in an isolated tool environment:

uv tool install infinidev

Upgrade later with:

uv tool upgrade infinidev

You can also install it with pipx:

pipx install infinidev

Start

Run Infinidev from the project you want it to work on:

cd path/to/your/project
infinidev

Use /models manage to choose a provider and model, or /settings to edit the project configuration. By default, Infinidev expects Ollama at http://localhost:11434.

Useful command-line modes:

infinidev --no-tui                 # text-only interface
infinidev -p "explain this repo"   # one prompt, then exit
infinidev --continue               # resume the latest local session
infinidev --resume                 # choose, rename, or delete a previous session

Inside either interface, use /session <name> to give the current session a durable name. The --resume picker shows all sessions registered in the active workspace database (local-workspace entries first), including their names and estimated storage; enter rename NUMBER NAME or delete NUMBER to manage an entry before resuming it.

Use /prompts to list the optional prompt capabilities in your shared catalog, narrow that list with /prompts search <term>, and inspect a guide before activation with /prompts show <name>. Then use /prompts enable <name> or /prompts disable <name> to change one for future tasks. Use /prompts reset <name> to remove your override and inherit the catalog or project state again. Shared profiles live in ~/.infinidev/prompts/; a project's .infinidev/prompts.json can override them. See Prompt profiles for the catalog format and precedence rules.

What it includes

  • A live terminal UI with task progress, diffs, files, logs, and context usage.
  • Live output tabs for background commands through /ps or /bg.
  • Research teams with named specialists, visible roles, shared notes, and direct messages.
  • Plan-execute-summarize and staged execution for long, multi-step tasks.
  • File, shell, Git, web, code-intelligence, knowledge, and image tools.
  • Persistent, searchable working memory with recoverable tool evidence.
  • Project and user-level prompt profiles, with opt-in workflow guides managed through /prompts.
  • Model capability detection and native or text-based tool calling.
  • MCP server support; Ken is used for semantic project context when available.
  • Permission checks, deterministic completion gates, tests, and post-change review.
  • Image attachments, terminal image viewing, and opt-in image generation.

Essential commands

CommandPurpose
/helpShow commands and keybindings
/models manageChoose the active provider and model
/settingsView or change project settings
/engineSelect the task execution engine
/plan <task>Review a plan before execution
/mcpShow MCP server health
/findingsBrowse saved project knowledge
/ps or /bgSelect a background task and open its live output
/usageShow usage and available quota information for the selected provider
/reindexRebuild the local code index
/clearClear the transcript
/exitQuit

How it works

request
  -> principal agent
  -> direct work or tickets and delegated specialists
  -> evidence, tests, and objective checks
  -> principal review
  -> result

Infinidev stores settings, history, logs, and its SQLite knowledge database in .infinidev/ inside the current project. Environment variables use the INFINIDEV_ prefix. Secrets and generated runtime state should not be committed.

Council transcripts shown by /agents are process-local and retain the 100 most recent completed councils by default, while always preserving active councils. Set COUNCIL_HISTORY_LIMIT in .infinidev/settings.json (or INFINIDEV_COUNCIL_HISTORY_LIMIT) to a non-negative number; use 0 to discard a transcript after its completion event or null for unlimited retention.

See Background tasks for output tabs and shortcuts, Research teams for delegation and shared notes, and Provider usage for quota sources and optional billing credentials.

Development

git clone https://github.com/Infinibay/infinidev.git
cd infinidev
uv sync
uv run pytest
uv run infinidev

Architecture and subsystem documentation live in docs/. Contributor guidance is in AGENTS.md.

License

The Infinidev software and documentation are available under the MIT License. The manually authored task-policy annotations in data/task-policy-reviews/ are a separately licensed data component; see their data license and attribution notice.

Contributors

anga

458 commits

Languages

Python

98.1%

TypeScript

1.2%