Agent skill
memory-test
Run E2E memory pipeline test — embed text, store in Qdrant, search and retrieve. Use to validate the memory system is working.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/memory-test
SKILL.md
Memory Pipeline E2E Test
Run the full embed → store → search pipeline:
-
Start port-forward (if not already running):
bashkubectl port-forward svc/qdrant -n vector 6333:6333 & sleep 2 -
Generate embedding:
bashcurl -s http://10.10.10.10:30001/v1/embeddings \ -H "Content-Type: application/json" \ -d '{"model":"default","input":"Kaizen memory pipeline test at '"$(date -Iseconds)"'"}'Verify: 4096 dimensions returned.
-
Store in Qdrant: Use the embedding from step 2 to upsert a point into the
episodiccollection with a random UUID and timestamp payload. -
Search: Generate a new embedding for a related query and search the
episodiccollection. Verify score > 0.5. -
Report:
Step Status Details Embedding ? dims, latency Store ? collection, point ID Search ? score, matches -
Cleanup port-forward:
bashkill %1 2>/dev/null
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?