{"id":24161551,"url":"https://github.com/zcaceres/agentstack-receipts-manager","last_synced_at":"2026-06-08T03:32:35.118Z","repository":{"id":269350729,"uuid":"907136598","full_name":"zcaceres/agentstack-receipts-manager","owner":"zcaceres","description":"receipt manager built with agentstack","archived":false,"fork":false,"pushed_at":"2024-12-22T23:00:46.000Z","size":170,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-02T04:43:15.427Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/zcaceres.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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}},"created_at":"2024-12-22T22:51:56.000Z","updated_at":"2024-12-22T23:00:49.000Z","dependencies_parsed_at":null,"dependency_job_id":"7258c3aa-eca8-45d0-afc1-d74d269de4b0","html_url":"https://github.com/zcaceres/agentstack-receipts-manager","commit_stats":null,"previous_names":["zcaceres/agentstack-receipts-manager"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zcaceres/agentstack-receipts-manager","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zcaceres%2Fagentstack-receipts-manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zcaceres%2Fagentstack-receipts-manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zcaceres%2Fagentstack-receipts-manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zcaceres%2Fagentstack-receipts-manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zcaceres","download_url":"https://codeload.github.com/zcaceres/agentstack-receipts-manager/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zcaceres%2Fagentstack-receipts-manager/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34047266,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-08T02:00:07.615Z","response_time":111,"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-01-12T17:17:19.092Z","updated_at":"2026-06-08T03:32:35.113Z","avatar_url":"https://github.com/zcaceres.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AgentStack Receipt Manager\n\nAgentStack Receipt Manager is an automated system designed to find and upload receipts for deductible business expenses. It monitors the Downloads folder for receipts and uploads them to a specified Google Drive folder.\n\n## Features\n\n- Automatically scans your Downloads folder for receipts\n- Identifies potential deductible business expenses\n- Uploads relevant receipts to a designated Google Drive folder\n\n## Prerequisites\n\n- Python 3.10 - 3.12\n- Poetry for dependency management\n- Google Cloud Platform account with Drive API enabled\n- Google Drive folder for receipt storage\n- Not tested with Windows and so assumes you're on a Mac or Linux system\n\n## Installation\n\n1. Clone the repository:\n   ```\n   git clone https://github.com/yourusername/agentstack_receipt_manager.git\n   cd agentstack_receipt_manager\n   ```\n\n2. Install dependencies using Poetry:\n   ```\n   poetry install\n   ```\n\n3. Copy the `.env.example` file to `.env` and fill in the required environment variables:\n   ```\n   cp .env.example .env\n   ```\n\n4. Edit the `.env` file with your specific paths and credentials.\n\n## REQUIRED: GDrive Folder Setup\n\n1. Find or create the folder that you want Receipts uploaded to in Gdrive\n2. Copy the URL which will look like this: `https://drive.google.com/drive/folders/{THIS IS YOUR FOLDER ID}`\n3. Copy the folder ID and paste it into the `.env` file under `GDRIVE_UPLOAD_FOLDER_ID`\n\n## REQUIRED: GDrive Permissions Setup (Service Account)\n\n1. Visit https://console.cloud.google.com/apis/api/drive.googleapis.com\n2. Create or select a project if required\n3. Enable the Google Drive API\n4. Click \"Create Credentials\" in the top banner after enabling the API\n1. Select a Service Account as the credential type\n2. After creating your service account (the names and scopes in the menus do not matter) navigate to the \"Keys\" tab of the account\n3. Create a new key and download the JSON file\n4. Rename the file `gcloud-service-account.json` and place it in the root of this project\n5. In the Details tab of your service account, you'll see an email like this: `{YOUR SERVICE_ACCOUNT_NAME_HERE}@{YOUR PROJECT HERE}.iam.gserviceaccount.com`\n6. Copy this email. Go to Google Drive and share the Google Drive folder you want to upload to with this email address (ensure they have Editor permissions)\n\n## Usage\n\nTo run the receipt manager:\n\n```\npoetry shell\nagentstack run\n```\n\n## Development\n\nTo add new agents or tasks, use the AgentStack CLI:\n\n```\nagentstack generate agent \u003cagent_name\u003e\nagentstack generate task \u003ctask_name\u003e\n```\n\nTo add new tools:\n\n```\nagentstack tools add \u003ctool_name\u003e\n```\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## License\n\nThis project is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzcaceres%2Fagentstack-receipts-manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzcaceres%2Fagentstack-receipts-manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzcaceres%2Fagentstack-receipts-manager/lists"}