Install
$ agentstack add skill-ellmos-ai-skills-ai-portable-setup ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
AI Portable Setup
Erstellt eine portable KI-Arbeitsumgebung mit lokaler RAG-Pipeline. Gedacht fuer USB-Sticks oder externe Laufwerke -- funktioniert offline mit Ollama und lokalen Embedding-Modellen.
Schnellstart
# Struktur auf USB-Stick erstellen
python setup_portable.py E:\AI-Portable
# Danach auf dem Zielsystem:
cd E:\AI-Portable
python -m venv venv
venv\Scripts\activate # Windows
pip install chromadb ollama
# Dokumente indexieren
python rag/ingest.py
# Abfragen
python rag/query.py "Meine Frage..."
python rag/query.py --mode icf "Beobachtungen zum Klienten"
Erzeugte Verzeichnisstruktur
AI-Portable/
models/
llm/ Lokale LLM-Modelle (Mistral, Llama, etc.)
embeddings/ Embedding-Modelle (nomic-embed-text, bge-small)
tts/ Optional: Text-to-Speech (Piper, Coqui)
db/
chroma/ ChromaDB Vektordatenbank
sqlite/ Metadaten-DB
documents/
code/ Code-Snippets, Projekte
general/ Allgemeine Dokumente
rag/
ingest.py Dateien einlesen und indexieren
query.py RAG-Abfragen mit Modus-Auswahl
pipeline.py Haupt-RAG-Pipeline (Embed + Query + LLM)
prompts/
coding.txt Coding-Assistent Prompt
icf.txt ICF-Strukturierung Prompt
rpg.txt Pen-and-Paper Spielleiter Prompt
templates/ Word/PDF-Vorlagen
venv/ Portable Python-Umgebung
RAG-Pipeline
Dokumente -> Chunking -> Embedding (nomic-embed-text)
|
v
ChromaDB (lokal)
|
Frage -> Embedding -> Similarity Search -> Top-K Chunks
|
v
Kontext + Prompt -> Ollama (Mistral)
|
v
Antwort
Abfrage-Modi
| Modus | Prompt | Verwendung | |-------|--------|------------| | default | Allgemeiner Assistent | Standardabfragen | | icf | ICF-Strukturierung | Beobachtungen nach ICF klassifizieren | | coding | Coding-Assistent | Code schreiben und erklaeren | | rpg | Spielleiter | Pen-and-Paper Rollenspiel |
Voraussetzungen auf dem Zielsystem
- Python 3.10+
- Ollama (mit
mistral:instructundnomic-embed-text) - ~8 GB RAM fuer Mistral
Changelog
1.0.0 (2026-03-12)
- Konsolidierung aus MODULAR_AGENTS/AI-Portable
- Setup-Script als Einzeldatei-Skill
- 4 vorkonfigurierte Prompts (coding, icf, rpg, default)
- RAG-Pipeline (ingest, query, pipeline)
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: ellmos-ai
- Source: ellmos-ai/skills
- License: MIT
- Homepage: https://github.com/ellmos-ai/skills#readme
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.