hyperliquid-risk-monitor
NewReal-time risk monitoring system for live trading with automated alerts
Overview
The complete productivity suite for Claude Code developers. 40+ CLI shortcuts, real-time context monitoring, and a community platform for extensions and resources.
๐ Live Platform: https://cldcde.cc ๐ฆ NPM Packages: @aegntic/cldcde-cloud-aegnts โญ โข @aegntic/cldcde-cli-shortcuts โข @aegntic/cldcde-context-tracker
โก Quick Start
Install CLI Shortcuts (40+ shortcuts)
npm install -g @aegntic/cldcde-cli-shortcuts
# Automatically configures your shell with shortcuts like cld, cldp, cldcInstall Context Monitor (Real-time token tracking)
npm install -g @aegntic/cldcde-context-tracker
# Shows context usage below Claude input with visual indicatorsMost Popular Shortcuts
cld # Start Claude (most important!)
cldp # Print mode (non-interactive)
cldc # Continue conversation
cldr # Resume a session
cld-help # Show all 40+ shortcuts๐ฏ CLDCDE Ecosystem
๐ฆ NPM Packages
Cursor-inspired Cloud Aegnts with Computer Use - Run aegnts in isolated sandboxes:
- โขโ Isolated sandbox execution (Docker, E2B, VM, Remote)
- โขโ Computer Use: browser & desktop automation
- โขโ Automatic video recording of aegnt interactions
- โขโ Artifact generation (videos, screenshots, logs)
- โขโ Multi-aegnt parallelism (up to 8 aegnts)
- โขโ Merge-ready PRs with demo artifacts
- โขโ Multiplatform: Claude Code, Agent-Zero, OpenCode, OpenClaw
# Installation
npm install -g @aegntic/cldcde-cloud-aegnts
# Quick start - run a cloud aegnt with video recording
cldcde-aegnts start "Build a REST API and test it" --repo=https://github.com/owner/repo
# Multi-aegnt parallel execution
cldcde-aegnts parallel "Build frontend" "Build backend" "Write tests"40+ battle-tested shortcuts for Claude Code productivity:
- โขโ
30+ aliases like
cld,cldp,cldc,cldr - โขโ
10+ utility functions like
cld-help,cld-auto,cld-quick - โขโ Model shortcuts for Claude 4 Sonnet/Opus
- โขโ Safety features with auto-execute warnings
- โขโ Automatic installation and shell configuration
# Installation
npm install -g @aegntic/cldcde-cli-shortcuts
# Usage examples
cld # Start Claude in current directory
cld-quick "analyze this code" # Quick non-interactive question
cld-auto "review for bugs" # Auto-execute with safety warnings
clds "explain this function" # Use Claude 4 Sonnet specificallyReal-time context window monitor that shows token usage below Claude input:
- โขโ Live token counting as you type
- โขโ Color-coded progress bar (green โ yellow โ red)
- โขโ Claude 4 optimized (200K token window)
- โขโ Persistent integration via Claude hooks
- โขโ Lightweight with minimal performance impact
# Installation
npm install -g @aegntic/cldcde-context-tracker
# Shows: 1,247 tokens [โโโโโโโโโโโโโโโโโโโโ] 6.2%๐ CLDCDE.CC Platform
The community hub for Claude Code extensions, MCP servers, and resources:
- โขExtension & MCP Browser: Search, discover, and install tools
- โขNews & Updates: Latest from Anthropic and community innovations
- โขDocumentation Hub: Curated guides and resources
- โขUser Profiles: Share extensions and track contributions
- โขTheme System: Terminal-inspired dark/light themes
- โขFrontend: React + TypeScript on Cloudflare Pages
- โขBackend: Hono + Cloudflare Workers + Supabase
- โขRuntime: Bun for faster development
- โขAI Integration: OpenRouter for content generation
- โขDatabase: Supabase (PostgreSQL + Auth)
๐๏ธ Architecture Overview
CLDCDE Ecosystem
โโโ NPM Packages
โ โโโ @aegntic/cldcde-cloud-aegnts # Cloud Aegnts with Computer Use โญ
โ โโโ @aegntic/cldcde-cli-shortcuts # 40+ Claude CLI shortcuts
โ โโโ @aegntic/cldcde-context-tracker # Real-time context monitor
โโโ CLDCDE.CC Platform # Community hub
โ โโโ Extension Browser # Discover tools
โ โโโ MCP Server Registry # Protocol servers
โ โโโ News & Updates # Community content
โ โโโ Documentation Hub # Resources & guides
โโโ Development Tools
โโโ Setup wizards # Automated configuration
โโโ Monitoring agents # Content aggregation
โโโ Deployment scripts # Infrastructure automation๐ ๏ธ Development
Prerequisites
- โขBun runtime
- โขNode.js 18+ (for npm packages)
- โขCloudflare account (for platform)
- โขSupabase project (for platform)
Environment Setup
# Clone repository
git clone https://github.com/aegntic/cldcde.git
cd cldcde
# Install dependencies
bun install
# Configure environment
cp .env.example .env
# Edit .env with your API keysDevelopment Commands
# Platform development
bun dev # Start development server
bun run site:build # Build Cloudflare Pages artifact (.pages-dist)
bun run site:check # Validate deploy artifact
bun run site:preview # Preview website locally on :4173
bun run site:deploy # Deploy frontend to Cloudflare Pages
bunx wrangler deploy -c wrangler.worker.toml # Deploy backend worker
# NPM package development
cd cli-shortcuts/
npm test # Test CLI shortcuts
npm run install-shortcuts # Test installation
cd ../context-tracker/
npm test # Test context monitor
npm run install-addon # Test installationWebsite operations runbook: docs/website-operations.md
Project Structure
cldcde/
โโโ src/ # Platform backend
โ โโโ api/ # API endpoints
โ โโโ agents/ # Content monitoring
โ โโโ db/ # Database connections
โ โโโ worker-ultra.ts # Main entry point
โโโ frontend/ # Platform frontend
โ โโโ src/components/ # React components
โ โโโ src/styles/ # Theme system
โ โโโ dist/ # Build output
โโโ cli-shortcuts/ # NPM: CLI shortcuts package
โ โโโ shortcuts/ # Shell scripts
โ โโโ bin/ # Installation scripts
โ โโโ test/ # Test suite
โโโ context-tracker/ # NPM: Context monitor package
โ โโโ lib/ # Monitor implementation
โ โโโ bin/ # Installation scripts
โ โโโ README.md # Package documentation
โโโ supabase/ # Database schemas
โโโ scripts/ # Setup and deployment
โโโ content/ # Static content๐ API Reference
Platform APIs (cldcde.cc)
# Authentication
POST /api/auth/register # User registration
POST /api/auth/login # User login
GET /api/auth/me # Current user
# Extensions & MCP
GET /api/extensions # List extensions
GET /api/mcp # List MCP servers
POST /api/extensions # Create extension (auth)
# Users & Social
GET /api/users/check-username # Username availability
PUT /api/users/profile # Update profile
GET /api/news # News feedCLI Shortcuts (Node.js API)
import CLIShortcuts from '@aegntic/cldcde-cli-shortcuts';
const shortcuts = new CLIShortcuts();
shortcuts.displayHelp(); // Show all shortcuts
shortcuts.getTotalShortcutsCount(); // Get count (40+)
shortcuts.checkInstallation(); // Verify installationContext Monitor (Node.js API)
import ContextMonitor from '@aegntic/cldcde-context-tracker';
const monitor = new ContextMonitor();
monitor.estimateTokens(text); // Estimate token count
monitor.display(input); // Show monitor below input
monitor.attachToInput(); // Hook into stdin๐ Productivity Tips
Essential Workflow
# 1. Install CLDCDE tools
npm install -g @aegntic/cldcde-cli-shortcuts @aegntic/cldcde-context-tracker
# 2. Start Claude with monitoring
cld # Now includes context tracking
# 3. Quick operations
cld-quick "What's the bug in this function?" # Fast question
cld-auto "analyze this code for improvements" # Safe auto-execute
cldc "continue with the refactoring" # Resume conversation
# 4. Model-specific workflows
clds "write unit tests" # Use Claude 4 Sonnet
cldo "complex architecture" # Use Claude 4 Opus for complex tasksPower User Features
# JSON output for scripting
cldjson "list all functions" | jq '.functions'
# Streaming for real-time
cldstream "explain this algorithm step by step"
# Session management
cldr # Interactive session picker
cld-session # Alternative session pickerSafety Guidelines
- โขโ Safe for auto-execute: Code analysis, reviews, explanations
- โขโ Avoid auto-execute: File modifications, system commands, deletions
- โข๐ก Use warnings:
cld-autoshows safety reminders before execution
๐จ Customization
Add Custom Shortcuts
Edit ~/.claude/shortcuts/claude-shortcuts.sh:
# Your personal shortcuts
alias cldwork="claude --add-dir ~/work --model claude-4-sonnet"
alias cldreview="cld-auto 'review this code for bugs'"Theme Configuration
The platform supports multiple themes:
- โขClaude Code Dark (default)
- โขClaude Light (matches Claude.ai)
- โขFuturistic Monochrome (cyberpunk-inspired)
๐ Impact & Statistics
User Productivity Gains
- โขโก 3-5x faster Claude workflow with shortcuts
- โข๐ Real-time awareness of context usage
- โข๐ 40+ shortcuts memorized through daily use
- โข๐ก๏ธ Safer automation with built-in warnings
Community Growth
- โข๐ฆ 2 NPM packages published and maintained
- โข๐ Community platform for extensions and tools
- โข๐ Documentation hub with curated resources
- โข๐ค Open source with MIT license
๐ง Configuration
Shell Integration
Works with all major shells:
- โขโ Bash (automatic configuration)
- โขโ Zsh (automatic configuration)
- โขโ Fish (manual setup available)
- โขโ Any POSIX shell
Claude Code Integration
- โขHooks system: Context monitor integrates via Claude hooks
- โขResume helper: Improved conversation resuming
- โขMCP support: Works with all MCP servers
- โขIDE integration: Supports VS Code, Cursor, and others
๐ค Contributing
We welcome contributions across all CLDCDE projects:
NPM Packages
- CLI Shortcuts: Add new shortcuts to
shortcuts/claude-shortcuts.sh - Context Monitor: Improve token estimation or visual display
- Testing: Add test cases for new features
Platform Development
- Features: New extensions, improved search, better themes
- Content: News aggregation, documentation updates
- Performance: Caching, optimization, monitoring
Contributing Process
# 1. Fork the repository
git clone https://github.com/your-username/cldcde.git
# 2. Create feature branch
git checkout -b feature/amazing-feature
# 3. Make changes and test
npm test # Test packages
bun dev # Test platform
# 4. Submit pull request
git push origin feature/amazing-feature๐ Roadmap
Short-term (Q1 2025)
- โข[ ] VS Code extension for seamless integration
- โข[ ] Cursor integration with native shortcuts
- โข[ ] Advanced context analysis with file-type awareness
- โข[ ] Team collaboration features for shared shortcuts
Medium-term (Q2 2025)
- โข[ ] AI-powered shortcuts that adapt to usage patterns
- โข[ ] Cross-platform GUI for non-terminal users
- โข[ ] Plugin ecosystem for custom extensions
- โข[ ] Analytics dashboard for productivity tracking
Long-term (2025+)
- โข[ ] Enterprise features for large development teams
- โข[ ] Claude Desktop integration with native APIs
- โข[ ] Multi-model support beyond Claude
- โข[ ] Advanced AI workflows with autonomous agents
๐ Resources & Links
Official Links
- โข๐ Platform: cldcde.cc
- โข๐ฆ CLI Shortcuts: npm.im/@aegntic/cldcde-cli-shortcuts
- โข๐ฆ Context Tracker: npm.im/@aegntic/cldcde-context-tracker
- โข๐ GitHub: github.com/aegntic/cldcde
Community
- โข๐ฌ Issues: GitHub Issues
- โข๐ก Discussions: GitHub Discussions
- โข๐ Wiki: GitHub Wiki
- โข๐ง Updates: Newsletter signup on cldcde.cc
Related Projects
- โข๐ค Claude Code: claude.ai/code
- โข๐ MCP Servers: Community registry on cldcde.cc
- โข๐ ๏ธ Developer Tools: Extension marketplace on cldcde.cc
๐ License
MIT License - See LICENSE file for details.
๐ Acknowledgments
- โขAnthropic for Claude and Claude Code
- โขOpenRouter for LLM infrastructure
- โขCloudflare for hosting and Workers platform
- โขSupabase for backend services
- โขThe Claude Code Community for feedback and contributions
- โขAll contributors who help make CLDCDE better
Built with โค๏ธ for the Claude Code community
Boost your AI development workflow with battle-tested tools used by thousands of developers worldwide.
Updated for Claude 4 - August 2025
Install & Usage
mkdir -p .claude/skillsmkdir -p .claude/skills && curl -o .claude/skills/hyperliquid-risk-monitor.md https://raw.githubusercontent.com/aegntic/cldcde/main/SKILL.md/hyperliquid-risk-monitorFrequently Asked Questions
What is hyperliquid-risk-monitor?
Real-time risk monitoring system for live trading with automated alerts
How to install hyperliquid-risk-monitor?
To install hyperliquid-risk-monitor, create the .claude/skills directory in your project, then run the curl command to download the skill file. Once installed, invoke it in Claude Code with /hyperliquid-risk-monitor.
What is hyperliquid-risk-monitor best for?
hyperliquid-risk-monitor is a community categorized under General. It is designed for: trading, risk, monitoring, hyperliquid, finance, alerts, claude-code. Created by ae.ltd.