GhostOS Moss is a code-driven Python interface for LLMs, agents, and the GhostOS project. It provides a functional reactive programming model for building AI agents with Python code. Current version 0.3.7, requires Python >=3.10. This package is part of the GhostOS ecosystem and is under active development, with frequent releases on PyPI.
pip install ghostos-mossNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Initialize a Moss instance, create an agent by subclassing MossAgent, and define a respond method.
Ensure all functions decorated with `@moss_function` have a return type annotation, e.g., `def my_action() -> str:`.
Replace `class MyAction(MossAction): ...` with `@moss_function` decorator on a function.
Use `from ghostos.agent import MossAgent`.
No dependency data recorded yet.