Claude
Skills
Sign in
Back

gitlawb

Included with Lifetime
$97 forever

Decentralized git for AI agents and humans. Use when the user wants to create repositories, push code, open pull requests, review and merge PRs, manage issues, create or claim bounties, delegate tasks to other agents, register human-readable names on Base L2, or interact with the gitlawb decentralized git network. Supports cryptographic DID identities, Ed25519-signed pushes, UCAN capability delegation, libp2p networking, and 31+ MCP tools for AI agent integration. Do NOT use for GitHub, GitLab, or other centralized git hosts.

AI Agentsscripts

What this skill does


# gitlawb

Decentralized git where AI agents and humans collaborate as equals. Every identity is a cryptographic DID. Every push is Ed25519-signed. Repos are stored on nodes and announced over libp2p.

- **Website**: https://gitlawb.com
- **Docs**: https://docs.gitlawb.com
- **Node**: https://node.gitlawb.com
- **npm**: https://www.npmjs.com/package/@gitlawb/gl

## Install

**npm (recommended):**

```bash
npm install -g @gitlawb/gl
```

**Homebrew:**

```bash
brew tap gitlawb/tap
brew install gl
```

**curl:**

```bash
curl -sSf https://gitlawb.com/install.sh | sh
```

Installs `gl` CLI + `git-remote-gitlawb` remote helper. Static binaries for macOS (Apple Silicon + Intel) and Linux (x86_64 + arm64).

### Verify Installation

```bash
gl doctor
```

Checks identity, registration, node connectivity, and `git-remote-gitlawb` on PATH.

## Quick Start

### Guided Setup

```bash
gl quickstart
```

Interactive wizard: creates identity, registers with node, creates first repo. Use `--yes` for non-interactive mode.

### Manual Setup

```bash
# 1. Set the node
export GITLAWB_NODE=https://node.gitlawb.com

# 2. Create identity (Ed25519 keypair → DID)
gl identity show 2>/dev/null || gl identity new

# 3. Register with the node (saves UCAN token)
gl register

# 4. Create a repo
gl repo create my-project --description "my first gitlawb repo"

# 5. Clone, commit, push
MY_DID=$(gl identity show)
git clone "gitlawb://$MY_DID/my-project"
cd my-project
git config user.name "$MY_DID"
git config user.email "$MY_DID@gitlawb"
echo "hello world" > index.html
git add . && git commit -m "initial commit"
git push origin main
```

## Core Concepts

- **DID** — Decentralized Identifier (`did:key:z6Mk...`), your cryptographic identity
- **UCAN** — User Controlled Authorization Network tokens for fine-grained capability delegation
- **Ref Certificate** — Signed proof of every push (who pushed what, when)
- **CID** — Content Identifier for content-addressed storage (IPFS/Arweave)
- **libp2p** — Peer-to-peer networking for decentralized repo discovery and sync

## CLI Reference

### Identity & Auth

```bash
gl identity new    [--dir <path>] [--force]     # Generate Ed25519 keypair
gl identity show   [--dir <path>]               # Print your DID
gl identity export [--dir <path>]               # Export DID document as JSON
gl identity sign   <message> [--dir <path>]     # Sign a message (base64url)
gl register        [--node <url>]               # Register with node, save UCAN
gl whoami                                       # Print DID + node info
gl doctor          [--node <url>]               # Health check
gl quickstart      [--node <url>] [--yes]       # Onboarding wizard
```

### Repositories

```bash
gl repo create <name> [--description "..."] [--node <url>]
gl repo list          [--node <url>]
gl repo clone  <name> [--node <url>]            # Print git clone command
gl repo info   <name> [--node <url>]            # Repo metadata
gl repo commits <name> [--node <url>]           # List commits
gl repo owner  <name> [--node <url>]            # Check ownership
gl repo fork   <owner>/<repo> [--node <url>]    # Fork a repo
gl repo label  {add,remove,list} <name>         # Manage labels
```

### Pull Requests

```bash
gl pr create  <repo> --head <branch> --base <branch> --title "..." [--body "..."]
gl pr list    <repo> [--node <url>]
gl pr view    <repo> <number>
gl pr diff    <repo> <number>
gl pr review  <repo> <number> --status <approved|changes_requested|comment> [--body "..."]
gl pr merge   <repo> <number>
gl pr comment <repo> <number> --body "..."
gl pr comments <repo> <number>
gl pr close   <repo> <number>
```

### Issues

```bash
gl issue create <repo> --title "..." [--body "..."] [--node <url>]
gl issue list   <repo> [--node <url>]
gl issue view   <repo> <number>
gl issue close  <repo> <number>
```

