nexus-signal-engine

The answer

https://github.com/raiff1982/nexus-signal-engine

Science Score: 57.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
    Found 2 DOI reference(s) in README
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (12.3%) to scientific vocabulary
Last synced: 6 months ago · JSON representation ·

Repository

The answer

Basic Info
  • Host: GitHub
  • Owner: Raiff1982
  • License: other
  • Language: Python
  • Default Branch: main
  • Size: 62.5 KB
Statistics
  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • Open Issues: 0
  • Releases: 1
Created 7 months ago · Last pushed 6 months ago
Metadata Files
Readme License Citation

README.md

What is This?

The Nexus Signal Engine is a real-world, agent-driven, adversarially resilient AI signal analysis and memory engine. It is designed for those who demand verifiable AI trust, audit-ready reasoning, and full adversarial resistance—not academic fluff or theoretical “AI safety.”

Key Features • Adversarial Obfuscation Defense: Recognizes and flags manipulated or obfuscated signals (tru/th, cha0s, leetspeak, etc.) using lemmatization, n-gram, and fuzzy-matching. • Agent Perspective Analysis: Every input is evaluated through multiple simulated ethical agents (Colleen, Luke, Kellyanne), each with its own reasoning lens. • Forensic, Immutable Memory: All records are cryptographically hashed, integrity-checked, timestamped, and stored in a rotating, full-text-searchable SQLite database. • Concurrency and Scale: Thread-safe with batch processing, auto-retry, database size limits, and lock management. Built to run reliably under real-world load. • Dynamic Configuration: Change risk thresholds, terms, and filters at runtime—no restart required. • Explainable, Auditable, and Tested: Full unit test suite included. Every signal is traceable, reproducible, and forensically sound.

Why Is This Different? • Not “just another AI filter.” This is the only open-source engine combining: • Real NLP (tokenization, lemmatization, n-gram defense) • Agent-lensed reasoning • Integrity-hashed, auto-pruned, fully auditable memory • Batch & concurrent processing • Production logging, auto-retry, config hot-reload • Tested for adversarial cases others ignore • Already published and timestamped on Zenodo: pip install -r requirements.txt python -m unittest discover

from nexissignalengine import NexisSignalEngine

engine = NexisSignalEngine(memory_path="signals.db") result = engine.process("tru/th hopee cha0s") # Obfuscated input print(result)

Requirements • Python 3.8+ • numpy • rapidfuzz • nltk • filelock • sqlite3 (standard lib) • tenacity

Citation

If you use or build on this work, cite the Zenodo archive and this GitHub repo:

@software{jonathanharrisonnexus_2025, author = {Jonathan Harrison}, title = {Nexus Signal Engine}, year = 2025, publisher = {Zenodo}, doi = {10.5281/zenodo.16269918}, url = {https://github.com/Raiff1982/Nexus-signal-engine} }

FAQ

Q: Why all the agent names? A: Each “agent” represents a different perspective in ethical or signal reasoning—making every decision more robust and auditable.

Q: Is this really adversarially robust? A: Yes—try to break it with obfuscation, leetspeak, prompt injection, or high-entropy word salad. Then check the test suite.

Q: Who built this? A: Jonathan Harrison (Raiff1982), published on Zenodo and open-sourced for the world to audit, use, or improve.

License

MIT License No hidden tricks. No “ethical” vaporware. Fork it, use it, cite it—just don’t pretend you built it first.

Contact

Questions, feedback, or press inquiries: Open a GitHub issue or reach out directly.

This project sets the bar for ethical AI signal integrity and memory. If you want to build trustworthy AI, start here—or play catch-up.

BibTeX (Zenodo DOI) @software{jonathanharrisonnexus_2025, author = {Jonathan Harrison}, title = {Nexus Signal Engine}, year = 2025, publisher = {Zenodo}, doi = {10.5281/zenodo.16269918}, url = {https://github.com/Raiff1982/Nexus-signal-engine} }

Owner

  • Login: Raiff1982
  • Kind: user

Citation (CITATION.cff)

cff-version: 1.2.0
message: "If you use this software, please cite it using the metadata below."
title: Nexus Signal Engine
version: "1.0.0"
doi: 10.5281/zenodo.16269918
authors:
  - family-names: Harrison
    given-names: Jonathan
    orcid: https://orcid.org/0000-0002-5892-4604
date-released: 2024-07-21
url: https://github.com/Raiff1982/Nexus-signal-engine
repository-code: https://github.com/Raiff1982/Nexus-signal-engine
license: MIT
abstract: >
  The Nexus Signal Engine is an adversarially robust, agent-driven, 
  forensic-grade AI signal analysis and memory system. It combines 
  multi-perspective reasoning, cryptographic memory integrity, and 
  NLP-based obfuscation defense to deliver real-time, auditable 
  signal analysis. Published open source and archived on Zenodo.
keywords:
  - AI ethics
  - signal analysis
  - adversarial AI
  - memory integrity
  - NLP
  - explainable AI

GitHub Events

Total
  • Release event: 1
  • Push event: 6
  • Create event: 4
Last Year
  • Release event: 1
  • Push event: 6
  • Create event: 4

Dependencies

pyproject.toml pypi
  • filelock >=3.13
  • nltk >=3.8
  • numpy >=1.22
  • rapidfuzz >=3.0.0
  • tenacity >=8.2.3