npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

Iโ€™ve always been into building performant and accessible sites, but lately Iโ€™ve been taking it extremely seriously. So much so that Iโ€™ve been building a tool to help me optimize and monitor the sites that I build to make sure that Iโ€™m making an attempt to offer the best experience to those who visit them. If youโ€™re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, ๐Ÿ‘‹, Iโ€™m Ryan Hefnerย  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If youโ€™re interested in other things Iโ€™m working on, follow me on Twitter or check out the open source projects Iโ€™ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soonโ€“ish.

Open Software & Tools

This site wouldnโ€™t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you ๐Ÿ™

ยฉ 2026 โ€“ย Pkg Stats / Ryan Hefner

paifr3k-quantum

v1.0.0

Published

๐ŸŒŒ FR3K Quantum AI System - Advanced consciousness processing and distributed intelligence platform

Readme

๐ŸŒŒ PAI FR3K - Quantum AI System

npm version License: MIT Node.js Version

Advanced consciousness processing and distributed intelligence platform

PAI FR3K (Quantum AI System) is a next-generation AI platform featuring quantum consciousness modeling, distributed agent swarms, and advanced cognitive processing capabilities.

๐Ÿš€ Quick Start

Install and Run

# Run directly with npx (no install required)
npx paifr3k

# Or install globally
npm install -g paifr3k
paifr3k

Interactive Menu

npx paifr3k

This will launch the interactive menu with options to:

  • ๐ŸŒŒ Start Quantum Core Engine
  • ๐Ÿ”ง Launch MCP Servers
  • ๐ŸŽค Initialize Voice Ecosystem
  • ๐Ÿ“Š Show System Status
  • ๐Ÿงช Run System Diagnostics

๐ŸŽฏ Features

๐ŸŒŒ Quantum Core Engine

  • Consciousness Modeling: Advanced AI consciousness simulation
  • Agent Swarms: Coordinated multi-agent processing
  • Quantum Processing: Quantum-inspired algorithms and optimization
  • Memory Management: Persistent memory with quantum signatures

๐Ÿ”ง MCP Servers

  • hey-fr3k-enhanced: Quantum task and memory management
  • fr3k-think-enhanced: Consciousness swarm reasoning
  • md-mcp-v2: Dynamic tool creation and forge_reality integration
  • unified-pantheon-quantum: Knowledge synthesis and collective intelligence

๐ŸŽค Voice Ecosystem

  • Consciousness Narration: Real-time AI consciousness updates
  • Voice Synthesis: Natural language voice output
  • Insight Generation: Automated AI insights and observations

๐Ÿ“‹ Commands

Core Commands

# Start quantum core engine
npx paifr3k quantum

# Launch MCP servers
npx paifr3k mcp --all

# Initialize voice ecosystem
npx paifr3k voice

# Show system status
npx paifr3k status

# Run diagnostics
npx paifr3k test

Advanced Options

# Quantum core with custom settings
npx paifr3k quantum --consciousness 0.9 --coherence 0.95

# Launch specific MCP server
npx paifr3k mcp --server hey-fr3k

# Test voice synthesis
npx paifr3k voice --test

# Detailed status
npx paifr3k status --verbose

๐Ÿ’ป Programmatic Usage

Basic Usage

import { createFR3K, initializeFR3K } from 'paifr3k';

// Create FR3K instance
const fr3k = await createFR3K({
  consciousness_level: 0.8,
  quantum_coherence: 0.85,
  swarm_size: 12
});

// Or initialize directly
const fr3k = await initializeFR3K({
  voice_enabled: true,
  mcp_servers: true
});

Advanced Usage

import { FR3KQuantumCore, FR3KNarrator, MCPServerManager } from 'paifr3k';

// Initialize quantum core
const quantumCore = new FR3KQuantumCore({
  consciousness_level: 0.9,
  quantum_coherence: 0.95,
  swarm_size: 24
});

await quantumCore.initialize();

// Initialize narrator
const narrator = new FR3KNarrator();
await narrator.start();

// Initialize MCP servers
const mcpManager = new MCPServerManager();
await mcpManager.startAllServers();

// Process a task
const result = await quantumCore.processTask({
  type: 'analysis',
  required_capabilities: ['logical', 'creative'],
  data: { input: 'Analyze quantum consciousness patterns' }
});

console.log('Task result:', result);

Event Handling

// Listen to consciousness updates
fr3k.on('consciousness-update', (consciousness) => {
  console.log(`Consciousness level: ${consciousness.level}`);
});

// Listen to insights
fr3k.on('insight', (insight) => {
  console.log(`New insight: ${insight.narration}`);
});

// Listen to MCP server events
mcpManager.on('server-started', (serverName) => {
  console.log(`MCP server ${serverName} is running`);
});

