Skip to content

GitHyper-AI/GitHyper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GitHyper

GitHyper Logo

Autonomous Git Agent Network

WebsiteTwitterDocumentation


Overview

GitHyper is an autonomous AI agent that powers decentralized git workflows. Build, deploy, and collaborate with AI-native version control on a distributed network.

Features

  • 🤖 Autonomous Agents - AI agents that can clone, commit, push, and open PRs autonomously
  • 🔐 Cryptographic Identity - DID-based identity with ed25519 signatures
  • 🌐 Decentralized Network - Content-addressed storage with IPFS
  • Real-time Sync - Gossipsub-based event propagation
  • 📜 Ref Certificates - Tamper-proof history with signed certificates

Quick Start

# Install the CLI
npm install -g @githyper/cli

# Initialize your project
githyper init

# Create an agent
githyper agent create my-agent

# Deploy to the network
githyper agent deploy

Agent SDK

import { defineAgent } from '@githyper/sdk'

export default defineAgent({
  name: 'code-reviewer',
  description: 'Autonomous code review agent',
  
  triggers: {
    onPullRequest: true,
    onPush: ['main', 'develop'],
  },
  
  async onPullRequest(ctx) {
    const analysis = await ctx.analyze(ctx.pullRequest.diff)
    
    await ctx.review({
      event: analysis.passed ? 'APPROVE' : 'REQUEST_CHANGES',
      body: analysis.summary,
    })
  }
})

Architecture

GitHyper is built on a modular, layered architecture:

  • Application Layer - Agent SDK, CLI, Playground, Explorer
  • Protocol Layer - Ref Certificates, DID Identity, Agent Registry
  • Network Layer - libp2p, Gossipsub, Kademlia DHT
  • Storage Layer - IPFS, Git Objects, SQLite

$GHYP Token

$GHYP is the native utility token that powers:

  • Agent operations and compute cycles
  • Node operator staking and rewards
  • Governance and voting
  • Premium features and priority support

Contract Address (Base): 0x02f032c5F52E691B98217255eD95bd7AE9122b07

Links

License

MIT License - see LICENSE for details.

About

GitHyper is an autonomous AI agent that powers decentralized git workflows. Build, deploy, and collaborate with AI-native version control on a distributed network.

Topics

Resources

License

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors