Ferrell Synthetic Intelligence (FSI): Vitalis_Devcore
**"Built by one person. Laptop and a tablet. No degree. No team. A self-healing, self-learning, sovereign AI development system using Hyperdimensional Computing as the reasoning substrate. Benchmarked 3/3. Ships with biological memory decay, idle-time dream consolidation, and resonance-based weight learning. Runs offline. Forever."
What Is This?
Most AI coding tools are assistants β they wait for you to ask, then suggest. Vitalis is different.
Vitalis_Devcore is an autonomous execution engine. It receives an intent, writes the code, runs the tests, and if something breaks, it heals itself and tries again β all without human intervention. It is the "hands" of the FSI ecosystem, designed to operate alongside Vitalis_Core, which provides the cognitive reasoning layer.
Core Architecture
| Component | Role |
|---|---|
SovereignKernel |
Writes and scaffolds code to disk |
KernelDaemon |
Watches for tasks, executes them, validates results |
SelfHealingLoop |
Detects failures and autonomously attempts recovery |
KernelValidator |
Runs pytest against generated code |
ProjectLedger |
Immutable append-only audit log of every action |
InferenceEngine |
Confidence-gated response generation with RAG augmentation |
ConfidenceBridge |
Autonomously re-queries when confidence is in the hypothesis zone (0.45β0.65) |
Hippocampus |
Memory-mapped binary vector store for long-term recall |
ResonanceEngine |
Continual learning β adjusts kernel weights from interaction history |
ContextSerializer |
Serializes full project state for agent context windows |
How It Works
You give Vitalis an intent
β
CognitionEngine generates a plan
β
KernelDaemon picks up the task
β
SovereignKernel writes the code
β
KernelValidator runs the tests
β
Pass β ProjectLedger logs success
Fail β SelfHealingLoop attempts autonomous recovery
β
Pass β Recovered and logged
Fail β Failure report generated for review
Getting Started
1. Clone the repository
git clone https://huggingface.co/FerrellSyntheticIntelligence/Vitalis_Devcore
cd Vitalis_Devcore
2. Install dependencies
pip install -r requirements.txt
3. Start the Kernel Daemon
python3 -m src.ide_kernel.daemon
4. Send your first task
python3 -m src.ide_kernel.client scaffold my_module
Vitalis will scaffold a full module structure under app/modules/my_module/, generate a test file, run it, and log the result β all automatically.
REST Gateway (Optional)
Start the Flask gateway to send tasks over HTTP:
python3 src/ide_kernel/gateway.py
Then POST to it:
curl -X POST http://127.0.0.1:5001/execute \
-H "Content-Type: application/json" \
-d '{"intent": "scaffold", "module_name": "my_module"}'
Self-Healing Demo
# Start the self-healing monitor in a separate terminal
python3 -m src.loop.self_healing
# Trigger a task that fails β Vitalis will detect the failure
# and autonomously attempt recovery without you touching anything
Technical Highlights
- Custom HDC Engine β A compiled C extension (
hdc_engine.so) for hyperdimensional computing operations including vector binding and bundling - Memory-Mapped Neural Store β
Hippocampususesnumpy.memmapfor persistent binary vector storage across sessions - Confidence-Gated Inference β The
InferenceEngineuses aConfidenceBridgeto autonomously augment prompts when confidence falls in the hypothesis zone - Temporal Knowledge Retrieval β
train_self.pysupports querying memory nodes that were alive at a specific Unix timestamp - Hot-Ingestion Daemon β
watcher.pymonitors the knowledge directory and re-ingests new documents in real time
Governance & Integrity
- Quality Gates β All autonomous actions require passing pytest before being committed to the ledger
- Immutable Audit β Every action is SHA-recorded in
project_ledger.json - Failure Transparency β All failures are written to
failure_report.jsonbefore recovery is attempted
Roadmap
- Connect Vitalis_Core LLM as the live reasoning backend
- HuggingFace Space interactive demo
- Natural language task input via CLI
- Multi-agent coordination between Devcore instances
- Web UI dashboard for ledger and task visualization
About the Developer
FSI (Ferrell Synthetic Intelligence) is an independent AI research project built by a single self-taught developer over four years β no formal education, no team, no funding. Just a vision, a tablet, and a GPU.
If this project resonates with you, a β star goes a long way.
License: GPL-3.0
- Downloads last month
- 11