aspidos

Snyk security monitored

Security: Perfect

Aspidos

πŸ›‘ Aspidos

logo

Hope Shield for Anomaly Systems

When systems fail silently, Aspidos becomes the shield.

⚑ TL;DR

Aspidos is a dynamic anomaly stabilization engine.

Not detection. Stabilization.


πŸš€ Quick Start

const { PandoraDefense } = require(β€˜aspidos’);

const pd = new PandoraDefense();

// normal event const result = pd.analyze(0.3); console.log(result.level);

// anomaly event const alert = pd.analyze(0.9, { penetration: 0.2 });

if (alert.alert) { console.log(β€˜βš οΈ System instability detected’); }

🎯 Convergence Demo

const { PandoraDefense } = require('aspidos');
const pd = new PandoraDefense();

// Phase A β€” Harmonic baseline
const stable = pd.analyze(0.25);
console.log(stable.level);        // 'NORMAL'
console.log(stable.omega.phase);  // 'STABLE_PHASE'

// External noise
pd.analyze(0.85, { penetration: 0.1 });

// Internal rule deviation β†’ RECOVERY_NEEDED
const slapped = pd.analyze(0.4, { theory: 0.95, penetration: 0.05 });
console.log(slapped.core.status);    // 'RECOVERY_NEEDED'
console.log(slapped.core.category);  // 'HIGH_DEVIATION'
console.log(slapped.core.action);    // 'RECOVERING'

// Autonomous re-stabilization
const recovery = pd.analyze(0.3);
console.log(recovery.level);  // 'NORMAL'

// Buffer saturation stress
const cliff = pd.analyze(0.5, { penetration: 0.9 });
console.log(cliff.pgu.level);  // 'OVERLOAD'

❓ Why Aspidos?

Most systems:

Aspidos:

πŸ‘‰ This is not monitoring. πŸ‘‰ This is state control.


🧠 Core Concept

Aspidos models a system as a dynamic field:

Flow:

ΔΨ (distortion) β†’ PGU (accumulation) β†’ Ξ© (stability)

     β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
     β”‚   ΔΨ Engine β”‚
     β””β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”˜
           ↓
     β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
     β”‚    PGU     β”‚
     β””β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”˜
           ↓
     β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
     β”‚   Ξ© Loop    β”‚
     β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

βš™οΈ Features

ΔΨ Engine β€” Distortion Detection

Detect anomalies as distortions in a dynamic field rather than fixed thresholds.

PGU Model β€” Accumulated Risk Field

Continuously integrates risk and detects saturation leading to critical transitions.

Ξ© Loop β€” Self-Stability System

Maintains system stability through self-referential feedback dynamics.

Adaptive Behavior

Learns baseline behavior dynamically and adapts to changing environments.

Designed for Critical Systems

Built for environments where silent failure is unacceptable.


πŸ›‘ Use Cases


πŸ“¦ Installation

npm install aspidos


πŸ“ Project Structure

/src Core engine /examples Node.js examples /demo Browser demo /assets Logos and visuals


🧲 Keywords

anomaly-detection, cybersecurity, ai, complex-systems, control-theory


🧠 Philosophy

Aspidos is built on a simple idea:

Anomalies are not errors. They are distortions in a system trying to remain stable.

We do not just detect them.

Β«We hold the system together.Β»


πŸ“„ License

MIT License


🌌 Final Note

Aspidos is not just a library.

It is a way to think about systems.

Β«Not detection. Stabilization.Β»