Skip to main content

Core filesystem and execution tools for Axio

Project description

axio-tools-local

PyPI Python License: MIT

Core filesystem and shell tool handlers for axio.

Gives your agent the ability to read, write, and patch files, run shell commands, execute Python snippets, and browse directory trees - the essential toolkit for a coding assistant.

Tools

Function Entry point Description
shell shell Run any shell command with configurable timeout, cwd, and stdin
run_python run_python Execute a Python snippet in a subprocess
read_file read_file Read a file, optionally with line range
write_file write_file Write or overwrite a file
patch_file patch_file Replace a range of lines in an existing file (1-indexed, both ends inclusive)
list_files list_files List files in a directory

Installation

pip install axio-tools-local

Usage

Standalone (without TUI)

from axio.agent import Agent
from axio.context import MemoryContextStore
from axio_transport_openai import OpenAITransport, OPENAI_MODELS
from axio_tools_local.shell import shell
from axio_tools_local.read_file import read_file
from axio_tools_local.write_file import write_file
from axio_tools_local.list_files import list_files
from axio.tool import Tool

tools = [
    Tool(name="shell",      handler=shell),
    Tool(name="read_file",  handler=read_file),
    Tool(name="write_file", handler=write_file),
    Tool(name="list_files", handler=list_files),
]

agent = Agent(
    system="You are a coding assistant with access to the local filesystem.",
    tools=tools,
    transport=OpenAITransport(api_key="sk-...", model=OPENAI_MODELS["gpt-4o"]),
)

Via plugin (with axio-tui)

pip install "axio-tui[local]"
uv run axio   # shell, read_file, write_file, patch_file, list_files, run_python appear automatically

Tool details

shell

import asyncio
from axio_tools_local.shell import shell

asyncio.run(shell(command="echo hello", cwd=".", timeout=30))
asyncio.run(shell(command="cat", stdin="hello"))

Parameters: command: str, timeout: int = 5, cwd: str = ".", stdin: str | None = None

patch_file

Replaces a range of lines in an existing file - safe for surgical edits without rewriting the whole file. Lines are 1-indexed and both from_line and to_line are inclusive. To insert without deleting any existing lines, set to_line = from_line - 1. Always read the file first with line_numbers=True to get correct line numbers.

import asyncio
import tempfile, os
from axio_tools_local.patch_file import patch_file

with tempfile.NamedTemporaryFile(mode="w", suffix=".py", delete=False) as f:
    f.write("line1\nline2\nline3\n")
    name = f.name

# Replace line 2
asyncio.run(patch_file(file_path=name, from_line=2, to_line=2, content="replaced\n"))
os.unlink(name)

Parameters: file_path: str, from_line: int, to_line: int, content: str, mode: int = 0o644

list_files

import asyncio
from axio_tools_local.list_files import list_files

asyncio.run(list_files(directory="."))

run_python

import asyncio
from axio_tools_local.run_python import run_python

asyncio.run(run_python(code="import sys; print(sys.version)"))

Plugin registration

[project.entry-points."axio.tools"]
shell      = "axio_tools_local.shell:shell"
run_python = "axio_tools_local.run_python:run_python"
write_file = "axio_tools_local.write_file:write_file"
patch_file = "axio_tools_local.patch_file:patch_file"
read_file  = "axio_tools_local.read_file:read_file"
list_files = "axio_tools_local.list_files:list_files"

Part of the axio ecosystem

axio · axio-tools-mcp · axio-tools-docker · axio-tui

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

axio_tools_local-0.9.4.tar.gz (41.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

axio_tools_local-0.9.4-py3-none-any.whl (10.9 kB view details)

Uploaded Python 3

File details

Details for the file axio_tools_local-0.9.4.tar.gz.

File metadata

  • Download URL: axio_tools_local-0.9.4.tar.gz
  • Upload date:
  • Size: 41.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for axio_tools_local-0.9.4.tar.gz
Algorithm Hash digest
SHA256 6c4706459f61254f3c07f58e3a8e1e6b36a2e3e35693656e2b1f6e8912ae5028
MD5 54855da0a7b64b17e72995c8bffc95e4
BLAKE2b-256 a52611f2faf921174bc99c4aba4231c8f54c3e18d4ff3473f0db571216ff9552

See more details on using hashes here.

Provenance

The following attestation bundles were made for axio_tools_local-0.9.4.tar.gz:

Publisher: publish.yml on mosquito/axio-agent

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file axio_tools_local-0.9.4-py3-none-any.whl.

File metadata

File hashes

Hashes for axio_tools_local-0.9.4-py3-none-any.whl
Algorithm Hash digest
SHA256 37462c7ec7dd9fc34be3a14217d2a59770dbe87e65e1dd7ec37dfbaf37213018
MD5 280181c2e51d2466b10e0fb2666c7ff6
BLAKE2b-256 4a1ea3ec5df83fdff51ba3e58beb5d9eb15a44296614285e2f855a971859f1d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for axio_tools_local-0.9.4-py3-none-any.whl:

Publisher: publish.yml on mosquito/axio-agent

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page