Skip to content

An Enterprise OAuth2/OIDC support, multi-factor authentication, and secure account management for applications and services.

License

Notifications You must be signed in to change notification settings

skygenesisenterprise/aether-identity

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

255 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

🚀 Aether Identity

License Go TypeScript Next.js React GitHub App

🔥 Modern Identity Server Foundation - Evolved Hybrid Architecture with Complete Package Ecosystem

A next-generation identity server foundation that has evolved significantly from its initial hybrid architecture. Now featuring a complete authentication system, comprehensive package ecosystem, GitHub Marketplace integration, and enterprise-ready monorepo design with enhanced capabilities.

🚀 Quick Start📋 What's New📊 Current Status🛠️ Tech Stack📦 Package Ecosystem📁 Architecture🤝 Contributing

GitHub stars GitHub forks GitHub issues


🌟 What is Aether Identity?

Aether Identity is a comprehensive identity server foundation that has evolved dramatically from its initial concept. Starting as a hybrid Go/TypeScript architecture, it has grown into a complete ecosystem featuring authentication, user management, package SDKs, GitHub integration, and enterprise-ready capabilities.

🎯 Our Evolved Vision

  • 🚀 Enhanced Hybrid Architecture - Go 1.21+ backend + TypeScript 5 frontend + Package Ecosystem
  • 📦 Complete Package SDKs - GitHub App, Go SDK, Node.js SDK for maximum integration
  • 🔐 Complete Authentication System - JWT-based system with login/register forms and context
  • ⚡ High-Performance Backend - Go-based server with GORM + PostgreSQL integration
  • 🎨 Modern Frontend - Next.js 16 + React 19.2.1 + shadcn/ui component library
  • 🔗 GitHub Marketplace Integration - Verified GitHub App for identity orchestration
  • 🏗️ Enterprise-Ready Design - Scalable, secure, and maintainable architecture
  • 📚 Comprehensive Documentation - Package-specific docs and API references
  • 🛠️ Developer-Friendly - 60+ Make commands, hot reload, TypeScript strict mode

🆕 What's New - Recent Evolution

🎯 Major Additions in v1.0+

📦 Complete Package Ecosystem (NEW)

  • GitHub App Package - Verified Marketplace application for identity orchestration
  • Go SDK Package - Native Go client library and CLI tools
  • Node.js SDK Package - Universal TypeScript SDK for Node.js and browser
  • Package Documentation - Comprehensive docs for each package

🔗 GitHub Integration (NEW)

  • Verified GitHub App - Identity management and workflow orchestration
  • Multi-Target Integration - Support for various identity providers and protocols
  • Workflow Orchestration - Automatic GitHub Actions triggering
  • Aether Identity Notifications - Integrated notification system

🏗️ Enhanced Architecture (IMPROVED)

  • Package-Based Structure - Modular design with clear separation
  • Cross-Package Integration - Seamless interaction between packages
  • Docker Deployment - Production-ready containerization for all packages
  • Security Enhancements - Rate limiting, input validation, CORS

📚 Documentation Evolution (IMPROVED)

  • Package-Specific READMEs - Detailed documentation for each component
  • Architecture Overviews - Comprehensive system documentation
  • Integration Guides - Step-by-step setup instructions
  • API References - Complete API documentation

📊 Current Status

✅ Rapid Evolution: From basic hybrid architecture to complete ecosystem with GitHub Marketplace integration.

Currently Implemented

🏗️ Core Foundation

  • Complete Authentication System - JWT with login/register forms and React context
  • Hybrid Monorepo Architecture - Go backend + TypeScript frontend workspaces
  • Go Backend Server - High-performance Gin API with GORM + PostgreSQL
  • Next.js 16 Frontend - Modern React 19.2.1 with shadcn/ui + Tailwind CSS v4
  • Database Layer - GORM with PostgreSQL and user models
  • CLI Tools - Complete command-line interface for server management

📦 Package Ecosystem (NEW)

  • GitHub App Package - Verified Marketplace app with identity orchestration
  • Go SDK Package - Native Go client library and CLI tools
  • Node.js SDK Package - Universal TypeScript SDK with examples
  • Package Documentation - Comprehensive docs for all packages

