{"id":50386125,"url":"https://github.com/intelligexhq/argus","last_synced_at":"2026-05-30T15:00:40.046Z","repository":{"id":361336318,"uuid":"1253855809","full_name":"intelligexhq/argus","owner":"intelligexhq","description":"Headless AI-agent discovery utility. Finds all agents running on the mashine and captures their connections and details.","archived":false,"fork":false,"pushed_at":"2026-05-30T08:07:24.000Z","size":43,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-30T08:07:52.541Z","etag":null,"topics":["agentic-engineering","agents","discovery","golang","intelligex-argus"],"latest_commit_sha":null,"homepage":"","language":"Go","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/intelligexhq.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-29T22:09:22.000Z","updated_at":"2026-05-30T08:07:27.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/intelligexhq/argus","commit_stats":null,"previous_names":["intelligexhq/argus"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/intelligexhq/argus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/intelligexhq%2Fargus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/intelligexhq%2Fargus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/intelligexhq%2Fargus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/intelligexhq%2Fargus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/intelligexhq","download_url":"https://codeload.github.com/intelligexhq/argus/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/intelligexhq%2Fargus/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33696683,"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-05-30T02:00:06.278Z","response_time":92,"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":["agentic-engineering","agents","discovery","golang","intelligex-argus"],"created_at":"2026-05-30T15:00:23.218Z","updated_at":"2026-05-30T15:00:40.028Z","avatar_url":"https://github.com/intelligexhq.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Intelligex Argus\n\nAI-agent discovery utility. \n\nFinds AI agents which are running on your mashine and capture their details, including connections, processes and activity. Provides this information through HTTP API \n\n\u003e Its a simple Go binary with the scope caped at **discovery \u0026 activity recording**, no EDR-grade syscall tracing yet. The collectors are unprivileged within current user scope. tool is cross-platform.\n\n## How it works\n\n- TODO: interactive giff. showcase the Intelligex Argus @ work\n- TODO: mermaid diagram explaining the architechture.\n\n## Requirements\n\n- Go 1.26+\n- SQLite driver - `modernc.org/sqlite`\n- Binary builds CGO-free and ships static. `CGO_ENABLED=0`\n\n## Build\n\n```bash\n# general\ngo build -o bin/argus ./cmd/argus\nmake\n# platform specific\nCGO_ENABLED=0 GOOS=linux  GOARCH=amd64 go build -o bin/argus-linux-amd64  ./cmd/argus\nCGO_ENABLED=0 GOOS=darwin GOARCH=arm64 go build -o bin/argus-darwin-arm64 ./cmd/argus\n```\n\n## Run\n\n```bash\n# http API\nmake run # runs on custom port 4008\n./bin/argus --listen tcp:127.0.0.1:4008\n\n# unix socket\n./bin/argus --listen unix:$HOME/.argus/argus.sock --interval 5s\n```\n\nFlags: `--db \u003cpath\u003e` · `--listen tcp:host:port | unix:/path` · `--interval \u003cdur\u003e`.\n\n## Query the API\n\nOver the default TCP listener:\n\n```bash\n# browse rendered docs at http://127.0.0.1:4008/v1/openapi\ncurl -v -XGET http://127.0.0.1:4008/v1/agents\ncurl -v -XGET http://127.0.0.1:4008/v1/agents?expand=processes,connections\ncurl -v -XGET http://127.0.0.1:4008/v1/connections\ncurl -v -XGET http://127.0.0.1:4008/v1/openapi.yaml\n\n# if started with --listen unix:...\ncurl --unix-socket ~/.argus/argus.sock http://localhost/v1/agents\n```\n\n## Testing\n\n```bash\n## we use makefile for local and ci runs\n\nmake test       # go test ./...\nmake race       # go test -race ./...\nmake fmt-check  # fail if anything is unformatted\nmake fmt        # gofmt -w .\nmake vet        # go vet ./...\nmake ci         # everything CI runs: fmt-check + vet + race + build\n```\n\n## Backlog\n\nSee [backlog.md](backlog.md) for the roadmap.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fintelligexhq%2Fargus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fintelligexhq%2Fargus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fintelligexhq%2Fargus/lists"}