Autonomous Local Development#

Llamatik Code 1.8.0 ships Autonomous Local Development — a mission-driven coding environment. You describe a task, the agent plans it, applies patches, and verifies the result — entirely on your machine.

Core guarantee: your source code never leaves your device.


What is a local coding mission?#

A mission is a discrete, goal-oriented task you hand to the agent:

  • Fix this build failure
  • Refactor this module without changing behavior
  • Generate tests for the current file
  • Review the current git changes before committing
  • Implement this feature end-to-end

The agent runs a structured workflow for each mission:

  1. Gather project context (git state, code health, architecture)
  2. Classify the mission type and detect risks
  3. Create a plan with explicit verification steps and rollback instructions
  4. Apply small, reviewable patches
  5. Show a diff before every multi-file write
  6. Verify the result (build, tests, or IDE diagnostics)
  7. Produce an audit report

Starting a mission#

From the tool window:

Type a mission description in the chat input and press Enter. Mission-aware phrasing like “fix the build failure”, “refactor the auth module”, or “generate tests for UserService” triggers the full enterprise workflow automatically.

From the editor right-click menu:

Right-click in any editor → Llamatik Code → Autonomous Local Development → choose an action.

Available context actions:

ActionDescription
Enterprise Pair ProgrammerFull mission session on the current file or project
Review Current ChangesCode review of uncommitted git changes
Fix Build FailureAnalyse and repair the last build failure
Generate TestsProduce tests for the current file
Explain ArchitectureDescribe responsibilities and dependencies of the current module
Safe RefactorRefactor selected code or the current file without behavior change
Implement FeatureGuided feature implementation with plan and diff

Mission types#

TypeTrigger phrases
CODE_REVIEWreview, audit, check quality, evaluate
REFACTORrefactor, restructure, extract, clean up
BUG_FIXfix, bug, error, broken, not working
FEATURE_IMPLEMENTATIONimplement, feature, add support, create new
TEST_GENERATIONtest, coverage, spec, unit test
DOCUMENTATIONdocument, javadoc, kdoc, explain this
BUILD_FAILURE_REPAIRbuild fail, compile error, gradle fail, maven fail
ARCHITECTURE_EXPLANATIONarchitecture, design, structure, explain module
DEPENDENCY_UPDATEdependency, upgrade, update library
SECURITY_AUDITsecurity, vulnerability, owasp, injection
PERFORMANCE_ANALYSISperformance, slow, optimise, profil

Free vs Pro scope#

CapabilityFreePro
Current-file missionsYesYes
Selection-scoped missionsYesYes
Git-diff missionsYesYes
Directory / module missionsYes
Watched-area missionsYes
Before-commit enterprise reviewYes
Build/test automation in missionsYes

Settings#

Settings live at Settings → Llamatik Code → Autonomous Local Development.

See Settings Reference for the full list of options.