skills/FORGE-redis-qdrant-integration/SKILL.md
Redis + Qdrant integration — caching layer and vector memory for federation semantic search.
npx skillsauth add ariffazil/openclaw-workspace FORGE-redis-qdrant-integrationInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
DITEMPA BUKAN DIBERI — Forged, Not Given.
Redis as caching layer for MCP tool registry and session state; Qdrant as vector store for witness embeddings, semantic memory retrieval, and similarity search across federation knowledge.
postgres-schema-designvault999-witness| Floor | Application |
|-------|-------------|
| F1 AMANAH | Redis keys have TTL; stale cache never blocks fresh reads |
| F2 TRUTH | Cache headers (stale-while-revalidate) published with every cached response |
| F4 CLARITY | One cache key naming convention across all organs |
| F11 AUDIT | Cache misses and evictions logged; Qdrant writes carry provenance |
| F12 INJECTION | Vector embeddings sanitized before upsert — no prompt injection in stored vectors |
// Redis — tool registry cache with TTL
const CACHE_TTL = 300; // 5 minutes
await redis.set(`tool:${organ}:list`, JSON.stringify(tools), { EX: CACHE_TTL });
// Redis — session state
await redis.set(`session:${sessionId}`, JSON.stringify(session), { EX: 3600 });
// Qdrant — witness collection upsert
const point: PointStruct = {
id: receiptId,
vector: embedding, // 1536-dim from embedding model
payload: {
witness_type: 'tri_witness',
organ: 'geox',
verdict: 'CONSENSUS',
timestamp: Date.now(),
},
};
await qdrant.upsert('witness_receipts', { points: [point] });
// Qdrant — semantic search
const results = await qdrant.search('witness_receipts', {
vector: queryEmbedding,
limit: 10,
with_payload: true,
});
development
Federation-wide gold (XAUUSD) trading capability. Python stack, OANDA broker, backtesting, macro signals, RSI strategy. Every organ has a role.
development
Capital claim state management — tracks claim lifecycle across WEALTH organ.
development
Archived constitutional warga placeholder retained only for audit provenance. Do not use for active work; use the live arifOS governance and constitutional skills instead.
testing
Warga (citizen) agent skills for AAA federation members. See subdirectories for specialized warga skills.