BeClaude

hyperliquid-risk-monitor

New
7Community RegistryGeneralby ae.ltd ยท MIT

Real-time risk monitoring system for live trading with automated alerts

Community PluginView Source

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)

bash
npm install -g @aegntic/cldcde-cli-shortcuts
# Automatically configures your shell with shortcuts like cld, cldp, cldc

Install Context Monitor (Real-time token tracking)

bash
npm install -g @aegntic/cldcde-context-tracker
# Shows context usage below Claude input with visual indicators

Most Popular Shortcuts

bash
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
bash
# 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
bash
# 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 specifically

Real-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
bash
# 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

code
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

bash
# 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 keys

Development Commands

bash
# 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 installation

Website operations runbook: docs/website-operations.md

Project Structure

code
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)

bash
# 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 feed

CLI Shortcuts (Node.js API)

javascript
import CLIShortcuts from '@aegntic/cldcde-cli-shortcuts';

const shortcuts = new CLIShortcuts();
shortcuts.displayHelp();           // Show all shortcuts
shortcuts.getTotalShortcutsCount(); // Get count (40+)
shortcuts.checkInstallation();     // Verify installation

Context Monitor (Node.js API)

javascript
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

bash
# 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 tasks

Power User Features

bash
# 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 picker

Safety Guidelines

  • โ€ขโœ… Safe for auto-execute: Code analysis, reviews, explanations
  • โ€ขโŒ Avoid auto-execute: File modifications, system commands, deletions
  • โ€ข๐Ÿ’ก Use warnings: cld-auto shows safety reminders before execution

๐ŸŽจ Customization

Add Custom Shortcuts

Edit ~/.claude/shortcuts/claude-shortcuts.sh:

bash
# 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

  1. CLI Shortcuts: Add new shortcuts to shortcuts/claude-shortcuts.sh
  2. Context Monitor: Improve token estimation or visual display
  3. Testing: Add test cases for new features

Platform Development

  1. Features: New extensions, improved search, better themes
  2. Content: News aggregation, documentation updates
  3. Performance: Caching, optimization, monitoring

Contributing Process

bash
# 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

Community

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

1
Create the skills directory
mkdir -p .claude/skills
2
Download the skill file
mkdir -p .claude/skills && curl -o .claude/skills/hyperliquid-risk-monitor.md https://raw.githubusercontent.com/aegntic/cldcde/main/SKILL.md
3
Invoke in Claude Code
/hyperliquid-risk-monitor
View source on GitHub
tradingriskmonitoringhyperliquidfinancealertsclaude-code

Frequently 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.