AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Projekt Aufnahme

skill-ellmos-ai-skills-project-onboarding · by ellmos-ai

>

No reviews yet
0 installs
33 views
0.0% view→install

Install

$ agentstack add skill-ellmos-ai-skills-project-onboarding

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-ellmos-ai-skills-project-onboarding)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Projekt Aufnahme? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Standardaufnahmeverfahren fuer neue Software-Projekte

Version: 1.0 Stand: 2026-03-12


Uebersicht

Dieses Verfahren definiert, welche Schritte bei neu entdeckten Software-Ordnern durchzufuehren sind, bevor sie in ein Task-Management-System aufgenommen werden.

┌─────────────────────────────────────────────────────────┐
│           STANDARDAUFNAHMEVERFAHREN                     │
├─────────────────────────────────────────────────────────┤
│  1. Feature-Analyse erstellen                           │
│  2. Code-Qualitaetspruefung (Standard-Tests)            │
│  3. AUFGABEN.txt erstellen                              │
│  4. In Task-Management uebernehmen                      │
└─────────────────────────────────────────────────────────┘

Phase 1: Feature-Analyse

Zweck: Verstaendnis des Tools, seiner Funktionen und des Entwicklungsstandes.

Datei erstellen: Feature_Analyse_.md

Template

# Feature-Analyse: 

## Kurzbeschreibung
Ein kurzer Satz der beschreibt was das Tool macht.

---

## Highlights

| Feature | Beschreibung |
|---------|-------------|
| **Feature 1** | Beschreibung |
| **Feature 2** | Beschreibung |

---

## Bewertung der Ausbaustufe

### Aktueller Stand: ** (%)**

Moegliche Status:
- Prototype (0-30%)
- Alpha (30-60%)
- Beta (60-85%)
- Production Ready (85-95%)
- Release (95-100%)

| Kategorie | Bewertung (1-5) | Details |
|-----------|:---------------:|---------|
| **Funktionsumfang** | 3 | |
| **UI/UX** | 3 | |
| **Stabilitaet** | 3 | |
| **Dokumentation** | 3 | |

---

## Empfohlene Erweiterungen

### Prioritaet: Hoch
1. ...

### Prioritaet: Mittel
2. ...

### Prioritaet: Niedrig
3. ...

---

## Technische Details

Framework:      
Dateigroesse:    Zeilen Python
Hauptdatei:     

---
*Analyse erstellt: *

Phase 2: Code-Qualitaetspruefung

Zweck: Technische Qualitaet sicherstellen, bekannte Probleme identifizieren.

Empfohlene Pruefungen

| Test | Werkzeug | Beschreibung | |------|----------|--------------| | Encoding | Encoding-Checker (z.B. chardet, file) | UTF-8 sicherstellen | | Methoden-Analyse | Linter (z.B. pylint, flake8) | Grosse Methoden finden | | Einrueckung | Formatter (z.B. black, autopep8) | Konsistenz pruefen | | Imports | Import-Checker (z.B. isort, pylint) | Unused Imports finden |

Pruefpunkte

  • [ ] Alle .py Dateien UTF-8 kodiert?
  • [ ] Keine ungewoehnlich grosse Methoden (>100 Zeilen)?
  • [ ] Konsistente Einrueckung (Spaces vs Tabs)?
  • [ ] Unused Imports entfernt?
  • [ ] Docstrings vorhanden?

Ergebnis dokumentieren

Probleme in AUFGABEN.txt unter "QUALITAETSPRUEFUNG" eintragen.


Phase 3: AUFGABEN.txt erstellen

Zweck: Offene Aufgaben strukturiert erfassen.

Datei erstellen: AUFGABEN.txt im Projektordner

Template

AUFGABEN -  V
==============================
Status: 
Stand: 

OFFENE AUFGABEN:
[ ]  - Aufwand: 
[ ]  - Aufwand: 

---
ERLEDIGT (Archiv):
-  (, )

Status-Werte

| Status | Bedeutung | |--------|-----------| | NEU ENTDECKT | Noch nicht analysiert | | ANALYSE NOETIG | Feature-Analyse laeuft | | QUALITAETSPRUEFUNG | Code-Tests laufen | | VALIDIERT & BEREIT | Bereit fuer Features | | MVP | Minimum Viable Product | | NUR KOMPILIEREN | Nur noch Kompilierung noetig | | GESPERRT | Wartet auf User-Test/Entscheidung |


Phase 4: Task-Management-Integration

Nach Abschluss der Phasen 1-3:

  1. Aufgaben uebertragen: AUFGABEN.txt-Eintraege als Tasks/Issues anlegen
  2. Pruefen: Alle Aufgaben korrekt kategorisiert?
  3. Kategorisierung: Projekt in passende Kategorie einordnen (Single-Tool, Suite, Library etc.)

Automatische Onboarding-Tasks

Bei neuen Projekten folgende Standard-Tasks anlegen:

| Task | Aufgabe | Aufwand | |------|---------|---------| | onb1 | Feature-Analyse erstellen | mittel | | onb2 | Code-Qualitaetspruefung | niedrig | | onb_3 | AUFGABEN.txt erstellen | niedrig |

Tasks haben Abhaengigkeiten: onb2 haengt von onb1 ab, onb3 haengt von onb2 ab.


Schnell-Checkliste

[ ] 1. Feature_Analyse_.md erstellt
[ ] 2. Code-Qualitaetspruefung durchgefuehrt (Linter, Encoding, Imports)
[ ] 3. AUFGABEN.txt erstellt mit Status
[ ] 4. Tasks in Task-Management uebernommen

Beispiel: Neues Tool "MyTool"

# 1. Feature-Analyse
# -> Feature_Analyse_MyTool.md erstellen (siehe Template)

# 2. Code-Qualitaet
pylint MyTool/main.py
flake8 MyTool/main.py
file -i MyTool/main.py  # Encoding pruefen

# 3. AUFGABEN.txt
# -> Im Tool-Ordner erstellen mit Status "QUALITAETSPRUEFUNG"

# 4. Tasks anlegen
# -> Eintraege aus AUFGABEN.txt als Issues/Tickets erfassen

Erstellt: 2026-01-10 | Portiert: 2026-03-12

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.