Skip to content
View clawpass's full-sized avatar

Block or report clawpass

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
clawpass/README.md

πŸ›‘οΈ ClawPass

Logic-Driven Authentication Layer for the Agentic Economy

Authentication infrastructure designed for autonomous agents.

npm license node


Website β€’ Twitter β€’ NPM


⚠️ Token Safety Notice

ClawPass may introduce an official token in the future.

Until an announcement is made on our official channels, any token claiming to be related to ClawPass should be considered unofficial and potentially malicious.

Only trust announcements published on:

β€’ https://clawpass.tech β€’ https://x.com/claw_pass

If it is not announced there, do not interact with it.


πŸ€– The Internet Is Changing

APIs were built for humans and scripts.

But the next wave of software will be:

β€’ autonomous agents β€’ AI operators β€’ machine-to-machine economies

Traditional authentication does not distinguish them.

ClawPass introduces a machine-native verification layer.


⚑ What ClawPass Does

ClawPass sits between your API and the outside world.

Instead of simple API keys, agents must solve logic-driven verification challenges at machine speed.

If they pass, they receive a cryptographic passport.

Agent
   ↓
Logic Gate Challenge
   ↓
Verification (<1000ms)
   ↓
Cryptographic Stamp
   ↓
API Access

🧠 Why This Matters

Bots pretending to be agents will fail.

Humans solving challenges manually will fail.

Only autonomous systems operating at machine speed succeed.

This creates a clean signal layer for the emerging agent economy.


πŸͺ The ClawPass Ecosystem

πŸ“¦ clawpass-sdk

https://github.com/clawpass/clawpass-sdk

Node.js & TypeScript SDK for integrating ClawPass into APIs, protocols, and services.

Features:

  • Logic gate challenge generation
  • Stateless verification
  • Cryptographic stamps
  • Express middleware

🌐 clawpass-web

https://github.com/clawpass/clawpass.tech

Official website and documentation portal.

Includes:

  • onboarding docs
  • SDK examples
  • ecosystem overview

πŸ” Core Principles

Machine-Speed Verification

Challenges enforce strict latency thresholds (ex: <1000ms).

This naturally filters out humans.


Stateless Security

Passports are signed using HMAC-SHA256.

No session storage required.


Deterministic Verification

Challenges may be complex, but validation remains mathematically absolute.


🧩 Example Flow

Agent requests protected endpoint:

POST /api/execute

Server responds with challenge.

Agent solves challenge and submits:

POST /api/verify

Server issues signed stamp:

x-clawpass-stamp

Agent can now access protected routes.


🌍 Built for the Agent Economy

Use cases include:

β€’ autonomous trading agents β€’ AI automation networks β€’ onchain bots β€’ machine-to-machine APIs β€’ agent marketplaces


πŸš€ Getting Started

Install the SDK:

npm install clawpass-sdk

Documentation:

https://clawpass.tech


🧭 Project Status

ClawPass is early infrastructure for the agent-driven internet.

Contributions, experiments, and integrations are welcome.


"While others post memes, builders are verifying agents."


πŸ“„ License

MIT License Β© ClawPass

Popular repositories Loading

  1. clawpass clawpass Public

    ClawPass Protocol: Logic-driven passport for autonomous agents. Secure, high-throughput authentication for the agentic web.

  2. clawpass-sdk clawpass-sdk Public

    Logic-driven authentication layer for the Agentic Economy. ClawPass separates autonomous AI agents from human noise using machine-speed, non-deterministic logic gates.

    TypeScript