🔗 GitHub Integration (NEW)

  • Identity Provider Integration - Support for OAuth and SAML protocols
  • Multi-Target Support - Handle complex identity scenarios
  • Workflow Orchestration - Automatic GitHub Actions triggering
  • Aether Identity Integration - Complete notification system

🛠️ Development Infrastructure

  • Development Environment - Hot reload, TypeScript strict mode, Go modules
  • Docker Deployment - Production-ready containers for all packages
  • Security Implementation - Rate limiting, validation, security headers
  • Structured Logging - Pino-based logging with correlation

🔄 In Development

  • User Management Dashboard - Complete CRUD interface for user administration
  • Domain Management - Multi-domain configuration and management
  • Security Enhancements - Advanced rate limiting, input validation, CORS
  • API Documentation - Comprehensive API documentation and testing
  • Testing Suite - Unit and integration tests across all packages

📋 Planned Features

  • Identity Protocol Engines - OAuth 2.0, OpenID Connect, SAML implementation
  • Web Administration Dashboard - Complete server management interface
  • Multi-Factor Authentication - TOTP, WebAuthn support
  • Advanced Security - Session management, audit logging, encryption
  • Mobile Application - React Native companion app

🚀 Quick Start

📋 Prerequisites

  • Go 1.21.0 or higher (for backend)
  • Node.js 18.0.0 or higher (for frontend)
  • pnpm 9.0.0 or higher (recommended package manager)
  • PostgreSQL 14.0 or higher (for database)
  • Docker (optional, for package deployment)
  • Make (for command shortcuts - included with most systems)

🔧 Installation & Setup

  1. Clone the repository

    git clone https://github.com/skygenesisenterprise/aether-identity.git
    cd aether-identity
  2. Quick start (recommended)

    # One-command setup and start
    make quick-start
  3. Manual setup

    # Install Go dependencies
    cd server && go mod download && cd ..
    
    # Install Node.js dependencies
    make install
    
    # Environment setup
    make env-dev
    
    # Database initialization
    make db-migrate
    
    # Start development servers
    make dev

🌐 Access Points

Once running, you can access:

🎯 Enhanced Make Commands

# 🚀 Quick Start & Development
make quick-start          # Install, migrate, and start dev servers
make dev                 # Start all services (frontend + backend)
make dev-frontend        # Frontend only (port 3000)
make dev-backend         # Backend only (port 8080)

# 📦 Package Development (NEW)
make dev-github          # Start GitHub App development
make build-packages      # Build all packages
make test-packages       # Test all packages

# 🔧 Go Backend Commands
make go-server           # Start Go server directly
make go-build            # Build Go binary
make go-test             # Run Go tests

# 🏗️ Building & Production
make build               # Build all packages
make start               # Start production servers

# 🗄️ Database
make db-studio           # Open Prisma Studio
make db-migrate          # Run migrations
make db-seed             # Seed development data

# 🔧 Code Quality & Testing
make lint                # Lint all packages
make typecheck           # Type check all packages
make format              # Format code with Prettier

# 🛠️ Utilities
make help                # Show all available commands
make status              # Show project status
make health              # Check service health

💡 Tip: Run make help to see all 60+ available commands organized by category.


🛠️ Tech Stack

🎨 Frontend Layer

Next.js 16 + React 19.2.1 + TypeScript 5
├── 🎨 Tailwind CSS v4 + shadcn/ui (Styling & Components)
├── 🔐 JWT Authentication (Complete Implementation)
├── 🛣️ Next.js App Router (Routing)
├── 📝 TypeScript Strict Mode (Type Safety)
├── 🔄 React Context (State Management)
└── 🔧 ESLint + Prettier (Code Quality)

⚙️ Backend Layer

Go 1.21+ + Gin Framework
├── 🗄️ GORM + PostgreSQL (Database Layer)
├── 🔐 JWT Authentication (Complete Implementation)
├── 🛡️ Middleware (Security, CORS, Logging)
├── 🌐 HTTP Router (Gin Router)
├── 📦 JSON Serialization (Native Go)
└── 📊 Structured Logging (Zerolog)

