Skip to content

Commit 1370502

Browse files
AgentPass Setupclaude
andcommitted
feat: add whitepaper page, credential verifier, and Cloudflare routing
- Add /whitepaper page rendering the full protocol whitepaper with styled HTML, table of contents, and navigation - Add /verify page with browser-side credential verification tool (structure checks, expiration, permissions, glob matching) - Replace vercel.json with Cloudflare Pages _redirects and _headers - Add Whitepaper and Verify links to homepage nav and footer - Pin workspace package versions from npm publish Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent c68f058 commit 1370502

File tree

11 files changed

+1285
-24
lines changed

11 files changed

+1285
-24
lines changed

integrations/a2a-adapter/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
"typecheck": "tsc --noEmit"
1919
},
2020
"dependencies": {
21-
"@astracipher/core": "*",
22-
"@astracipher/crypto": "*",
21+
"@astracipher/core": "^0.1.0",
22+
"@astracipher/crypto": "^0.1.0",
2323
"express": "^4.18.0",
2424
"express-rate-limit": "^8.2.1",
2525
"helmet": "^8.1.0",

integrations/mcp-server/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@
66
"type": "module",
77
"scripts": { "build": "tsc", "dev": "tsx src/index.ts", "clean": "rm -rf dist" },
88
"dependencies": {
9-
"@astracipher/core": "*",
10-
"@astracipher/crypto": "*",
9+
"@astracipher/core": "^0.1.0",
10+
"@astracipher/crypto": "^0.1.0",
1111
"@modelcontextprotocol/sdk": "^1.0.0"
1212
},
1313
"devDependencies": { "tsx": "^4.7.0", "typescript": "^5.4.0" },
14+
"files": ["dist", "README.md"],
1415
"license": "Apache-2.0"
1516
}

packages/cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
"typecheck": "tsc --noEmit"
1717
},
1818
"dependencies": {
19-
"@astracipher/core": "*",
20-
"@astracipher/crypto": "*",
19+
"@astracipher/core": "^0.1.0",
20+
"@astracipher/crypto": "^0.1.0",
2121
"commander": "^12.0.0",
2222
"chalk": "^5.3.0",
2323
"ora": "^8.0.0",

packages/compliance-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"typecheck": "tsc --noEmit"
1919
},
2020
"dependencies": {
21-
"@astracipher/core": "*"
21+
"@astracipher/core": "^0.1.0"
2222
},
2323
"devDependencies": {
2424
"typescript": "^5.4.0",

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"lint": "eslint src/"
2121
},
2222
"dependencies": {
23-
"@astracipher/crypto": "*",
23+
"@astracipher/crypto": "^0.1.0",
2424
"uuid": "^9.0.0"
2525
},
2626
"devDependencies": {

site/_headers

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/*
2+
X-Frame-Options: DENY
3+
X-Content-Type-Options: nosniff
4+
Referrer-Policy: strict-origin-when-cross-origin

site/_redirects

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Clean URLs for Cloudflare Pages
2+
/whitepaper /whitepaper.html 200
3+
/verify /verify.html 200

site/index.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,8 @@
106106
<a href="#features">Features</a>
107107
<a href="#how-it-works">How It Works</a>
108108
<a href="#live-demo">Live Demo</a>
109-
<a href="#pricing">Pricing</a>
109+
<a href="/whitepaper">Whitepaper</a>
110+
<a href="/verify">Verify</a>
110111
<a href="https://github.com/san-techie21/astracipher" target="_blank" rel="noopener">GitHub</a>
111112
<a href="/docs" class="btn btn-sm btn-primary">Docs</a>
112113
</div>
@@ -582,6 +583,8 @@ <h2 class="reveal">The identity layer for AI agents is missing. Build it with us
582583
<div>
583584
<h4>Protocol</h4>
584585
<a href="/docs">Documentation</a>
586+
<a href="/whitepaper">Whitepaper</a>
587+
<a href="/verify">Verify Credential</a>
585588
<a href="https://github.com/san-techie21/astracipher" target="_blank" rel="noopener">GitHub</a>
586589
<a href="https://www.npmjs.com/org/astracipher" target="_blank" rel="noopener">npm Packages</a>
587590
<a href="https://pypi.org/project/astracipher/" target="_blank" rel="noopener">PyPI</a>

site/vercel.json

Lines changed: 0 additions & 15 deletions
This file was deleted.

0 commit comments

Comments
 (0)