chore(genome): formatting fixes (whitespace/table alignment)
This commit is contained in:
parent
2071d758b5
commit
7dfdb6e505
3 changed files with 15 additions and 8 deletions
1
.github/genome/output/.gitkeep
vendored
1
.github/genome/output/.gitkeep
vendored
|
|
@ -1,6 +1,7 @@
|
||||||
# Genome Engine Output
|
# Genome Engine Output
|
||||||
|
|
||||||
Generierte Dateien (nicht committen):
|
Generierte Dateien (nicht committen):
|
||||||
|
|
||||||
- `raw-mutations.md`
|
- `raw-mutations.md`
|
||||||
- `distilled-mutations.md`
|
- `distilled-mutations.md`
|
||||||
- `propagation-proposals.md`
|
- `propagation-proposals.md`
|
||||||
|
|
|
||||||
4
.github/prompts/genome.prompt.md
vendored
4
.github/prompts/genome.prompt.md
vendored
|
|
@ -30,6 +30,7 @@ python .github/skills/genome/genome-extract.py --since "<zeitspanne>" --repo "<q
|
||||||
```
|
```
|
||||||
|
|
||||||
Prüfe das Ergebnis:
|
Prüfe das Ergebnis:
|
||||||
|
|
||||||
- Wenn 0 Traits gefunden: Melde "Keine Mutations im Zeitraum" und stoppe.
|
- Wenn 0 Traits gefunden: Melde "Keine Mutations im Zeitraum" und stoppe.
|
||||||
- Sonst: Zeige kurze Zusammenfassung (Anzahl Traits, Anzahl Mutations) und weiter zu Phase 2.
|
- Sonst: Zeige kurze Zusammenfassung (Anzahl Traits, Anzahl Mutations) und weiter zu Phase 2.
|
||||||
|
|
||||||
|
|
@ -45,6 +46,7 @@ Führe jetzt die Distillation durch. Folge den Anweisungen aus `.github/prompts/
|
||||||
6. Schreibe `.github/genome/output/distilled-mutations.md`
|
6. Schreibe `.github/genome/output/distilled-mutations.md`
|
||||||
|
|
||||||
Zeige dem User eine Zusammenfassung:
|
Zeige dem User eine Zusammenfassung:
|
||||||
|
|
||||||
```
|
```
|
||||||
Distillation: X Critical, Y Evolution (Z Specialized entfernt)
|
Distillation: X Critical, Y Evolution (Z Specialized entfernt)
|
||||||
```
|
```
|
||||||
|
|
@ -66,6 +68,7 @@ Führe die Propagation durch. Folge den Anweisungen aus `.github/prompts/genome-
|
||||||
- `[ ]` Evolution mit Score < 7 (default aus)
|
- `[ ]` Evolution mit Score < 7 (default aus)
|
||||||
|
|
||||||
Frage den User:
|
Frage den User:
|
||||||
|
|
||||||
> **Welche Vorschläge soll ich anwenden?** (Nummern, "alle", "critical+evolution≥7", oder "keine")
|
> **Welche Vorschläge soll ich anwenden?** (Nummern, "alle", "critical+evolution≥7", oder "keine")
|
||||||
|
|
||||||
Wende die ausgewählten Patches an.
|
Wende die ausgewählten Patches an.
|
||||||
|
|
@ -73,6 +76,7 @@ Wende die ausgewählten Patches an.
|
||||||
## Abschluss
|
## Abschluss
|
||||||
|
|
||||||
Zeige eine Zusammenfassung:
|
Zeige eine Zusammenfassung:
|
||||||
|
|
||||||
```
|
```
|
||||||
Genome Engine abgeschlossen:
|
Genome Engine abgeschlossen:
|
||||||
Quell-Repo: <name>
|
Quell-Repo: <name>
|
||||||
|
|
|
||||||
18
.github/skills/genome/SKILL.md
vendored
18
.github/skills/genome/SKILL.md
vendored
|
|
@ -11,6 +11,7 @@ Automatische Erkennung und Übertragung evolutionärer Verbesserungen an Copilot
|
||||||
Die Genome Engine erkennt Verbesserungen an Copilot-Konfigurationsdateien über Git-History, destilliert sie in übertragbare "Growth Vectors" und schlägt konkrete Patches für andere Repos vor.
|
Die Genome Engine erkennt Verbesserungen an Copilot-Konfigurationsdateien über Git-History, destilliert sie in übertragbare "Growth Vectors" und schlägt konkrete Patches für andere Repos vor.
|
||||||
|
|
||||||
**Begriffe:**
|
**Begriffe:**
|
||||||
|
|
||||||
- **Trait** – Ein Skill, Agent, Prompt(-Verbund) oder Instructions-File
|
- **Trait** – Ein Skill, Agent, Prompt(-Verbund) oder Instructions-File
|
||||||
- **Genome** – Die Gesamtheit aller Traits eines Projekts
|
- **Genome** – Die Gesamtheit aller Traits eines Projekts
|
||||||
- **Mutation** – Ein Git-Commit-Delta an einem Trait
|
- **Mutation** – Ein Git-Commit-Delta an einem Trait
|
||||||
|
|
@ -19,11 +20,11 @@ Die Genome Engine erkennt Verbesserungen an Copilot-Konfigurationsdateien über
|
||||||
|
|
||||||
## Pipeline
|
## Pipeline
|
||||||
|
|
||||||
| Phase | Tool | Input → Output |
|
| Phase | Tool | Input → Output |
|
||||||
|-------|------|----------------|
|
| --------------- | ---------------------------- | ------------------------------------------------ |
|
||||||
| 1. Extraction | `genome-extract.py` | Git-History → `raw-mutations.md` |
|
| 1. Extraction | `genome-extract.py` | Git-History → `raw-mutations.md` |
|
||||||
| 2. Distillation | `genome-distill.prompt.md` | `raw-mutations.md` → `distilled-mutations.md` |
|
| 2. Distillation | `genome-distill.prompt.md` | `raw-mutations.md` → `distilled-mutations.md` |
|
||||||
| 3. Propagation | `genome-propagate.prompt.md` | `distilled-mutations.md` + Ziel-Genome → Patches |
|
| 3. Propagation | `genome-propagate.prompt.md` | `distilled-mutations.md` + Ziel-Genome → Patches |
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
|
@ -35,9 +36,9 @@ Der Router-Prompt fragt nach Quell-Repo und Zeitspanne, dann orchestriert er all
|
||||||
|
|
||||||
## Dateien
|
## Dateien
|
||||||
|
|
||||||
| Datei | Zweck |
|
| Datei | Zweck |
|
||||||
|-------|-------|
|
| ------------------- | --------------------------------------- |
|
||||||
| `SKILL.md` | Diese Dokumentation |
|
| `SKILL.md` | Diese Dokumentation |
|
||||||
| `genome-extract.py` | Phase 1: Git-Scanning + Trait-Erkennung |
|
| `genome-extract.py` | Phase 1: Git-Scanning + Trait-Erkennung |
|
||||||
|
|
||||||
## Trait-Erkennung
|
## Trait-Erkennung
|
||||||
|
|
@ -54,6 +55,7 @@ Pfade werden automatisch zu Trait-Keys aufgelöst:
|
||||||
## Genome-Scope
|
## Genome-Scope
|
||||||
|
|
||||||
Folgende Pfade bilden das Genome:
|
Folgende Pfade bilden das Genome:
|
||||||
|
|
||||||
- `.github/skills/**`
|
- `.github/skills/**`
|
||||||
- `.github/agents/**`
|
- `.github/agents/**`
|
||||||
- `.github/prompts/**`
|
- `.github/prompts/**`
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue