
Product
Socket for Asana Is Now Available
Create and manage Asana tasks directly from Socket alerts, with manual task creation, automated ticketing rules, and two-way sync.
@timps-ai/timps-sdk
Advanced tools
TIMPS SDK — lightweight memory for AI agents. Store and recall semantic memories with zero config.
Lightweight, zero-config memory SDK for AI agents. Store and recall semantic memories with a single import.
npm install @timps-ai/timps-sdk
import { createMemory } from '@timps-ai/timps-sdk'
const memory = await createMemory({ projectPath: '.' })
await memory.store('This project uses tRPC for type-safe APIs')
const results = await memory.recall('API patterns')
console.log(results)
// [{ content: 'This project uses tRPC...', score: 0.92 }]
import { createMemory } from '@timps-ai/timps-sdk'
const memory = await createMemory({ projectPath: './my-project' })
// Store facts
await memory.store('The auth system uses JWT with 1h expiry')
await memory.store('Prefer functional components over class components', {
metadata: { type: 'preference', tags: ['react', 'components'] }
})
// Recall with context
const results = await memory.recall('how does authentication work', { limit: 5 })
console.log(results[0].content)
const memory = await createMemory({
projectPath: '.',
provider: 'ollama' // uses localhost:11434, nomic-embed-text
})
const memory = await createMemory({
projectPath: '.',
provider: {
name: 'openai',
apiKey: process.env.OPENAI_API_KEY
}
})
const memory = await createMemory({ projectPath: '.' })
// No provider → BM25 keyword search only, zero network dependencies
| Method | Description |
|---|---|
store(content, metadata?) | Store a semantic memory |
recall(query, options?) | Recall memories matching query |
delete(id) | Remove a memory |
storeBatch(entries) | Store multiple memories at once |
on(event, handler) | Listen for 'stored' or 'error' events |
getStats() | Get memory usage statistics |
dispose() | Clean up resources |
<50KB published, tree-shaken to <30KB for basic usage.
FAQs
TIMPS SDK — lightweight memory for AI agents. Store and recall semantic memories with zero config.
We found that @timps-ai/timps-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
Create and manage Asana tasks directly from Socket alerts, with manual task creation, automated ticketing rules, and two-way sync.

Security News
Open VSX has removed three extension IDs from its malicious-extension list as the legitimate publishers they impersonated move to claim the names for themselves.

Product
Socket’s PHP and Composer support is now in Beta for all customers, with PHP reachability analysis generally available.