diff --git a/src/middleware/responseHeaders.ts b/src/middleware/responseHeaders.ts
index 43dd381..0d12c7d 100644
--- a/src/middleware/responseHeaders.ts
+++ b/src/middleware/responseHeaders.ts
@@ -42,10 +42,12 @@ export const responseHeadersMiddleware: MiddlewareHandler = async (c, next) => {
normalizedPath === '/' ||
normalizedPath === '/leaderboard' ||
normalizedPath === '/explorer' ||
+ normalizedPath === '/directory' ||
normalizedPath === '/certify' ||
normalizedPath === '/pricing' ||
normalizedPath === '/methodology' ||
normalizedPath === '/portal' ||
+ normalizedPath === '/reviewer' ||
normalizedPath === '/billing/success' ||
normalizedPath === '/terms' ||
normalizedPath === '/privacy' ||
diff --git a/src/routes/blog.ts b/src/routes/blog.ts
index 25eeb5c..1f98525 100644
--- a/src/routes/blog.ts
+++ b/src/routes/blog.ts
@@ -268,7 +268,7 @@ ${blogNav}
Sybil attacks — where one operator creates many fake identities to accumulate outsized influence or rewards — are the oldest trick in decentralized systems. But agents make sybils cheaper to create and harder to detect than ever before.
- At DJD Agent Score, we analyze on-chain transaction patterns to assign reputation scores to AI agent wallets. Here are five behavioral signatures that reliably expose sybil agents — even when their operators try to disguise them.
+ At DJD Agent Score, we analyze on-chain transaction patterns to assign trust scores to AI agent wallets. Here are five behavioral signatures that reliably expose sybil agents — even when their operators try to disguise them.
@@ -348,10 +348,10 @@ ${blogNav}
-
DJD Agent Score is a reputation scoring engine for autonomous AI agents. Scores are paid via x402 micropayments and published to the ERC-8004 Reputation Registry on Base mainnet.
+
DJD Agent Score is a trust scoring engine for autonomous AI agents. Scores are paid via x402 micropayments and published to the ERC-8004 Reputation Registry on Base mainnet.
@@ -445,7 +445,7 @@ Standard: ERC-8004 Reputation Registry
DJD Agent Score publishes to the ERC-8004 Reputation Registry on Base mainnet. Scores are paid via x402 micropayments. Registry reads are free and permissionless.
@@ -553,7 +553,7 @@ if (score >= 30 || confidence < 20) allowWithLimits();
DJD Agent Score evaluates AI agent wallets across five behavioral dimensions. Scores are published to the ERC-8004 Reputation Registry on Base mainnet.
@@ -703,8 +703,8 @@ Filter: address = 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913
DJD Agent Score analyzes on-chain behavioral patterns to assign trust scores to AI agent wallets and package them into broader trust surfaces. Scores are published to the ERC-8004 Reputation Registry on Base mainnet.
@@ -796,7 +796,7 @@ if (result.dataSource === 'cached') {
DJD Agent Score analyzes on-chain behavioral patterns to assign trust scores to AI agent wallets and package them into broader trust surfaces. Scores are published to the ERC-8004 Reputation Registry on Base mainnet.
diff --git a/src/routes/legal.ts b/src/routes/legal.ts
index 9cbc34d..a2df6ab 100644
--- a/src/routes/legal.ts
+++ b/src/routes/legal.ts
@@ -58,7 +58,7 @@ legal.get('/.well-known/agent.json', (c) => {
return c.json({
name: 'DJD Agent Score',
description:
- 'On-chain reputation scoring and certification surfaces for autonomous AI agents on Base L2. Score any wallet, inspect certified agents, and evaluate settlement readiness before transacting.',
+ 'On-chain trust scoring and certification surfaces for autonomous AI agents on Base L2. Score any wallet, inspect certified agents, and evaluate settlement readiness before transacting.',
url: publicBaseUrl,
docs: buildPublicUrl('/docs'),
openapi: buildPublicUrl('/openapi.json'),
@@ -67,7 +67,7 @@ legal.get('/.well-known/agent.json', (c) => {
description: 'MCP server for AI agents to query wallet trust scores',
},
capabilities: [
- 'reputation-scoring',
+ 'trust-scoring',
'certified-directory',
'erc-8004-compatibility',
'erc-8183-evaluator-prototype',
diff --git a/src/templates/legal.ts b/src/templates/legal.ts
index bbb3439..1165a57 100644
--- a/src/templates/legal.ts
+++ b/src/templates/legal.ts
@@ -164,12 +164,12 @@ export const privacyContent = `
We do not collect names, email addresses, phone numbers, physical addresses, government identification numbers, biometric data, or any traditional PII. We do not use tracking pixels or browser fingerprinting. We do not integrate with advertising networks. The Service does not have consumer-facing user accounts, social profiles, or password-based logins.
3. How We Use Information
-Service delivery: Calculating reputation scores, processing fraud reports, generating leaderboards, and serving API responses.
+Service delivery: Calculating trust scores, processing fraud reports, generating leaderboards, and serving API responses.
Model improvement: Analyzing query patterns, score outcomes, and transaction data to validate and improve the scoring model.
Integrity systems: Detecting Sybil attacks, gaming attempts, and fraudulent behavior through pattern analysis.
Analytics and reporting: Generating aggregated, anonymized reports on agent economy activity, transaction volumes, and ecosystem health.
Data products: Creating commercial data products including economy reports, fraud intelligence feeds, intent signal reports, and relationship graph analyses. Individual wallet behavior may be included in aggregate datasets but is not sold as individually targeted profiles.
-Research: Contributing to understanding of autonomous agent ecosystems, on-chain reputation systems, and trust infrastructure.
+Research: Contributing to understanding of autonomous agent ecosystems, on-chain trust systems, and trust infrastructure.
4. Data Retention
Blockchain data (transaction history, wallet balances, relationship graphs) is retained indefinitely. This data is publicly available on the blockchain regardless of our retention practices.
@@ -287,7 +287,7 @@ export const leaderboardHtml = `
Agent Leaderboard
- Top AI agent wallets ranked by reputation score on Base
+ Top AI agent wallets ranked by DJD trust score on Base
diff --git a/tests/middleware/responseHeaders.test.ts b/tests/middleware/responseHeaders.test.ts
index deb3c49..30a9aaf 100644
--- a/tests/middleware/responseHeaders.test.ts
+++ b/tests/middleware/responseHeaders.test.ts
@@ -28,12 +28,14 @@ describe('responseHeadersMiddleware', () => {
it('applies the HTML CSP to public product pages', async () => {
const app = new Hono()
app.use('*', responseHeadersMiddleware)
+ app.get('/directory', (c) => c.html(''))
+ app.get('/reviewer', (c) => c.html(''))
app.get('/certify', (c) => c.html(''))
app.get('/pricing', (c) => c.html(''))
app.get('/methodology', (c) => c.html(''))
app.get('/billing/success', (c) => c.html(''))
- for (const path of ['/certify', '/pricing', '/methodology', '/billing/success']) {
+ for (const path of ['/directory', '/reviewer', '/certify', '/pricing', '/methodology', '/billing/success']) {
const res = await app.request(path)
const csp = res.headers.get('Content-Security-Policy') ?? ''
expect(csp).toContain("default-src 'self'")
diff --git a/tests/routes/legal.test.ts b/tests/routes/legal.test.ts
index 5ac4cd8..0251268 100644
--- a/tests/routes/legal.test.ts
+++ b/tests/routes/legal.test.ts
@@ -58,10 +58,12 @@ describe('GET /', () => {
const agentRes = await app.request('/.well-known/agent.json')
expect(agentRes.status).toBe(200)
const agentBody = await agentRes.json()
+ expect(agentBody.description).toContain('trust scoring')
expect(agentBody.url).toBe('https://preview.djdagentscore.test')
expect(agentBody.docs).toBe('https://preview.djdagentscore.test/docs')
expect(agentBody.openapi).toBe('https://preview.djdagentscore.test/openapi.json')
expect(agentBody.payment.discovery).toBe('https://preview.djdagentscore.test/.well-known/x402')
+ expect(agentBody.capabilities).toContain('trust-scoring')
delete process.env.PUBLIC_BASE_URL
delete process.env.PUBLIC_SUPPORT_EMAIL
@@ -76,6 +78,8 @@ describe('GET /', () => {
const body = await res.text()
expect(body).toContain('Reviewer Session Data')
+ expect(body).toContain('Calculating trust scores')
+ expect(body).toContain('on-chain trust systems')
expect(body).toContain('short-lived, signed')
expect(body).toContain('HttpOnly')
expect(body).toContain('We do not use tracking pixels or browser fingerprinting')