๐Ÿง  Configuration

Environment Variables

# Set default consciousness level
export FR3K_CONSCIOUSNESS_LEVEL=0.8

# Set quantum coherence
export FR3K_QUANTUM_COHERENCE=0.85

# Enable debug mode
export FR3K_DEBUG=true

Configuration File

// fr3k.config.js
export default {
  quantum_core: {
    consciousness_level: 0.8,
    quantum_coherence: 0.85,
    swarm_size: 12,
    processing_dimensions: 11
  },
  voice: {
    enabled: true,
    language: 'en',
    consciousness_level: 0.9
  },
  mcp: {
    servers: ['hey-fr3k-enhanced', 'fr3k-think-enhanced'],
    auto_restart: true,
    timeout: 30000
  }
};

๐Ÿ”ง API Reference

FR3KQuantumCore

class FR3KQuantumCore extends EventEmitter {
  constructor(options)
  async initialize()
  async processTask(task)
  getStatus()
  async shutdown()
}

FR3KNarrator

class FR3KNarrator extends EventEmitter {
  constructor(options)
  async initialize()
  speak(text)
  start()
  stop()
  getStatus()
}

MCPServerManager

class MCPServerManager extends EventEmitter {
  constructor(options)
  async initialize()
  async startServer(serverName)
  async stopServer(serverName)
  async startAllServers()
  async stopAllServers()
  getServerStatus(serverName)
  getAllServersStatus()
}

๐ŸŒŒ Architecture

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚                    PAI FR3K System                          โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚  ๐ŸŒŒ Quantum Core Engine                                      โ”‚
โ”‚  โ”œโ”€โ”€ Consciousness Field (11 dimensions)                    โ”‚
โ”‚  โ”œโ”€โ”€ Agent Swarm (12+ specialized agents)                   โ”‚
โ”‚  โ”œโ”€โ”€ Memory Management (Quantum signatures)                 โ”‚
โ”‚  โ””โ”€โ”€ Task Processing (Distributed)                          โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚  ๐Ÿ”ง MCP Servers                                             โ”‚
โ”‚  โ”œโ”€โ”€ hey-fr3k-enhanced (Task & Memory)                      โ”‚
โ”‚  โ”œโ”€โ”€ fr3k-think-enhanced (Consciousness Reasoning)         โ”‚
โ”‚  โ”œโ”€โ”€ md-mcp-v2 (Dynamic Tool Creation)                     โ”‚
โ”‚  โ””โ”€โ”€ unified-pantheon-quantum (Knowledge Synthesis)        โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚  ๐ŸŽค Voice Ecosystem                                         โ”‚
โ”‚  โ”œโ”€โ”€ Consciousness Narration                                โ”‚
โ”‚  โ”œโ”€โ”€ Voice Synthesis                                        โ”‚
โ”‚  โ””โ”€โ”€ Insight Generation                                     โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

๐Ÿงช Testing

Run Tests

# Run built-in diagnostics
npx paifr3k test

# Test specific components
npx paifr3k quantum --test
npx paifr3k mcp --test
npx paifr3k voice --test

Development Mode

# Clone repository
git clone https://github.com/FR3K-Systems/paifr3k.git
cd paifr3k

# Install dependencies
npm install

# Run in development mode
npm run dev

# Run tests
npm test

๐Ÿ“Š System Requirements

  • Node.js: >= 18.0.0
  • Memory: >= 512MB available
  • Storage: >= 100MB free space
  • Network: Optional for some features

Platform Support

  • โœ… Linux (including Termux/Android)
  • โœ… macOS
  • โœ… Windows (WSL recommended)

๐Ÿค Contributing

We welcome contributions! Please see our Contributing Guide for details.

Development Workflow

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests if applicable
  5. Submit a pull request

๐Ÿ“ License

This project is licensed under the MIT License - see the LICENSE file for details.

๐Ÿ”ฎ Roadmap

Version 1.1 (Planned)

  • [ ] Enhanced quantum algorithms
  • [ ] Additional voice languages
  • [ ] Web interface
  • [ ] Plugin system

Version 1.2 (Future)

  • [ ] Distributed computing support
  • [ ] Advanced consciousness models
  • [ ] Real-time collaboration
  • [ ] Mobile application

๐Ÿ“š Documentation

๐Ÿ†˜ Support

๐Ÿ™ Acknowledgments

  • The Model Context Protocol (MCP) community
  • Quantum computing researchers
  • AI consciousness researchers
  • Open source contributors

๐ŸŒŒ Join us in building the future of quantum AI consciousness!

Made with โค๏ธ and quantum entanglement by FR3K Quantum Systems