{"id":36955152,"url":"https://github.com/wisdomfirm/fms-framework","last_synced_at":"2026-01-13T13:01:51.479Z","repository":{"id":328006796,"uuid":"1113047185","full_name":"WisdomFirm/fms-framework","owner":"WisdomFirm","description":"The Core Automation Backbone for WisdomFirm. A modular, config-driven Python framework for internal workflows.","archived":false,"fork":false,"pushed_at":"2025-12-10T17:10:33.000Z","size":32,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-11T02:57:58.755Z","etag":null,"topics":["automation","framework","internal-tools","python","timesheet","wisdomfirm","workflow-engine"],"latest_commit_sha":null,"homepage":"https://wisdomfirm.com","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/WisdomFirm.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-09T12:58:46.000Z","updated_at":"2025-12-10T17:10:37.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/WisdomFirm/fms-framework","commit_stats":null,"previous_names":["wisdomfirm/fms-framework"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/WisdomFirm/fms-framework","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WisdomFirm%2Ffms-framework","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WisdomFirm%2Ffms-framework/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WisdomFirm%2Ffms-framework/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WisdomFirm%2Ffms-framework/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/WisdomFirm","download_url":"https://codeload.github.com/WisdomFirm/fms-framework/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WisdomFirm%2Ffms-framework/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28385806,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T12:01:30.995Z","status":"ssl_error","status_checked_at":"2026-01-13T12:00:09.625Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["automation","framework","internal-tools","python","timesheet","wisdomfirm","workflow-engine"],"created_at":"2026-01-13T13:01:51.090Z","updated_at":"2026-01-13T13:01:51.469Z","avatar_url":"https://github.com/WisdomFirm.png","language":"Python","readme":"# FMS Framework 🏗️\n\n![Version](https://img.shields.io/badge/version-0.2.0-blue.svg)\n![Status](https://img.shields.io/badge/status-pre--release-yellow.svg)\n![License](https://img.shields.io/badge/license-MIT-green.svg)\n\n**The Core Automation Backbone for [WisdomFirm](https://github.com/WisdomFirm).**\n\n**FMS (Flow Management System)** is a modular, config-driven Python framework designed to orchestrate internal workflows, automate administrative tasks, and manage AI agent pipelines. It serves as the foundational \"Operating System\" for WisdomFirm's automated business logic.\n\n---\n\n## ⚠️ Pre-Release Notice\nThis project is currently in active development (`v0.2.0`). Features are subject to change, and stability is not guaranteed. It is intended for testing and development purposes only.\n\n---\n\n## 🚀 Key Features\n\n* **🔌 Modular Architecture:** Plug-and-play design. New capabilities (like AI agents or SEO bots) can be added as isolated modules without touching the core engine.\n* **⚙️ Config-Driven:** Fully controlled via `config/settings.yaml`. No hard-coding required to switch tasks on or off.\n* **⏱️ Automated TimeSheet:** Built-in module to log runtime sessions and user activity into CSV format automatically.\n* **🛡️ Scalable Core:** Lightweight `FMSEngine` designed to handle sequential task execution efficiently.\n\n---\n\n## 📂 Project Structure\n\n```text\nfms-framework/\n├── .github/                 # Workflow (CI/CD) and Issue Templates\n├── config/\n│   └── settings.yaml      # Central Configuration\n├── core/\n│   ├── engine.py          # The Brain (Task Runner)\n│   └── base_module.py     # Interface Definition\n├── modules/\n│   ├── system_monitor.py  # Host Analysis Module\n│   └── timesheet.py       # Time Logging Module\n├── main.py                # Entry Point\n└── requirements.txt       # Dependencies\n```\n## 🛠️ Installation \u0026 Usage\n\n### 1. Prerequisites\n* Python 3.8 or higher\n\n### 2. Installation\nClone the repository and install dependencies:\n\n```bash\ngit clone [https://github.com/WisdomFirm/fms-framework.git](https://github.com/WisdomFirm/fms-framework.git)\ncd fms-framework\npip install -r requirements.txt\n```\n### 3. Configuration\nEdit `config/settings.yaml` to define which modules to run:\n\n```yaml\napp_name: \"WisdomFirm FMS Core\"\ntasks:\n  - \"system_monitor\"\n  - \"timesheet\"\n\n```\n### 4. Run the Engine\nExecute the main script to start the automation pipeline:\n\n```bash\npython main.py\n\n```\n## 📦 Built-in Modules\n\n### 1. System Monitor (`system_monitor`)\nAnalyzes the host infrastructure to ensure the environment is ready for automation tasks.\n* **Checks:** OS Version, Processor Architecture, Python Runtime.\n\n### 2. TimeSheet Logger (`timesheet`)\nAutomatically logs the session start time and user identity.\n* **Output:** Generates/Updates `timesheet_data.csv`.\n* **Fields:** Timestamp, User, Action, Status.\n\n---\n\n## 🔮 Roadmap\n\n* [ ] **AI Connector Module:** Integration with Google Gemini Pro API.\n* [ ] **SEO Auto-Generator:** Automated content structure generation.\n* [ ] **Notification Service:** Line Notify integration for task completion alerts.\n\n---\n\n## 📄 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n---\n\u003cp align=\"center\"\u003e\n  Built with ❤️ by \u003cstrong\u003eWisdomFirm Team\u003c/strong\u003e\u003cbr\u003e\n  \u003cem\u003eInnovating Education \u0026 Business through AI Automation.\u003c/em\u003e\n\u003c/p\u003e\n\n\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwisdomfirm%2Ffms-framework","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwisdomfirm%2Ffms-framework","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwisdomfirm%2Ffms-framework/lists"}