📦 Package Ecosystem Layer (NEW)

Multi-Language Package SDKs
├── 🚀 GitHub App (TypeScript + Fastify)
│   ├── Identity Orchestration
│   ├── Webhook Security
│   └── Aether Identity Integration
├── 🐹 Go SDK (Native Go)
│   ├── High-Performance Client
│   ├── CLI Tools
│   └── Go Modules Support
└── 📦 Node.js SDK (TypeScript)
    ├── Universal Client (Node.js + Browser)
    ├── Authentication Handling
    └── Comprehensive Examples

🗄️ Data Layer

PostgreSQL + GORM
├── 🏗️ Schema Management (Auto-migration)
├── 🔍 Query Builder (Type-Safe Queries)
├── 🔄 Connection Pooling (Performance)
├── 👤 User Models (Complete Implementation)
└── 📈 Seed Scripts (Development Data)

🏗️ Evolved Monorepo Infrastructure

Make + pnpm Workspaces + Go Modules + Package Ecosystem
├── 📦 app/ (Next.js Frontend - TypeScript)
├── ⚙️ server/ (Gin API - Go)
├── 🛠️ cli/ (Command Line Tools - TypeScript)
├── 🔧 tools/ (Development Utilities - TypeScript)
├── 📚 services/ (Core Identity Services - TypeScript)
├── 🗂️ routers/ (API Routing - TypeScript)
├── 📦 package/ (Package Ecosystem - NEW)
│   ├── github/ (GitHub App - TypeScript)
│   ├── golang/ (Go SDK - Go)
│   └── node/ (Node.js SDK - TypeScript)
└── 🐳 docker/ (Container Configuration)

📦 Package Ecosystem

🎯 New Package Architecture

The project has evolved to include a comprehensive package ecosystem:

package/
├── github/                    # 🚀 GitHub App for Identity Orchestration
│   ├── Identity Management    # User provisioning and management
│   ├── Workflow Orchestration # GitHub Actions integration
│   └── Aether Identity Integration
├── golang/                   # 🐹 Go SDK & CLI Tools
│   ├── Native Go Client      # High-performance HTTP client
│   └── CLI Tools            # Command-line utilities
└── node/                     # 📦 Node.js/TypeScript SDK
    ├── Universal Client      # Node.js + Browser support
    └── Usage Examples        # Comprehensive examples

🚀 GitHub App Package

Purpose: Verified GitHub Marketplace application for identity orchestration.

Key Features:

  • ✅ Identity provider integration (OAuth, SAML)
  • ✅ Multi-tenant identity support
  • ✅ Workflow orchestration with GitHub Actions
  • ✅ Aether Identity notification integration
  • ✅ Webhook security with HMAC-SHA256
  • ✅ Docker deployment ready

Usage:

cd package/github
pnpm install && pnpm dev
# or
docker-compose up -d

🐹 Go SDK Package

Purpose: Native Go SDK and CLI tools for Aether Identity integration.

Key Features:

  • ✅ Native Go client library
  • ✅ CLI tools for server management
  • ✅ High-performance HTTP client
  • ✅ Type-safe Go structs
  • ✅ Go modules support

Usage:

import "github.com/skygenesisenterprise/aether-identity/package/golang"

client := golang.NewClient("http://localhost:8080")
user, err := client.Users.Create(userData)

📦 Node.js SDK Package

Purpose: Universal TypeScript SDK for Node.js and browser environments.

Key Features:

  • ✅ Universal client (Node.js + Browser)
  • ✅ TypeScript strict mode
  • ✅ Authentication handling
  • ✅ User management capabilities
  • ✅ Comprehensive examples

Usage:

import { AetherIdentityClient } from "@aether-identity/node";

const client = new AetherIdentityClient({
  baseURL: "http://localhost:8080",
  apiKey: "your-api-key",
});

await client.users.create({
  email: "user@example.com",
  password: "secure-password",
});

📁 Architecture

