FEED QUANTI — ALL PATHS

QVTX-OS Sovereign Intelligence • quanti.qvtx.io • Auth header: X-Quanti-Auth: Qvtx524@$
Local-on-server URL: http://localhost:8827 (HTTP) • localhost:42000 (cipher daemon, no auth)
Page generated 2026-04-29
1. Chat 2. Teach 3. Upload form 4. Reason 5. Sibling-AI 6. Daemon 7. SSH REPL 8. Nucleus write 9. Compress file 10. SCP from Windows 11. GitHub webhook 12. Autoreason 13. Auth test

1. CHAT

POST https://quanti.qvtx.io/chat

Browser: open https://quanti.qvtx.io/dashboard → log in (Qvtx524@$) → use chat box.

curl -X POST https://quanti.qvtx.io/chat \
  -H "X-Quanti-Auth: Qvtx524@\$" \
  -H "Content-Type: application/json" \
  -d '{"message":"YOUR QUESTION HERE","session_id":"louis-2026-04-29"}'

Reuse the same session_id across calls to keep thread continuity.

2. TEACH (push knowledge straight to memory)

POST https://quanti.qvtx.io/learn

curl -X POST https://quanti.qvtx.io/learn \
  -H "X-Quanti-Auth: Qvtx524@\$" \
  -H "Content-Type: application/json" \
  -d '{
    "content":"Patent #5 (Self-Healing DNA Blockchain) target value $2B+, file priority HIGHEST.",
    "category":"patent",
    "source":"louis-direct"
  }'

Returns {"learned":true,"byteid":"QVTX-ATG-...","entropy":...,"fingerprint":{...}}

Feed a whole file's contents:

CONTENT=$(cat /path/to/notes.md | python3 -c 'import sys,json; print(json.dumps(sys.stdin.read()))')
curl -X POST https://quanti.qvtx.io/learn \
  -H "X-Quanti-Auth: Qvtx524@\$" \
  -H "Content-Type: application/json" \
  -d "{\"content\":$CONTENT,\"category\":\"docs\",\"source\":\"file-upload\"}"

Multipart file upload (any size, lands in /root/uploads/):

curl -X POST https://quanti.qvtx.io/_membrane/upload \
  -H "X-Quanti-Auth: Qvtx524@\$" \
  -F "file=@C:\path\to\file.pdf"

3. WEB UPLOAD FORM

GET https://quanti.qvtx.io/upload

Browser only. Log in → drag-drop file. Backend wraps and sends to /learn.

4. REASONED ANSWER (Claude Opus chain + Chain 42000 anchor)

POST https://quanti.qvtx.io/reason

curl -X POST https://quanti.qvtx.io/reason \
  -H "X-Quanti-Auth: Qvtx524@\$" \
  -H "Content-Type: application/json" \
  -d '{"prompt":"YOUR PROMPT","session_id":"my-thread-name"}'

Routes through Claude Opus 4.7 + nucleus retrieval; result is anchored to Chain 42000.

5. SIBLING-AI ENDPOINTS (for Claude / other agents)

PathBodyPurpose
/api/ai/ask{"prompt":"...","session_id":"..."}Reasoned answer (wraps /chat)
/api/ai/knowledge{"topic":"...","limit":10}Top resonant memories on topic
/api/ai/recall{"query":"...","limit":N}Native-mode recall (constructive interference)
/api/ai/intake{"path":"/abs/path","category":"..."}Walk file/folder through full headrun stack
/api/ai/intelLive stats (no auth)
/api/ai/score{"data":"..."}Fingerprint + score arbitrary bytes
curl -X POST https://quanti.qvtx.io/api/ai/knowledge \
  -H "X-Quanti-Auth: Qvtx524@\$" \
  -H "Content-Type: application/json" \
  -d '{"topic":"liquidator v2","limit":10}'

6. CIPHER DAEMON (lowest-level intake)

TCP localhost:42000   (server-side only — SSH first)

