JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q18970F
  • License MIT

Core utilities and shared components for the INTUE ecosystem - the intelligence layer for AI agents.

Package Exports

  • @intue/core
  • @intue/core/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@intue/core) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

INTUE Core

Core utilities and shared components for the INTUE ecosystem - the intelligence layer for AI agents.

Overview

INTUE Core provides essential utilities and components used across the INTUE ecosystem of Modular Crypto Protocols (MCPs). This package serves as the foundation for building sophisticated crypto market analysis tools and AI agents.

Installation

npm install @intue/core
Features

Caching System: Efficient in-memory caching with configurable TTL
Type Definitions: Consistent types across the INTUE ecosystem
Configuration Management: Centralized configuration utilities
Common Interfaces: Standardized interfaces for all MCPs

Usage
Cache Utility
javascriptconst { Cache } = require('@intue/core');

// Create a cache with custom TTL (time to live)
const cache = new Cache({ ttl: 10 * 60 * 1000 }); // 10 minutes

// Set a value
cache.set('key', 'value');

// Get a value
const value = cache.get('key');

// Clear the cache
cache.clear();
Documentation
For complete documentation, visit our GitBook.
Related Packages

@intue/lunarcrush-adapter - LunarCrush API adapter for social sentiment data
@intue/sentiment-analysis-mcp - Sentiment analysis for crypto assets
@intue/cross-ecosystem-correlation-mcp - Cross-ecosystem correlation analysis

About INTUE
INTUE derives from the Latin word intueri — to look at attentively, to gaze upon with purpose. This embodies our mission: creating an intelligence layer that sees deeply into the patterns and relationships across digital asset ecosystems. Just as human intuition arises from subconscious pattern recognition, INTUE transforms raw data into actionable insight, going into the hidden correlations that drive markets.
The digital asset landscape pulses with millions of interconnected signals — price movements, social sentiment, developer activity, on-chain metrics — each telling a fragment of a larger story. INTUE provides a modular framework to parse this complexity, turning overwhelming data streams into coherent narratives through our specialized MCPs (Modular Crypto Protocols).
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
This project is licensed under the MIT License - see the LICENSE file for details