Lightweight repo for the Apex Flow agent(s). This repository contains one or more small agent implementations under my-agents/ — currently the apex-agent-app agent.
Demo link: https://f1-service-901927344110.us-central1.run.app
This project hosts a small agent prototype (apex-agent-app) intended to demonstrate an autonomous agent pattern and provide a starting point for development. It includes the agent source, dependency list, and a minimal development guide so you can run, extend, and test the agent locally.
my-agents/apex-agent-app/— the Apex agent implementation (contains__init__.py,agent.py, andrequirements.txt).
mcp-toolbox/— supporting toolbox/configs used by local tooling.README.md— this file.
Note: some folders use hyphens in their names (e.g. my-agents/apex-agent-app). To run Python directly, call the script path instead of importing as a module (or add the folder to PYTHONPATH).
- Create a virtual environment and activate it:
python3 -m venv .venv
source .venv/bin/activate- Install the agent's dependencies:
pip install --upgrade pip
pip install -r my-agents/apex-agent-app/requirements.txt- Run the agent script (run from repository root):
python my-agents/apex-agent-app/agent.pyIf the agent is intended to be run as a package/module you may instead add the agent folder to PYTHONPATH or move it to a valid package name and run with python -m.
- Source for the current agent lives in
my-agents/apex-agent-app/. Openagent.pyto see the implementation and__init__.pyfor package exports. - Keep
requirements.txtnext to the agent implementation to make dependency management explicit per-agent. - Follow usual Python practices: keep secrets out of the repo, use a
.envor the OS environment for keys/config.
Contributions are welcome. A minimal contributing checklist:
- Open an issue to discuss larger changes before implementing.
- Create a feature branch and keep commits focused and small.
- Add tests for new behavior where possible.
- Update this
README.mdif you change usage or add new agent apps.
This repository currently has no license file. Add a LICENSE file (for example MIT) if you intend to make this project open-source.
Maintained by the repository owner. For questions or help, open an issue in this repository.
If you'd like, I can: add a simple test harness, add a GitHub Actions workflow to run tests, or update the README with concrete examples taken from my-agents/apex-agent-app/agent.py (I can inspect the file and surface usage examples). Which would you like next?