Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Expert guidance for optimizing Valkey GLIDE clients across Node.js, Python, Java, Go, and PHP with progressive disclosure --- name: GLIDE Performance Optimization description: Expert guidance for optimizing Valkey GLIDE clients across Node.js, Python, Java, Go, and PHP with progressive disclosure version: 1.0.0 author: Valkey Maintainers tags: - performance - optimization - valkey - glide - redis - caching languages: - javascript - typescript - python - java - go - php --- GLIDE Performance Optimization Skill Expert guidance for optimiz Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Freshness
Last checked 4/15/2026
Best For
GLIDE Performance Optimization is best for hang, cause workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Expert guidance for optimizing Valkey GLIDE clients across Node.js, Python, Java, Go, and PHP with progressive disclosure --- name: GLIDE Performance Optimization description: Expert guidance for optimizing Valkey GLIDE clients across Node.js, Python, Java, Go, and PHP with progressive disclosure version: 1.0.0 author: Valkey Maintainers tags: - performance - optimization - valkey - glide - redis - caching languages: - javascript - typescript - python - java - go - php --- GLIDE Performance Optimization Skill Expert guidance for optimiz
Public facts
4
Change events
1
Artifacts
0
Freshness
Apr 15, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 15, 2026
Vendor
Edlng
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Setup snapshot
git clone https://github.com/edlng/glide-performance-optimization-skill.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Edlng
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
0
Snippets
0
Languages
typescript
Parameters
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Expert guidance for optimizing Valkey GLIDE clients across Node.js, Python, Java, Go, and PHP with progressive disclosure --- name: GLIDE Performance Optimization description: Expert guidance for optimizing Valkey GLIDE clients across Node.js, Python, Java, Go, and PHP with progressive disclosure version: 1.0.0 author: Valkey Maintainers tags: - performance - optimization - valkey - glide - redis - caching languages: - javascript - typescript - python - java - go - php --- GLIDE Performance Optimization Skill Expert guidance for optimiz
name: GLIDE Performance Optimization description: Expert guidance for optimizing Valkey GLIDE clients across Node.js, Python, Java, Go, and PHP with progressive disclosure version: 1.0.0 author: Valkey Maintainers tags:
Expert guidance for optimizing Valkey GLIDE clients across Node.js, Python, Java, Go, and PHP. This skill uses progressive disclosure—loading only the content relevant to your current task to minimize context usage.
This skill automatically detects the programming language you're working with and loads language-specific optimization patterns on-demand:
reference/nodejs-patterns.md - Node.js/TypeScript specific guidancereference/python-patterns.md - Python async/sync specific guidancereference/java-patterns.md - Java specific guidancereference/go-patterns.md - Go specific guidancereference/php-patterns.md - PHP specific guidanceContext Efficiency: Reviewing Node.js code loads only Node.js patterns. Python/Java/Go/PHP patterns remain unloaded, reducing the amount of context loaded into your AI tool.
When you review code, this skill detects the language from:
.js, .ts, .py, .java, .go, .phpimport { GlideClient }, require('@valkey/valkey-glide')from glide import, import glideimport glide.api.*import "github.com/valkey-io/valkey-glide/go"use ValkeyGlide, use ValkeyGlideCluster, new ValkeyGlide()Action Required: When language is detected, load the corresponding reference file:
.kiro/skills/glide-performance-optimization/reference/nodejs-patterns.md.kiro/skills/glide-performance-optimization/reference/python-patterns.md.kiro/skills/glide-performance-optimization/reference/java-patterns.md.kiro/skills/glide-performance-optimization/reference/go-patterns.md.kiro/skills/glide-performance-optimization/reference/php-patterns.mdThese anti-patterns cause performance issues regardless of language:
Problem: Creating a new client for each request adds massive connection overhead.
Impact:
Detection: Look for client creation inside request handlers, loops, or frequently-called functions.
Fix: Create client once at application startup, reuse everywhere.
Problem: Operations can hang indefinitely without timeouts, causing cascading failures.
Impact:
Detection: Client configuration missing requestTimeout or timeout parameter.
Fix: Always configure timeouts based on use case:
Problem: Executing commands one-by-one multiplies network latency (N commands = N × roundtrip time).
Impact:
Detection: Multiple await/get calls in sequence without batching or concurrency.
Fix: Use batching (pipeline/transaction) or concurrent execution patterns.
Problem: BLPOP, BRPOP, BLMOVE, BZPOPMIN, BZPOPMAX block the connection, preventing other operations.
Impact:
Detection: Blocking commands (BLPOP, BRPOP, etc.) used on same client as regular commands.
Fix: Use dedicated client instance for blocking operations with longer timeout.
Problem: Batches with >1000 operations or >10MB payload cause memory issues and timeouts.
Impact:
Detection: Batch/pipeline with >1000 commands or very large payloads.
Fix: Keep batches between 10-100 commands for optimal balance.
Problem: Network failures without retry logic cause immediate failures.
Impact:
Detection: No try-catch blocks or retry configuration around client operations.
Fix: Configure connection backoff and implement retry strategies for transient failures.
Concept: Execute multiple commands in a single network roundtrip.
When to Use:
Impact: Reduces latency from N × roundtrip to 1 × roundtrip. For example, with 5ms network latency, 10 sequential operations take ~50ms, while a single batched operation takes ~5ms.
Batch Size Guidelines:
Hash Tags for Co-location: Use {tag} syntax to ensure related keys map to same slot.
Example: {user:123}:name, {user:123}:email, {user:123}:age all map to same slot.
Benefit: Single roundtrip for multi-key operations on related data.
Concept: Route read operations to replicas in same availability zone.
Requirements:
Impact:
When NOT to use:
Concept: Execute independent operations concurrently instead of sequentially.
Benefit: Reduces wall-clock time from sum(latencies) to max(latencies).
Note: Batching is usually more efficient than concurrent individual operations.
Guidelines:
Valkey modules extend core functionality with specialized data structures and operations. This skill detects module usage and provides module-specific optimization recommendations.
Valkey-Search (FT.*): Full-text search and secondary indexing Valkey-JSON (JSON.*): Native JSON document storage and manipulation Valkey-BloomFilter (BF., CF., CMS., TOPK.): Probabilistic data structures
The skill automatically detects module usage through command patterns:
FT.SEARCH, FT.CREATE, FT.AGGREGATE → Valkey-SearchJSON.GET, JSON.SET, JSON.MGET → Valkey-JSONBF.ADD, BF.EXISTS, CF.ADD → Valkey-BloomFilterValkey-Search:
FT.AGGREGATE for aggregation queriesValkey-JSON:
JSON.GET with full document retrieval instead of path-based queriesJSON.MGET for batch operationsJSON.NUMINCRBY for atomic numeric updatesValkey-BloomFilter:
CF.*) when deletions are neededBF.ADD instead of BF.MADD)When the skill detects patterns that would benefit from modules:
Complex JSON Operations Without Valkey-JSON:
GET + JSON parsing + modification + SET patternsJSON.SET with path syntax for atomic updatesFull-Text Search Implemented with SCAN:
SCAN + pattern matching for text searchFT.CREATE index and FT.SEARCHSet Membership Checks at Scale:
SISMEMBER operations or SMEMBERS + filteringBF.EXISTS) for probabilistic membershipValkey-Search Index Optimization:
STOPWORDS for language-specific optimizationMAXPREFIXEXPANSIONS to limit wildcard query costSORTBY with indexed fields for efficient sortingValkey-JSON Memory Settings:
json-max-size to prevent oversized documentsJSON.FORGET to remove unused pathsValkey-BloomFilter Capacity Planning:
BF.RESERVE to pre-allocate with optimal parametersThe skill analyzes your code patterns to provide infrastructure-level configuration recommendations. For comprehensive guidance on optimizing your Valkey/ElastiCache deployment, see:
assets/server-configuration-guide.md - Complete infrastructure optimization guide covering:
maxmemory-policy, timeout, tcp-keepalive, maxclients configurationCluster Mode Detection:
Read/Write Routing:
80% reads → Enable replicas, use
PREFER_REPLICAorAZ_AFFINITY
50% writes → Use
PRIMARYrouting, optimize write performance
PRIMARY for consistency, 1-2 replicas for HAMemory Policy:
maxmemory-policy = allkeys-lrumaxmemory-policy = noevictionmaxmemory-policy = volatile-lruElastiCache Node Types:
For detailed recommendations with code examples and configuration templates, load assets/server-configuration-guide.md.
For complete, production-ready configuration examples with all recommended settings, see:
assets/config-templates/nodejs-config.ts - Node.js/TypeScriptassets/config-templates/python-config.py - Python async/syncassets/config-templates/java-config.java - Javaassets/config-templates/go-config.go - Goassets/config-templates/php-config.php - PHPThese templates include timeouts, retry strategies, connection pooling, and AZ affinity configuration.
Configure based on your use case:
Configure exponential backoff for resilience:
For high-throughput scenarios (>100K ops/sec):
inflightRequestsLimit from default 1000 to 2000+Use lazyConnect to defer connection until first command, reducing cold start time.
| Symptom | Likely Cause | Solution | |---------|-------------|----------| | P99 >100ms | Per-request client creation | Reuse client instances | | Timeout errors | No timeout configured | Set appropriate timeout | | Low throughput | Sequential operations | Use batching or concurrency | | High data transfer costs | Cross-AZ traffic | Enable AZ affinity | | Connection errors | Network issues | Configure connectionBackoff | | Blocked operations | Blocking commands on shared client | Use dedicated client | | Memory issues | Large batches (>1000 ops) | Reduce batch size to 10-100 |
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/edlng-glide-performance-optimization-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/edlng-glide-performance-optimization-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/edlng-glide-performance-optimization-skill/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 5d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/edlng-glide-performance-optimization-skill/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/edlng-glide-performance-optimization-skill/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/edlng-glide-performance-optimization-skill/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/edlng-glide-performance-optimization-skill/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/edlng-glide-performance-optimization-skill/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/edlng-glide-performance-optimization-skill/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T00:32:44.718Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "hang",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "cause",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:hang|supported|profile capability:cause|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Edlng",
"href": "https://github.com/edlng/glide-performance-optimization-skill",
"sourceUrl": "https://github.com/edlng/glide-performance-optimization-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T00:19:47.104Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/edlng-glide-performance-optimization-skill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/edlng-glide-performance-optimization-skill/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T00:19:47.104Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/edlng-glide-performance-optimization-skill/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/edlng-glide-performance-optimization-skill/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to GLIDE Performance Optimization and adjacent AI workflows.