🏗️ Evolved Monorepo Structure

aether-identity/
├── app/                     # Next.js 16 Frontend Application (TypeScript)
│   ├── components/         # React components with shadcn/ui
│   │   ├── ui/            # UI component library
│   │   ├── login-form.tsx # Authentication forms
│   │   └── Sidebar.tsx    # Navigation components
│   ├── context/           # React contexts
│   │   └── JwtAuthContext.tsx # Authentication state
│   ├── login/             # Authentication pages
│   ├── register/          # User registration
│   ├── forgot/            # Password recovery
│   ├── lib/               # Utility functions
│   └── styles/            # Tailwind CSS styling
├── server/                 # Go Backend Server
│   ├── cmd/
│   │   └── server/
│   │       └── main.go    # CLI entry point
│   ├── src/
│   │   ├── config/        # Database and server configuration
│   │   ├── controllers/   # HTTP request handlers (auth, users, domains)
│   │   ├── middleware/    # Gin middleware (auth, validation, monitoring)
│   │   ├── models/        # Data models and structs
│   │   ├── routes/        # API route definitions
│   │   ├── services/      # Business logic (auth, users, domains)
│   │   └── tests/         # Unit and integration tests
│   ├── main.go            # Main server entry point
│   ├── go.mod             # Go modules file
│   └── go.sum             # Go modules checksum
├── package/                # 📦 Package Ecosystem (NEW)
│   ├── github/            # GitHub App Package
│   │   ├── src/          # TypeScript source
│   │   ├── Dockerfile    # Container config
│   │   └── README.md     # Package docs
│   ├── golang/           # Go SDK Package
│   │   ├── go.mod        # Go modules
│   │   └── README.md     # Go package docs
│   ├── node/             # Node.js SDK Package
│   │   ├── src/          # TypeScript source
│   │   ├── examples/     # Usage examples
│   │   └── README.md     # Node.js package docs
│   └── README.md         # Package ecosystem overview
├── cli/                    # Command Line Interface (TypeScript)
│   ├── src/
│   │   ├── commands/      # CLI commands (users, domains, backup)
│   │   ├── utils/         # CLI utilities
│   │   └── types/         # TypeScript definitions
│   └── package.json       # CLI-specific dependencies
├── services/               # Core Identity Services (TypeScript)
├── tools/                  # Development Utilities (TypeScript)
├── routers/                # API Routing Services (TypeScript)
├── prisma/                 # Database Schema & Migrations
│   ├── schema.prisma      # Database schema definition
│   └── config.ts          # Prisma configuration
├── public/                 # Static Assets
├── docs/                   # Documentation
├── docker/                 # Docker Configuration
├── .storybook/             # Storybook Configuration
└── electron/               # Electron App (Future)

🔄 Enhanced Data Flow Architecture

┌─────────────────┐    ┌──────────────────┐    ┌─────────────────┐
│   Next.js App   │    │   Gin API        │    │   PostgreSQL    │
│   (Frontend)    │◄──►│   (Backend)      │◄──►│   (Database)    │
│  Port 3000      │    │  Port 8080       │    │  Port 5432      │
│  TypeScript     │    │  Go              │    │                 │
└─────────────────┘    └──────────────────┘    └─────────────────┘
           │                       │                       │
           ▼                       ▼                       ▼
     JWT Tokens            API Endpoints         User/Domain Data
     React Context        Authentication         GORM ORM
     shadcn/ui Components  Business Logic        Auto-migrations
           │                       │
           ▼                       ▼
    ┌─────────────────┐    ┌──────────────────┐
    │  Package Ecosystem│   │  GitHub App      │
    │  (Multi-Language) │   │  (Orchestration) │
    │  GitHub App       │   │  Identity Mgmt   │
    │  Go SDK           │   │  Workflow Trigger│
    │  Node.js SDK      │   │  Notifications   │
    └─────────────────┘    └──────────────────┘

🗺️ Development Roadmap

