TopRank Skills

Home / Claw Skills / Others / Max Auth
Official OpenClaw rules 15%

Max Auth

Max Auth

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Max Auth 技能。 若已安装,则直接安装 Max Auth 技能。

Overview

Skill Key
felipematos/max-auth
Author
felipematos
Source Repo
openclaw/skills
Version
-
Source Path
skills/felipematos/max-auth
Latest Commit SHA
2e672fe1ab77a45e1814d7acea2f9ba66d55264e

Extracted Content

SKILL.md excerpt

# Max Auth

Biometric + password authentication server for OpenClaw. Runs at `http://127.0.0.1:8456`, exposed via Tailscale at `https://<hostname>/auth`.

## Quick Setup

```bash
mkdir -p ~/.max-auth
cp <skill>/assets/auth-server.js ~/.max-auth/
cp <skill>/assets/package.json ~/.max-auth/
cd ~/.max-auth && npm install
node auth-server.js set-password 'your_password'
```

Install as systemd service + Tailscale serve — see `references/api.md` for full instructions.

## Checking Auth Before Sensitive Actions

```bash
# Shell
STATUS=$(curl -s http://127.0.0.1:8456/status)
HAS_SESSION=$(echo $STATUS | python3 -c "import sys,json; print(json.load(sys.stdin)['hasSession'])")
[ "$HAS_SESSION" = "True" ] || { echo "⚠️ Auth required: https://<hostname>/auth"; exit 1; }
```

**Sensitive actions requiring auth:** delete files, install packages, system config changes, sending messages/emails to third parties, external API mutations.

**Safe without auth:** read, search, list, web_fetch, memory_search.

When auth is missing, refuse the action and tell the user: "⚠️ Autenticação necessária. Acesse `https://<hostname>/auth`."

## References

- **Full API + setup**: `references/api.md`
- **Agent integration patterns**: `references/integration.md`

Related Claw Skills