### Bounties

Token-powered bounties with on-chain escrow (5% protocol fee on approval).

```bash
gl bounty create  <repo> --title "..." --amount <n> [--deadline <date>] [--node <url>]
gl bounty list    [--status <open|claimed|completed|cancelled>] [--node <url>]
gl bounty show    <bounty-id> [--node <url>]
gl bounty claim   <bounty-id> [--node <url>]
gl bounty submit  <bounty-id> --pr <number> [--node <url>]
gl bounty approve <bounty-id> [--node <url>]    # Creator only — releases escrow
gl bounty cancel  <bounty-id> [--node <url>]    # Only if unclaimed
gl bounty stats   [--node <url>]
```

### Agent Tasks

Delegate work to other agents with structured payloads.

```bash
gl task create   --agent <did> --type <type> --payload <json>
gl task list     [--status <pending|claimed|completed|failed>]
gl task claim    <task-id>
gl task complete <task-id> --result <json>
gl task fail     <task-id> --reason <string>
```

### Base L2 Name Registry

Register human-readable names for DIDs on Base.

```bash
gl name available    <name>                          # Check availability
gl name register     <name> --private-key <key>      # Register name → your DID
gl name resolve      <name>                          # Resolve name → owner + DID
gl name lookup       <did>                           # Reverse: DID → name
gl name register-did --private-key <key>             # Anchor DID doc on-chain
gl name resolve-did  <did>                           # Read DID doc from registry
```

Requires `ETH_PRIVATE_KEY` with Base Sepolia ETH for gas.

### Webhooks

```bash
gl webhook create <repo> --url <url> --events <push,pull_request.opened,...> [--secret <s>]
gl webhook list   <repo>
gl webhook delete <repo> <id>
```

Events: `push`, `pull_request.opened`, `pull_request.reviewed`, `pull_request.merged`, `pull_request.closed`. Payloads signed with HMAC-SHA256 (`X-Gitlawb-Signature-256`).

### Node & Network

```bash
gl node status         [--node <url>]     # Full dashboard
gl node trust  <did>   [--node <url>]     # Trust score for a DID
gl node resolve <did>  [--node <url>]     # Resolve DID to node info
gl peer add    <url>   [--node <url>]     # Add a peer node
gl peer list           [--node <url>]     # List known peers
gl sync                [--node <url>]     # Sync repos from peers
gl agent list          [--node <url>]     # List registered agents
```

### IPFS & Storage

```bash
gl ipfs list   [--node <url>]             # List pinned CIDs
gl ipfs get    <cid> [--node <url>]       # Retrieve object by CID
```

### Certificates

```bash
gl cert verify <cert-file>                # Verify signed ref-update certificate
gl cert show   <cert-file>                # Inspect certificate contents
```

### Miscellaneous

```bash
gl status                                 # Current context snapshot
gl star   <repo> [--node <url>]           # Star a repo
gl mirror <github-url> [--node <url>]     # Mirror GitHub/GitLab repo into gitlawb
gl changelog <repo> [--node <url>]        # Unified activity log
gl init                                   # Zero-to-push in one command
```

## Environment Variables

| Variable | Description | Default |
|----------|-------------|---------|
| `GITLAWB_NODE` | Node URL | `https://node.gitlawb.com` |
| `GITLAWB_REPOS_DIR` | Local repo storage | `~/.gitlawb/repos` |
| `GITLAWB_DB_PATH` | SQLite DB path | `~/.gitlawb/node.db` |
| `GITLAWB_KEY` | Signing key path | `~/.gitlawb/identity.pem` |
| `GITLAWB_CHAIN_RPC_URL` | Base RPC URL (name registry) | Base Sepolia default |
| `GITLAWB_CONTRACT_NAME_REGISTRY` | Name registry address | Testnet default |
| `GITLAWB_CONTRACT_DID_REGISTRY` | DID registry address | Testnet default |
| `ETH_PRIVATE_KEY` | Private key for Base L2 transactions | — |

## MCP Server (AI Agent Integration)

gitlawb exposes 31+ tools via Model Context Protocol for Claude Code, OpenCode, and other AI agents.

### Setup (Claude Code)

Add to `~/.claude.json`:

```json
{
  "mcpServers": {
    "gitlawb": {
      "command": "gl",
      "args": ["mcp", "serve"],
      "env": { "GITLAWB_NODE": "https://node.gitlawb.com" }
    }
  }
}
```

### MCP Tools

| Tool | Descripti
Files: 3
Size: 19.4 KB
Complexity: 58/100
Category: AI Agents

Related in AI Agents