🎯 Phase 1: Foundation (✅ Complete - Q1 2025)

  • Hybrid Monorepo Setup - Go backend + TypeScript frontend workspaces
  • Authentication System - Complete JWT implementation with forms
  • Frontend Framework - Next.js 16 + React 19.2.1 + shadcn/ui
  • Go Backend API - Gin with authentication endpoints
  • Database Layer - GORM with PostgreSQL and user models
  • CLI Tools - Complete command-line interface
  • Development Environment - TypeScript strict mode, Go modules, hot reload

🚀 Phase 2: Ecosystem Evolution (✅ Complete - Q1 2025)

  • Package Ecosystem Creation - GitHub App, Go SDK, Node.js SDK
  • GitHub Marketplace Integration - Verified GitHub App with identity orchestration
  • Multi-Language SDKs - Native Go and TypeScript SDKs
  • Enhanced Documentation - Package-specific docs and architecture guides
  • Docker Deployment - Production-ready containers for all packages
  • Security Implementation - Rate limiting, validation, security headers

⚙️ Phase 3: Core Features (🔄 In Progress - Q2 2025)

  • 🔄 User Management Dashboard - Complete CRUD interface
  • 🔄 Domain Administration - Multi-domain support
  • 🔄 Security Enhancements - Rate limiting, validation, CORS
  • 📋 API Documentation - Comprehensive API docs
  • 📋 Testing Suite - Unit and integration tests
  • 📋 Performance Optimization - Caching and optimization

🌟 Phase 4: Identity Protocols (Q3 2025)

  • 📋 OAuth 2.0 Server - Complete OAuth 2.0 implementation
  • 📋 OpenID Connect - OIDC provider capabilities
  • 📋 SAML Support - SAML 2.0 identity provider
  • 📋 Multi-Factor Auth - TOTP and WebAuthn support
  • 📋 Session Management - Advanced session handling

🎯 Phase 5: Enterprise Features (Q4 2025)

  • 📋 Advanced Security - Audit logging, encryption at rest
  • 📋 Identity Federation - External identity provider support
  • 📋 Directory Integration - LDAP/Active Directory sync
  • 📋 High Availability - Clustering and failover
  • 📋 Mobile Application - React Native companion app

💻 Development

🎯 Enhanced Make Command Interface

The project uses a comprehensive Makefile with 60+ commands for streamlined development across Go, TypeScript, and the new package ecosystem:

# 🚀 Quick Start & Development
make quick-start          # Install, migrate, and start dev servers
make dev                 # Start all services (frontend + backend)
make dev-frontend        # Frontend only (port 3000)
make dev-backend         # Backend only (port 8080)

# 📦 Package Development (NEW)
make dev-github          # Start GitHub App development
make build-packages      # Build all packages
make test-packages       # Test all packages
make docs-packages       # Generate package documentation

# 🔧 Go Backend Development
make go-server           # Start Go server directly
make go-build            # Build Go binary
make go-test             # Run Go tests
make go-mod-tidy         # Clean Go dependencies
make go-fmt              # Format Go code

# 🏗️ Building & Production
make build               # Build all packages
make build-frontend       # Frontend production build
make build-packages      # Build all package ecosystem
make start               # Start production servers

# 🔧 Code Quality & Testing
make lint                # Lint all packages
make lint-fix            # Auto-fix linting issues
make typecheck           # TypeScript type checking
make format              # Format code with Prettier
make test                # Run all tests
make test-coverage       # Run tests with coverage

# 🗄️ Database Management
make db-generate         # Generate Prisma client
make db-migrate          # Run database migrations
make db-studio           # Open Prisma Studio
make db-seed             # Seed development data
make db-reset            # Reset database

# 🛠️ CLI Tools
make cli                 # Run CLI commands
make cli-install         # Install CLI globally

# 🐳 Docker & Deployment
make docker-build        # Build Docker image
make docker-run          # Run with Docker Compose
make docker-stop         # Stop Docker services
make docker-packages     # Build all package containers

# 🔧 Maintenance & Utilities
make clean               # Clean build artifacts
make reset               # Reset project to clean state
make health              # Check service health
make status              # Show project status
make audit               # Security audit dependencies

📋 Evolved Development Workflow

# New developer setup
make quick-start

