{"id":30824271,"url":"https://github.com/strixrox/yoda","last_synced_at":"2025-10-26T18:45:10.092Z","repository":{"id":310709554,"uuid":"1040911747","full_name":"StrixROX/YoDA","owner":"StrixROX","description":"An AI-powered system automation platform for Windows, written in Python","archived":false,"fork":false,"pushed_at":"2025-08-26T22:04:43.000Z","size":24,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-27T06:58:44.667Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/StrixROX.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-08-19T17:32:52.000Z","updated_at":"2025-08-26T22:04:46.000Z","dependencies_parsed_at":"2025-08-19T20:42:13.717Z","dependency_job_id":null,"html_url":"https://github.com/StrixROX/YoDA","commit_stats":null,"previous_names":["strixrox/yoda"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/StrixROX/YoDA","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StrixROX%2FYoDA","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StrixROX%2FYoDA/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StrixROX%2FYoDA/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StrixROX%2FYoDA/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/StrixROX","download_url":"https://codeload.github.com/StrixROX/YoDA/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StrixROX%2FYoDA/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273899989,"owners_count":25187737,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-06T02:00:13.247Z","response_time":2576,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-09-06T11:53:27.819Z","updated_at":"2025-10-26T18:45:10.086Z","avatar_url":"https://github.com/StrixROX.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"## YoDA — Centralised System Automations with LLM\n\nYoDA is a Python-based platform that empowers system automations with LLM assistance. It aims to provide a reliable, extensible foundation for day-to-day automations, memory across sessions, and a friendly CLI to interact with your system.\n\n### Features\n\n- **Session greeting**: A simple greeting on logon.\n- **Persistent memory**: Remembers information across system sessions.\n- **Startup automations**: Remembers and launches your preferred apps at startup.\n- **CLI tooling**: Interact with the app via a dedicated command-line tool.\n\n### Project Status\n\nThis project is in early development (version 0.0.1). The scope is intentionally small and evolving. Feedback and contributions are welcome.\n\n## Quickstart\n\n### Prerequisites\n\n- Python 3.10 or newer\n- OpenSSL (for local SSL certificate generation)\n\n### Create and Activate a Virtual Environment\n\n```bash\npython -m venv dev\nsource dev/Scripts/activate\n```\n\nOn macOS/Linux, activate with:\n\n```bash\nsource dev/bin/activate\n```\n\n### Install (Editable)\n\n```bash\npip install -e .\n```\n\nThis installs the package and exposes the `yo` CLI.\n\n### Verify Installation\n\n```bash\nyo --help\n```\n\n## Usage\n\nAfter installation, use the CLI:\n\n```bash\nyo --help\n```\n\nAdditional examples and commands will be added as the feature set grows.\n\n## Development\n\n### Local Development Setup\n\n1. Create and activate a virtual environment (see Quickstart).\n2. Install in editable mode:\n   ```bash\n   pip install -e .\n   ```\n3. Run the CLI locally to validate changes:\n   ```bash\n   yo --help\n   ```\n\n### Generating Self-Signed SSL Certificates\n\nIf you need SSL for local testing:\n\n```bash\nopenssl req -newkey rsa:2048 -nodes -keyout server.key -x509 -days 365 -out server.crt\n```\n\n## Building \u0026 Distribution\n\n### Build a Wheel and Source Distribution\n\n```bash\npip install build\npython -m build\n```\n\nArtifacts will be created under `dist/`.\n\n## Project Structure\n\n```\nsrc/\n  app_streams/          # Event stream helpers and utilities\n    events.py           # Event handling and streaming logic\n\n  cli/                  # Command-line interface and user interaction\n    main.py             # CLI entry point and command routing\n    user_input.py       # User input handling and validation\n    utils.py            # CLI-specific utilities and helpers\n\n  comms/                # Communication and networking\n    client.py           # Client-side communication logic\n    server.py           # Server-side communication handling\n    utils.py            # Communication utilities and helpers\n\n  core/                 # Core application logic and orchestration\n    main.py             # Main application entry point\n    events_handlers.py  # Event handling and processing\n    utils.py            # Core utilities and shared functions\n    services/           # Core service implementations\n      comms_server.py   # Communication server service\n      llm_server.py     # LLM server service\n\n  llm/                  # LLM integration and AI capabilities\n    server.py           # LLM server implementation\n    tts.py              # Text-to-speech functionality\n    agent/              # AI agent implementation\n      agent.py          # Core agent logic and behavior\n      graph.py          # Agent workflow and graph management\n      memory.py         # Agent memory and persistence\n      tools.py          # Agent tools and capabilities\n      utils.py          # Agent-specific utilities\n```\n\n## Future Scope\n\n- Display interface for showing results, images, and emotes.\n- Screen context awareness to answer questions about on-screen content.\n- Additional automation primitives and integrations.\n\nIf you have ideas, please open an issue or a discussion.\n\n## Contributing\n\nContributions are welcome! Please read `CONTRIBUTING.md` for guidelines on how to propose changes, set up your environment, and submit pull requests.\n\n## Versioning\n\nThis project follows semantic versioning where practical: MAJOR.MINOR.PATCH.\n\n## Support \u0026 Feedback\n\n- If you encounter a bug, please open an issue with steps to reproduce and environment details.\n- For feature requests or questions, start a discussion or open an issue.\n\n## License\n\nLicense information will be added to the repository. Until then, please treat the project as source-available for evaluation and contribution discussions only.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstrixrox%2Fyoda","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstrixrox%2Fyoda","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstrixrox%2Fyoda/lists"}