Skip to content

charliewilco/Argus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Argus

Argus is automation infrastructure written in Go. It is intended to ship as a single binary that manages OAuth connections, ingests provider events, executes declarative pipelines, and dispatches actions to external services.

This repository is now on the Go rewrite path. The current foundation in place is:

  • Core envelope and schema types
  • Connection and pipeline domain models
  • Store interface
  • SQLite-backed store with migrations
  • In-memory queue implementation
  • OAuth token encryption, PKCE state management, and refresh handling
  • Spec-shaped HTTP router with placeholder endpoints
  • Constructor-wired server and CLI entrypoints with real main packages

Quick Start

go test ./...
ARGUS_SECRET_KEY=development-secret go run ./cmd/argus
go run ./cmd/argus-cli help
go run ./cmd/argus-cli health --server http://localhost:8080

The server currently exposes GET /healthz and the spec-shaped API surface. OAuth, connections, pipelines, webhook ingestion, queueing, and DLQ storage are constructor-wired through the server entrypoint with in-memory queue execution semantics.

Current Status

The repository has been converted away from the previous Bun/TypeScript prototype. The current foundation now includes queueing and encrypted OAuth token storage, so the next meaningful layer is provider integration and pipeline execution rather than more infrastructure churn.

Layout

cmd/
  argus/
  argus-cli/
config/
docs/
internal/
  api/
  connections/
  envelope/
  oauth/
  queue/
  pipeline/
  schema/
  store/
migrations/
providers/
  github/

Verification

These commands are expected to pass before shipping changes:

gofmt -w .
go test ./...
go build ./...
go vet ./...

About

A standard library and CLI for triggers across multiple providers

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages