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

Tool Entry point Description
Shell shell Run any shell command with configurable timeout, cwd, and stdin
RunPython run_python Execute a Python snippet in a subprocess
ReadFile read_file Read a file, optionally with line range
WriteFile write_file Write or overwrite a file
PatchFile patch_file Apply a targeted string replacement (old → new)
ListFiles list_files List files matching a glob pattern

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 ReadFile
from axio_tools_local.write_file import WriteFile
from axio_tools_local.list_files import ListFiles
from axio.tool import Tool

tools = [
    Tool(name="shell",      description=Shell.__doc__ or "",     handler=Shell),
    Tool(name="read_file",  description=ReadFile.__doc__ or "",  handler=ReadFile),
    Tool(name="write_file", description=WriteFile.__doc__ or "", handler=WriteFile),
    Tool(name="list_files", description=ListFiles.__doc__ or "", handler=ListFiles),
]

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, ReadFile, WriteFile, PatchFile, ListFiles, RunPython appear automatically

Tool details

Shell

Shell(command="git log --oneline -5", cwd="/path/to/repo", timeout=30)
Shell(command="python -m pytest", stdin=None)

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

PatchFile

Applies an exact string replacement — safe for surgical edits without rewriting the whole file:

PatchFile(
    file_path="src/main.py",
    from_line=5,
    to_line=5,
    content="def foo(x: int) -> int:",
)

ListFiles

ListFiles(pattern="src/**/*.py")
ListFiles(pattern="tests/test_*.py")

RunPython

RunPython(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:RunPython"
write_file = "axio_tools_local.write_file:WriteFile"
patch_file = "axio_tools_local.patch_file:PatchFile"
read_file  = "axio_tools_local.read_file:ReadFile"
list_files = "axio_tools_local.list_files:ListFiles"

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.5.1.tar.gz (39.1 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.5.1-py3-none-any.whl (9.1 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: axio_tools_local-0.5.1.tar.gz
  • Upload date:
  • Size: 39.1 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.5.1.tar.gz
Algorithm Hash digest
SHA256 e05a2e503617f1cfa7f83584e8a777d823a2b2087a9e3e77c2d35b04c26daf96
MD5 2d95f6c98345294cb19648936e2f60e3
BLAKE2b-256 771ceedbfbfa5850fa176e92f137df6fc02e0a9262783017381eb504eeb14054

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on axio-agent/monorepo

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.5.1-py3-none-any.whl.

File metadata

File hashes

Hashes for axio_tools_local-0.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 33fb264eba29d5100924ef8a23fe7ab78fc01dfdb7c7420c43b457513b4a2da3
MD5 065ce1849a55286fd4749d501a1b9aad
BLAKE2b-256 83ee86fe9ea2b0675fac2ffc6e30b91d98f299c0a4c8346adff7770f64b9514b

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on axio-agent/monorepo

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