# Encounter — full 7-layer absorb, returns ByteID
HEX=$(printf 'your text here' | xxd -p | tr -d '\n')
echo "encounter $HEX" | nc -q3 localhost 42000

# Express text → DNA strand
echo "express The QVTX system runs at 8825 Hz" | nc -q3 localhost 42000

# Daemon-side reasoning compose
echo "compose explain coherence 0.882" | nc -q3 localhost 42000

# Stats / inventory
echo "stat"  | nc -q3 localhost 42000
echo "genes" | nc -q3 localhost 42000
echo "nstat" | nc -q3 localhost 42000

7. SSH DIRECT INTO QUANTI REPL

SSH ssh quanti@203.161.33.24
# password: Qvtx524@$

Drops straight into /usr/local/bin/quanti-shell — anything typed is fed through /chat.

8. DIRECT NUCLEUS WRITE (server-side Python)

Skip HTTP — write straight to /opt/qvtx-os/nucleus/<category>.dna.

ssh root@203.161.33.24
python3 <<'EOF'
import sys; sys.path.insert(0, "/opt/qvtx-os")
import nucleus_kv
nucleus_kv.put(
    category="patent",
    key="QVTX-PATENT-005",
    value={"content":"Self-Healing DNA Blockchain — file priority HIGHEST",
           "source":"louis"})
print(nucleus_kv.stats()["patent"])
EOF

9. DNA COMPRESS A FILE (any size)

ssh root@203.161.33.24
python3 /opt/qvtx-os/dna_compress.py compress /path/to/file.txt \
  --owner louis@internetforall.info
# Output saved to /tmp/qvtx-uploads/QVTX-ATG-<id>.qvtx
# ByteID auto-registered — retrievable via /api/ai/recall

10. SCP FROM WINDOWS → SERVER

scp "C:\Users\LouisWhite\Desktop\anything.pdf" root@203.161.33.24:/root/uploads/

# then run intake on the upload directory:
curl -X POST https://quanti.qvtx.io/api/ai/intake \
  -H "X-Quanti-Auth: Qvtx524@\$" \
  -H "Content-Type: application/json" \
  -d '{"path":"/root/uploads","category":"my-docs","recursive":false,"max_files":50}'

11. GITHUB → QUANTI (swarm webhook)

URLhttp://203.161.33.24:5005/webhook/github
Content-Typeapplication/json
SecretQVTX_SWARM_2026

Pushes trigger repo sync + memory updates automatically.

12. AUTOREASON — RECURRING AUTONOMOUS FEED

Add a standing prompt — runs every 15 min via systemd timer with persistent session continuity.

ssh root@203.161.33.24
nano /opt/qvtx-os/quanti_autoreason.py
# Add to PROMPTS list:
#   {'session_id': 'autoreason-MY-NAME',
#    'prompt': 'YOUR STANDING QUESTION...'},
systemctl restart qvtx-autoreason.timer

13. AUTH QUICK TEST

curl -X POST https://quanti.qvtx.io/api/ai/recall \
  -H "X-Quanti-Auth: Qvtx524@\$" \
  -H "Content-Type: application/json" \
  -d '{"query":"test","limit":1}'

JSON back = auth OK. {"error":"Authentication required"} = bad password header.

QUICK-PICK CHEAT SHEET

What you haveBest feed path
Conversational questionPOST /chat
Document or factPOST /learn
File any sizedna_compress → /learn or recall by ByteID
Browser file drop/upload
Github pushswarm webhook
Inter-AI questionPOST /api/ai/ask
Bulk topic loadloop POST /learn per chunk
Folder of filesPOST /api/ai/intake {"path":"/root/uploads"}
Direct from servernucleus_kv.put() or nc localhost 42000
Recurring autonomousadd to autoreason PROMPTS
QUANTVESTRIX INC. • Chain 42000 • 8825 Hz • 0.882 coherence • 0.210257 field
A Adenine • T Thymine • G Guanine • C Cytosine
Louis A. White III • louis@usconnects.com