Skip to content

Commit 8dd6be3

Browse files
Move ActionProof to AgentPatternLabs scope
1 parent 99b0ef3 commit 8dd6be3

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @razroo/actionproof
1+
# @agent-pattern-labs/actionproof
22

33
Action-bound, signed challenge-response verification for proving fresh autonomous AI-agent work.
44

@@ -11,7 +11,7 @@ Important limitation: no npm package can mathematically prove that a responder i
1111
## Install
1212

1313
```sh
14-
npm install @razroo/actionproof
14+
npm install @agent-pattern-labs/actionproof
1515
```
1616

1717
## Library usage
@@ -23,7 +23,7 @@ import {
2323
solvePublicTask,
2424
verifyCapability,
2525
verifyResponse
26-
} from "@razroo/actionproof";
26+
} from "@agent-pattern-labs/actionproof";
2727

2828
const secret = process.env.ACTIONPROOF_SECRET!;
2929
const post = {
@@ -115,7 +115,7 @@ import {
115115
verifyStrictGrantedAutonomousDeploymentAction,
116116
verifyStrictGrantedAutonomousAction,
117117
verifyStrictAutonomousResponse
118-
} from "@razroo/actionproof";
118+
} from "@agent-pattern-labs/actionproof";
119119

120120
const runtimeSecret = process.env.ACTIONPROOF_RUNTIME_SECRET!;
121121

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"name": "@razroo/actionproof",
3-
"version": "0.2.2",
2+
"name": "@agent-pattern-labs/actionproof",
3+
"version": "0.3.0",
44
"description": "Action-bound, signed proof challenges for verifying fresh autonomous agent work.",
55
"type": "module",
66
"repository": {
77
"type": "git",
8-
"url": "git+ssh://git@github.com/razroo/agent-proof.git"
8+
"url": "git+ssh://git@github.com/Agent-Pattern-Labs/agent-proof.git"
99
},
1010
"main": "./dist/index.js",
1111
"types": "./dist/index.d.ts",

test/challenge.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ const secret = "test-secret";
5151
const runtimeSecret = "runtime-attestation-secret";
5252
const now = "2026-04-29T12:00:00.000Z";
5353

54-
describe("@razroo/actionproof", () => {
54+
describe("@agent-pattern-labs/actionproof", () => {
5555
it("creates a randomized challenge that can be answered and verified", () => {
5656
const challenge = createChallenge({
5757
secret,

0 commit comments

Comments
 (0)