Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@verifiedstate/google-adk

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@verifiedstate/google-adk

VerifiedState integration for Google ADK — cryptographic receipts for every agent assertion

latest
npmnpm
Version
0.2.0
Version published
Weekly downloads
11
450%
Maintainers
1
Weekly downloads
 
Created
Source

@verifiedstate/google-adk

Google ADK Is New. The Memory Problem Isn't.

VerifiedState integration for Google ADK. Adds cryptographic verification receipts to every assertion your Google ADK agent makes.

Install

npm install @verifiedstate/google-adk

Quick Start

import { VerifiedStateGoogleAdk } from '@verifiedstate/google-adk';

const memory = new VerifiedStateGoogleAdk({
  apiKey: 'vs_live_...',
  namespaceId: 'your-namespace-uuid',
});

// Store and verify a fact from your Google ADK agent
const { artifact, assertions, receipts } = await memory.storeAndVerify(
  'Customer prefers dark mode and uses PostgreSQL'
);

console.log(receipts[0].status);           // "verified"
console.log(receipts[0].final_confidence); // 0.94

// Query verified memory
const results = await memory.query('What database does the customer use?');
console.log(results.answerable);     // true
console.log(results.channels_used);  // ["sparse", "dense"]

Why

Every fact your Google ADK agent stores should come with proof — a signed receipt showing what the claim is, what evidence supports it, and whether it's been challenged or superseded.

Without verification receipts, you have the agent's output. You don't have the reasoning.

API

store(content, sourceId?)

Store content from your Google ADK agent.

extract(artifactId)

Extract structured assertions.

verify(assertionId)

Verify an assertion, produce a signed receipt.

storeAndVerify(content, sourceId?)

All-in-one: store, extract, verify.

query(queryText, limit?)

Six-channel retrieval with abstention.

health()

Namespace health metrics.

  • Documentation
  • Integration Guide
  • Get API Key

License

MIT

Keywords

verifiedstate

FAQs

Package last updated on 07 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts