Integrations › gstack
Add persistent verified memory to your gstack-powered development workflow.
Get API Key →gstack gives you AI-powered development skills. But between sprints, context resets. The agent that built your feature last week doesn't remember the architectural decisions it made. Files change, dependencies shift, and nobody remembers why.
Decisions survive sprint boundaries.
Sprint 1 decisions. Sprint 3 proof.
npm install @verifiedstate/gstack
import { GstackMemory, SprintSync, ConflictGuard } from '@verifiedstate/gstack';
const memory = new GstackMemory({
apiKey: 'vs_live_...',
projectId: 'my-project',
});
// Memory that survives sprint boundaries
const sprintSync = new SprintSync(memory);
await sprintSync.query('Why did we choose PostgreSQL over MongoDB?');
// Detect file conflicts before they happen
const guard = new ConflictGuard(memory);
await guard.check('src/auth/middleware.ts');
// Returns: conflicting assertions about this file{
"receipt_id": "rct_7f3a...",
"assertion": "User prefers dark mode",
"status": "verified",
"confidence": 0.94,
"signature": "ed25519:a8c3f1...",
"verified_at": "2026-04-06T14:32:01Z",
"chain_position": 42
}| Feature | Without | With VerifiedState |
|---|---|---|
| Between sprints | Context resets | Cross-sprint memory with receipts |
| Architecture decisions | Lost in Slack | Verified, queryable, timestamped |
| File conflicts | Discovered in PR review | Detected before you code |
| Why decisions were made | "Ask Dave, he might remember" | Signed receipt |
VerifiedState plugs into gstack as a skill. GstackMemory provides hooks for your skill workflows. SprintSync enables cross-sprint queries.
No. The underlying SDK works independently. The gstack package adds skill-specific hooks and the SprintSync/ConflictGuard modules.
Free: 50,000 assertions/month. No credit card. No trial expiration.