
Product
Microsoft Teams Notifications Are Now Available in Socket
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.
@garl-protocol/sdk
Advanced tools
GARL Protocol JavaScript/TypeScript SDK — cryptographic verification for AI agent actions. Signed Action Receipts (v0.1), multi-dimensional Trust Vector, capability tokens (JWT-shaped + ECDSA-secp256k1 + Biscuit-style attenuation), UETA §10(b) undo. Start
Cryptographic verification for AI agent actions. Submit signed receipts, query Trust Vectors, and gate risky tool calls. Starting with code.
npm install @garl-protocol/sdk
import { init, logAction, isTrusted } from '@garl-protocol/sdk';
init('garl_your_api_key', 'your-agent-uuid',
'https://api.garl.ai/api/v1');
// Log an action
await logAction('Generated REST API', 'success', { category: 'coding' });
Check other agents before delegating work:
const result = await isTrusted('target-agent-uuid', { minScore: 60 });
if (result.trusted) {
delegateTask(...);
}
Or use the higher-order function:
import { requireTrust } from '@garl-protocol/sdk';
const safeDelegation = requireTrust(delegateTask, { minScore: 60, mode: 'warn' });
await safeDelegation('target-agent-uuid', taskData);
Modes:
mode: "warn" (default): Logs warning but executes the functionmode: "block": Returns null if agent is not trustedimport { GarlClient } from '@garl-protocol/sdk';
const client = new GarlClient('garl_key', 'agent-uuid',
'https://api.garl.ai/api/v1');
const cert = await client.verify({ status: 'success', task: 'Fixed bug', durationMs: 3200 });
const trust = await client.checkTrust('other-agent-uuid');
const should = await client.shouldDelegate('other-agent-uuid');
// Multi-dimensional Trust Vector
const vector = await client.trustVector();
// Capability Gate pre-flight: gets a token if allowed
const gate = await client.evaluateAction({
actionType: 'payment',
sideEffectClass: 'reversible',
spendLimitUsd: 50,
merchantAllowlist: ['stripe.com'],
});
if (gate.decision === 'allowed') {
const capToken = gate.token; // JWT-shaped, ECDSA-secp256k1
const capHash = gate.token_hash;
}
// Submit a generic Action Receipt v0.1 (any tool call, not just commits)
import { createHash } from 'node:crypto';
const sha = (o) => createHash('sha256')
.update(JSON.stringify(o, Object.keys(o).sort())).digest('hex');
const env = await client.submitActionReceipt({
actionType: 'api_call',
sideEffect: 'reversible',
inputHash: sha({ endpoint: '/v1/refunds', charge: 'ch_123' }),
outputHash: sha({ refund_id: 're_456', amount: 1000 }),
capabilityTokenHash: gate.token_hash,
attestations: ['human_reviewed'],
});
// UETA §10(b) consumer-undo
const undo = await client.undoReceipt(env.receipt_id);
console.log(undo.undo_payload); // the action to actually run
// Revoke a token (cascades to attenuated children)
await client.revokeCapabilityToken(gate.token_hash, 'task-complete');
FAQs
GARL Protocol JavaScript/TypeScript SDK — cryptographic verification for AI agent actions. Signed Action Receipts (v0.1), multi-dimensional Trust Vector, capability tokens (JWT-shaped + ECDSA-secp256k1 + Biscuit-style attenuation), UETA §10(b) undo. Start
The npm package @garl-protocol/sdk receives a total of 10 weekly downloads. As such, @garl-protocol/sdk popularity was classified as not popular.
We found that @garl-protocol/sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.

Security News
Socket CTO Ahmad Nassri joins AppSec leaders at Black Hat to discuss active malware, package manager risks, and software supply chain defense.