refactor: rename to openclaw

This commit is contained in:
Peter Steinberger
2026-01-30 03:15:10 +01:00
parent 4583f88626
commit 9a7160786a
2357 changed files with 16688 additions and 16788 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
# Google Antigravity Auth (Clawdbot plugin)
# Google Antigravity Auth (OpenClaw plugin)
OAuth provider plugin for **Google Antigravity** (Cloud Code Assist).
@@ -7,7 +7,7 @@ OAuth provider plugin for **Google Antigravity** (Cloud Code Assist).
Bundled plugins are disabled by default. Enable this one:
```bash
clawdbot plugins enable google-antigravity-auth
openclaw plugins enable google-antigravity-auth
```
Restart the Gateway after enabling.
@@ -15,7 +15,7 @@ Restart the Gateway after enabling.
## Authenticate
```bash
clawdbot models auth login --provider google-antigravity --set-default
openclaw models auth login --provider google-antigravity --set-default
```
## Notes
+2 -2
View File
@@ -1,7 +1,7 @@
import { createHash, randomBytes } from "node:crypto";
import { readFileSync } from "node:fs";
import { createServer } from "node:http";
import { emptyPluginConfigSchema } from "clawdbot/plugin-sdk";
import { emptyPluginConfigSchema } from "openclaw/plugin-sdk";
// OAuth constants - decoded from pi-ai's base64 encoded values to stay in sync
const decode = (s: string) => Buffer.from(s, "base64").toString();
@@ -32,7 +32,7 @@ const RESPONSE_PAGE = `<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Moltbot Antigravity OAuth</title>
<title>OpenClaw Antigravity OAuth</title>
</head>
<body>
<main>
@@ -1,9 +1,9 @@
{
"name": "@moltbot/google-antigravity-auth",
"version": "2026.1.29",
"name": "@openclaw/google-antigravity-auth",
"version": "2026.1.27-beta.1",
"type": "module",
"description": "Moltbot Google Antigravity OAuth provider plugin",
"moltbot": {
"description": "OpenClaw Google Antigravity OAuth provider plugin",
"openclaw": {
"extensions": [
"./index.ts"
]