Skip to content

Instantly share code, notes, and snippets.

View avifenesh's full-sized avatar
🦥
Just hanging around

Avi Fenesh avifenesh

🦥
Just hanging around
View GitHub Profile
@avifenesh
avifenesh / mcp-sanitized.json
Created July 23, 2025 06:36
MCP (Model Context Protocol) server configuration template
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/home/ubuntu"
],
"disabled": false,
@avifenesh
avifenesh / copilot-instructions.md
Last active July 5, 2025 13:10
Valkey GLIDE AI Coding Assistant Instructions - Comprehensive guide for AI agents working on the multi-language Valkey/Redis client library

Valkey GLIDE AI Coding Assistant Instructions

Project Overview

Multi-language Valkey/Redis client with Rust core (glide-core) and language wrappers. Uses protobuf for cross-language communication and FFI/UDS for performance.

Architecture

Core Components

  • glide-core/: Rust core (protocol, connections, business logic)
@avifenesh
avifenesh / switch_valkey_version.sh
Last active March 17, 2025 16:36
A script for easily switching betwen ValKey version
#!/bin/bash
#remove comment to print the lines running.
#set -x
set -e
valkey_version=
should_clone_repo=false
valkey_clone_git=https://github.com/valkey-io/valkey.git