├── .gitignore ├── .python-version ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── argo ├── __init__.py ├── agent.py ├── cli.py ├── client.py ├── context.py ├── crew.py ├── declarative.py ├── llm.py ├── prompts.py ├── resolver.py ├── server.py ├── skills.py ├── tools.py └── utils.py ├── docs ├── .no-jekyll ├── README.md └── index.html ├── examples ├── banker.py ├── bruno.yaml ├── coder.py ├── guess.py ├── hello_world.py ├── hello_world.yaml ├── mail.py ├── psychologist.yaml └── wikitrivia.py ├── makefile ├── pyproject.toml └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/README.md -------------------------------------------------------------------------------- /argo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/argo/__init__.py -------------------------------------------------------------------------------- /argo/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/argo/agent.py -------------------------------------------------------------------------------- /argo/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/argo/cli.py -------------------------------------------------------------------------------- /argo/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/argo/client.py -------------------------------------------------------------------------------- /argo/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/argo/context.py -------------------------------------------------------------------------------- /argo/crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/argo/crew.py -------------------------------------------------------------------------------- /argo/declarative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/argo/declarative.py -------------------------------------------------------------------------------- /argo/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/argo/llm.py -------------------------------------------------------------------------------- /argo/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/argo/prompts.py -------------------------------------------------------------------------------- /argo/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/argo/resolver.py -------------------------------------------------------------------------------- /argo/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/argo/server.py -------------------------------------------------------------------------------- /argo/skills.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/argo/skills.py -------------------------------------------------------------------------------- /argo/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/argo/tools.py -------------------------------------------------------------------------------- /argo/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/argo/utils.py -------------------------------------------------------------------------------- /docs/.no-jekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/docs/index.html -------------------------------------------------------------------------------- /examples/banker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/examples/banker.py -------------------------------------------------------------------------------- /examples/bruno.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/examples/bruno.yaml -------------------------------------------------------------------------------- /examples/coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/examples/coder.py -------------------------------------------------------------------------------- /examples/guess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/examples/guess.py -------------------------------------------------------------------------------- /examples/hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/examples/hello_world.py -------------------------------------------------------------------------------- /examples/hello_world.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/examples/hello_world.yaml -------------------------------------------------------------------------------- /examples/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/examples/mail.py -------------------------------------------------------------------------------- /examples/psychologist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/examples/psychologist.yaml -------------------------------------------------------------------------------- /examples/wikitrivia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/examples/wikitrivia.py -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/makefile -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/pyproject.toml -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gia-uh/argo/HEAD/uv.lock --------------------------------------------------------------------------------