# Daily development
make dev                 # Start working (Go + TypeScript)
make lint-fix            # Fix code issues
make typecheck           # Verify types
make test                # Run tests

# Package-specific development
make dev-github          # GitHub App development
cd package/github        # Work on GitHub App
cd package/golang        # Work on Go SDK
cd package/node          # Work on Node.js SDK

# Go-specific development
cd server
go run main.go          # Start Go server
go test ./...           # Run Go tests
go fmt ./...            # Format Go code
go mod tidy             # Clean dependencies

# TypeScript-specific development
make dev-frontend       # Frontend only
make lint               # Check code quality
make typecheck          # Verify types

# Before committing
make format             # Format code
make lint               # Check code quality
make typecheck          # Verify types

# Database changes
make db-migrate         # Apply migrations
make db-studio          # Browse database

# Production deployment
make build              # Build everything
make docker-build       # Create Docker image
make docker-run         # Deploy

🎯 Advanced Commands

# Performance & Monitoring
make perf-build          # Build with performance analysis
make metrics             # Show project metrics
make monitor             # Start monitoring tools

# Environment Management
make env-dev             # Setup development environment
make env-prod            # Setup production environment

# Backup & Recovery
make backup              # Create project backup
make restore-backup BACKUP=filename.tar.gz

# CI/CD Helpers
make ci-install          # Install for CI environment
make ci-build            # Build for CI
make ci-test             # Test for CI

# Project Information
make tree                # Show project structure
make ports               # Show used ports
make deps                # Show dependency tree
make help                # Show all commands

📋 Enhanced Development Guidelines

  • Make-First Workflow - Use make commands for all operations
  • Go Best Practices - Follow Go conventions for backend code
  • TypeScript Strict Mode - All frontend code must pass strict type checking
  • Package Standards - Follow package-specific guidelines and conventions
  • Hybrid Monorepo Best Practices - Use workspace-specific dependencies
  • Conventional Commits - Use standardized commit messages
  • Component Structure - Follow established patterns for React components
  • API Design - RESTful endpoints with proper HTTP methods
  • Error Handling - Comprehensive error handling and logging
  • Security First - Validate all inputs and implement proper authentication

🔐 Authentication System

🎯 Complete Hybrid Implementation

The authentication system is fully implemented with Go backend and TypeScript frontend:

  • JWT Tokens - Secure token-based authentication with refresh mechanism
  • Login/Register Forms - Complete user authentication flow with validation
  • Auth Context - Global authentication state management in React
  • Protected Routes - Route-based authentication guards
  • Go API Endpoints - Complete authentication API with Gin framework
  • Password Security - bcrypt hashing for secure password storage
  • Session Management - LocalStorage-based session persistence

🔄 Hybrid Authentication Flow

// Go Backend Registration Process
1. User submits registrationAPI validation
2. Password hashing with bcryptDatabase storage
3. JWT tokens generatedClient receives tokens
4. Auth context updatesUser logged in

// Go Backend Login Process
1. User submits credentialsAPI validation
2. Password verificationJWT token generation
3. Tokens storedAuth context updated
4. Redirect to dashboardProtected route access

// Token Refresh
1. Background token refreshAutomatic renewal
2. Invalid tokensRedirect to login
3. Session expirationClean logout

🤝 Contributing

We're looking for contributors to help build this comprehensive evolved identity server! Whether you're experienced with Go, TypeScript, GitHub Apps, identity protocols, web development, or package development, there's a place for you.

🎯 How to Get Started

  1. Fork the repository and create a feature branch
  2. Check the issues for tasks that need help
  3. Join discussions about architecture and features
  4. Start small - Documentation, tests, or minor features
  5. Follow our code standards and commit guidelines

🏗️ Areas Needing Help

  • Go Backend Development - API endpoints, business logic, security, identity protocols
  • TypeScript Frontend Development - React components, UI/UX design, dashboard
  • Package Development - GitHub App enhancements, Go SDK features, Node.js SDK improvements
  • Database Design - Schema development, migrations, optimization
  • Identity Protocol Experts - OAuth 2.0, OpenID Connect, SAML implementation
  • Security Specialists - Authentication, encryption, session management
  • DevOps Engineers - Docker, deployment, CI/CD for hybrid stack
  • GitHub App Experts - Webhook handling, Marketplace integration
  • CLI Development - Command-line tools and utilities
  • Documentation - API docs, user guides, tutorials, package docs

