{"id":31565497,"url":"https://github.com/henrymorgandibie/compliance-bot","last_synced_at":"2026-05-08T06:52:38.691Z","repository":{"id":304087694,"uuid":"1017730132","full_name":"HenryMorganDibie/compliance-bot","owner":"HenryMorganDibie","description":"Automates regulatory and tax filing workflows with real-time Slack alerts, GPT-powered explanations, and a visual Streamlit dashboard for compliance teams.","archived":false,"fork":false,"pushed_at":"2025-07-11T02:42:20.000Z","size":183,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-11T07:13:55.489Z","etag":null,"topics":["automation","gpt","python","slack","streamlit"],"latest_commit_sha":null,"homepage":"","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/HenryMorganDibie.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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-07-11T02:35:35.000Z","updated_at":"2025-07-11T02:45:50.000Z","dependencies_parsed_at":"2025-07-11T07:24:27.604Z","dependency_job_id":null,"html_url":"https://github.com/HenryMorganDibie/compliance-bot","commit_stats":null,"previous_names":["henrymorgandibie/compliance-bot"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/HenryMorganDibie/compliance-bot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HenryMorganDibie%2Fcompliance-bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HenryMorganDibie%2Fcompliance-bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HenryMorganDibie%2Fcompliance-bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HenryMorganDibie%2Fcompliance-bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/HenryMorganDibie","download_url":"https://codeload.github.com/HenryMorganDibie/compliance-bot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HenryMorganDibie%2Fcompliance-bot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278420486,"owners_count":25983863,"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-10-05T02:00:06.059Z","response_time":54,"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":["automation","gpt","python","slack","streamlit"],"created_at":"2025-10-05T07:08:35.727Z","updated_at":"2025-10-05T07:08:37.015Z","avatar_url":"https://github.com/HenryMorganDibie.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 📅 Smart Compliance Filing Tracker\n\nA workflow automation tool that helps financial service companies **track legal, regulatory, and tax obligations** — with **GPT-powered explanations**, **Slack deadline alerts**, and a **streamlit UI** for real-time visibility.\n\n![alt text](\u003ccompliance filing tracker.png\u003e)\n![alt text](\u003ccac annual returns.png\u003e)\n![alt text](itf.png)\n\n---\n\n## 🚀 Features\n\n✅ Visual filing tracker (built in Streamlit)  \n✅ Filing urgency status (Overdue / Due Today / etc.)  \n✅ Daily automated checks for upcoming deadlines  \n✅ Slack alerts for due/overdue filings  \n✅ GPT-powered filing explainer  \n✅ Export to CSV  \n✅ Easily extendable for email alerts, multi-user workflows, or database support\n\n---\n\n## 🏗️ Project Structure\n\u003cpre lang=\"markdown\"\u003e\ncompliance-tracker/\n│\n├── app/ # Streamlit UI\n│ └── main.py\n│\n├── workflows/ # Automation logic\n│ └── scheduler.py\n│\n├── notifications/ # Slack integration\n│ └── slack_bot.py\n│\n├── data/\n│ └── filing_schedule.json # Filing records (editable)\n│\n├── run_daily.py # Runs daily checks at 09:00 AM\n├── requirements.txt\n├── .env # Slack webhook (not committed)\n├── README.md\n└── .gitignore\n\u003c/pre\u003e\n\n---\n\n## 📦 Installation\n\n### 1. Clone this repo\n\n```bash\ngit clone https://github.com/your-username/compliance-tracker.git\ncd compliance-tracker\n```\n\n### 2. Create virtual environment \u0026 install requirements\n```\npython -m venv venv\nvenv\\Scripts\\activate   # on Windows\n# OR\nsource venv/bin/activate   # on Mac/Linux\n\npip install -r requirements.txt\n```\n### 3. Create .env for Slack alerts\n\nCreate a .env file in the root folder:\n\u003cpre\u003e ```ini\nSLACK_WEBHOOK_URL=https://hooks.slack.com/services/your/webhook/url\n\u003c/pre\u003e \n\n### 💻 Usage\n\n▶️ Launch the Streamlit App\n```\nstreamlit run app/main.py\n```\nThis opens a dashboard where you can:\n\n- View all pending filings\n\n- Mark filings as completed\n\n- See urgency levels\n\n- Trigger GPT-based explanation of filings\n\n- Export all data to CSV\n\n### ⏰ Run Deadline Alerts Manually\n```\npython workflows/scheduler.py\n```\nThis checks all filings and sends Slack alerts if any are:\n\n- Overdue\n\n- Due today\n\n- Due in 1–2 days\n\n### 🕒 Run it Automatically Every Day\n```\npython run_daily.py\n```\nThis runs scheduler.py every day at 09:00 AM using the schedule library.\n\n### 📁 Sample Filing Entry (filing_schedule.json)\n\u003cpre\u003e ```json [ { \"filing_name\": \"Q3 Tax Return\", \"filing_type\": \"Tax\", \"description\": \"Quarterly tax obligation for fintech operators\", \"due_date\": \"2025-07-12\", \"jurisdiction\": \"Nigeria\", \"business_type\": \"Microfinance\", \"escalation_contact\": \"compliance@yourcompany.com\", \"completed\": false } ] ``` \u003c/pre\u003e\n\n### 🤖 GPT Integration\nYou can use OpenAI’s GPT to auto-explain filings using ai/gpt_explainer.py.\nIf using GPT, you’ll also want to store your OpenAI key in .env like so:\n\u003cpre\u003e ```ini\nOPENAI_API_KEY=your-openai-api-key\n\u003c/pre\u003e\n\n### ✅ Future Improvements\n- Add user authentication\n\n- Connect to a database (SQLite/PostgreSQL)\n\n- Add email alerts via SendGrid or SMTP\n\n- Build admin panel to add/edit filings in UI\n\n- Integrate with calendar APIs (Google Calendar, Outlook)\n\n### 👨‍💻 Author\nHenry C. Dibie\nData \u0026 Automation Enthusiast \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhenrymorgandibie%2Fcompliance-bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhenrymorgandibie%2Fcompliance-bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhenrymorgandibie%2Fcompliance-bot/lists"}