{"id":36967515,"url":"https://github.com/augmentcode/augment-action","last_synced_at":"2026-01-13T20:05:54.095Z","repository":{"id":328029707,"uuid":"1112654802","full_name":"augmentcode/augment-action","owner":"augmentcode","description":null,"archived":false,"fork":false,"pushed_at":"2025-12-16T23:14:48.000Z","size":91,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-20T13:07:39.408Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/augmentcode.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-08T23:27:19.000Z","updated_at":"2025-12-16T23:13:57.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/augmentcode/augment-action","commit_stats":null,"previous_names":["augmentcode/augment-action"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/augmentcode/augment-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/augmentcode%2Faugment-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/augmentcode%2Faugment-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/augmentcode%2Faugment-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/augmentcode%2Faugment-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/augmentcode","download_url":"https://codeload.github.com/augmentcode/augment-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/augmentcode%2Faugment-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28399508,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T14:36:09.778Z","status":"ssl_error","status_checked_at":"2026-01-13T14:35:19.697Z","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":[],"created_at":"2026-01-13T20:05:53.431Z","updated_at":"2026-01-13T20:05:54.083Z","avatar_url":"https://github.com/augmentcode.png","language":"TypeScript","readme":"# Augment Action\n\nA GitHub Action that runs the Auggie AI agent to respond to issue and PR comments.\n\n## Usage\n\n```yaml\nname: Auggie Bot\n\non:\n  issue_comment:\n    types: [created]\n  pull_request_review_comment:\n    types: [created]\n\njobs:\n  auggie:\n    runs-on: ubuntu-latest\n    if: contains(github.event.comment.body, '@auggie')\n    steps:\n      - uses: actions/checkout@v4\n\n      - uses: augmentcode/augment-action@main\n        with:\n          prompt: ${{ github.event.comment.body }}\n          augment_api_key: ${{ secrets.AUGMENT_API_KEY }}\n```\n\n## Inputs\n\n| Input | Description | Required |\n|-------|-------------|----------|\n| `prompt` | The prompt to send to the Auggie agent | Yes |\n| `augment_api_key` | Augment API key for authentication | No |\n| `augment_api_url` | Augment API URL (default: `https://api.augmentcode.com`) | No |\n| `workspace_root` | Workspace root path for Auggie to index | No |\n\n## What It Does\n\nThe Auggie agent will:\n1. React to your comment with 👀 to acknowledge the request\n2. Post a comment with its response\n3. Update the comment in real-time as it works through the task\n\n## Use Cases\n\n### 1. Respond to Comments\n\nTrigger Auggie when someone mentions `@auggie` in a comment:\n\n```yaml\non:\n  issue_comment:\n    types: [created]\n  pull_request_review_comment:\n    types: [created]\n\njobs:\n  auggie:\n    runs-on: ubuntu-latest\n    if: contains(github.event.comment.body, '@auggie')\n    steps:\n      - uses: actions/checkout@v4\n      - uses: augmentcode/augment-action@main\n        with:\n          prompt: ${{ github.event.comment.body }}\n          augment_api_key: ${{ secrets.AUGMENT_API_KEY }}\n```\n\n### 2. Auto Code Review on PRs\n\nAutomatically review every new pull request:\n\n```yaml\non:\n  pull_request:\n    types: [opened, synchronize]\n\njobs:\n  auggie:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v4\n      - uses: augmentcode/augment-action@main\n        with:\n          prompt: \"Review this PR for bugs, security issues, and code quality\"\n          augment_api_key: ${{ secrets.AUGMENT_API_KEY }}\n```\n\n### 3. Triage New Issues\n\nAutomatically analyze and label new issues:\n\n```yaml\non:\n  issues:\n    types: [opened]\n\njobs:\n  auggie:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v4\n      - uses: augmentcode/augment-action@main\n        with:\n          prompt: \"Analyze this issue, suggest relevant labels, and provide initial guidance\"\n          augment_api_key: ${{ secrets.AUGMENT_API_KEY }}\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faugmentcode%2Faugment-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faugmentcode%2Faugment-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faugmentcode%2Faugment-action/lists"}