📝 Evolved Contribution Process

  1. Choose an area - Core server, frontend, or specific package
  2. Read package-specific docs - Understand package conventions
  3. Create a branch with a descriptive name
  4. Implement your changes following our evolved guidelines
  5. Test thoroughly in all relevant environments
  6. Submit a pull request with clear description and testing
  7. Address feedback from maintainers and community

📞 Support & Community

💬 Get Help

🐛 Reporting Issues

When reporting bugs, please include:

  • Clear description of the problem
  • Steps to reproduce
  • Environment information (Go version, Node.js version, OS, etc.)
  • Error logs or screenshots
  • Expected vs actual behavior
  • Package-specific information (if applicable)

📊 Project Status

Component Status Technology Evolution Notes
Hybrid Architecture ✅ Working Go + TypeScript Enhanced Monorepo with package ecosystem
Authentication System ✅ Working JWT (Go/TS) Complete Full implementation with forms
Go Backend API ✅ Working Gin + GORM Enhanced High-performance with PostgreSQL
Frontend Framework ✅ Working Next.js 16 + React 19.2.1 Enhanced shadcn/ui + Tailwind CSS v4
Package Ecosystem ✅ Working Multi-Language NEW GitHub App + Go SDK + Node.js SDK
GitHub App ✅ Working TypeScript + Fastify NEW Verified Marketplace app
Go SDK ✅ Working Native Go NEW High-performance client library
Node.js SDK ✅ Working TypeScript NEW Universal client with examples
UI Component Library ✅ Working shadcn/ui + Tailwind CSS Enhanced Complete component set
Database Layer ✅ Working GORM + PostgreSQL Enhanced Auto-migrations + user models
CLI Tools ✅ Working TypeScript Enhanced Complete command-line interface
Docker Deployment ✅ Working Multi-Stage NEW All packages containerized
User Management 🔄 In Progress Go/TS Enhanced Dashboard interface
Domain Management 📋 Planned Go/TS Planned Multi-domain support
Identity Protocols 📋 Planned Go Planned OAuth/OIDC/SAML
Testing Suite 📋 Planned Go/TS Planned Unit and integration tests
Documentation ✅ Working Go/TS Enhanced Package-specific docs

🏆 Sponsors & Partners

Development led by Sky Genesis Enterprise

We're looking for sponsors and partners to help accelerate development of this open-source evolved identity server project.

🤝 Become a Sponsor


📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

MIT License

Copyright (c) 2025 Sky Genesis Enterprise

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

🙏 Acknowledgments

  • Sky Genesis Enterprise - Project leadership and evolution
  • Go Community - High-performance programming language and ecosystem
  • Gin Framework - Lightweight HTTP web framework
  • GORM Team - Modern Go database library
  • Next.js Team - Excellent React framework
  • React Team - Modern UI library
  • shadcn/ui - Beautiful component library
  • GitHub - Marketplace platform and integration tools
  • Fastify Team - High-performance Node.js framework
  • pnpm - Fast, disk space efficient package manager
  • Make - Universal build automation and command interface
  • Docker Team - Container platform and tools
  • Open Source Community - Tools, libraries, and inspiration

🚀 Join Us in Building the Evolved Future of Identity Infrastructure!

⭐ Star This Repo🐛 Report Issues💡 Start a Discussion


🔧 Rapid Evolution - Complete Package Ecosystem with GitHub Marketplace Integration!

Made with ❤️ by the Sky Genesis Enterprise team

Building an evolved identity server with complete authentication, package ecosystem, and GitHub integration

About

An Enterprise OAuth2/OIDC support, multi-factor authentication, and secure account management for applications and services.

Topics

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Sponsor this project

Packages

 
 
 

Contributors 2

  •  
  •