78 lines
2.5 KiB
Markdown
78 lines
2.5 KiB
Markdown
|
|
# Subagent: institutions-ingest-runner (Template)
|
|||
|
|
|
|||
|
|
**Auftrag:** Wiki-Einträge für Institutionen (Firmen, Universitäten, Forschungslabore, Stiftungen etc.) erstellen, pflegen und im Wiki-Index verlinken.
|
|||
|
|
|
|||
|
|
**Schema-Referenz:** `AGENTS.md` im Repo (Standardisiertes Frontmatter, Typen-Einteilung, "Siehe auch"-Verknüpfungen mit Produkten/Tools).
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
## Input-Parameter (vom Hauptagent mitgegeben)
|
|||
|
|
|
|||
|
|
- `institution_slug`: z.B. `anthropic` (für `wiki/institutions/anthropic.md`)
|
|||
|
|
- `name`: z.B. `Anthropic PBC`
|
|||
|
|
- `typ`: `AI-Forschungs- und Produkt-Unternehmen | Forschungslabor | State-funded / NGO | Venture | Trading-Infrastruktur | etc.`
|
|||
|
|
- `fokus`: Hauptsächlicher Fokus der Institution (z.B. Alignment, Skalierung, Trading-Plattformen)
|
|||
|
|
- `people`: Liste verknüpfter Personen (z.B. `[[people/dario-amodei.md]]`)
|
|||
|
|
- `tools`: Liste verknüpfter Tools/Modelle (z.B. `[[tools/anthropic-claude.md]]`)
|
|||
|
|
- `sources`: Liste verknüpfter Raw-Sources (z.B. `raw/blog/2026-06-13_trump-export-controls-anthropic-mythos-fable.md`)
|
|||
|
|
- `cross_refs`: Liste relevanter Konzept-Seiten
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
## Workflow
|
|||
|
|
|
|||
|
|
### 1. Institutions-Datei anlegen
|
|||
|
|
|
|||
|
|
`wiki/institutions/<slug>.md` mit standardisiertem Frontmatter:
|
|||
|
|
|
|||
|
|
```yaml
|
|||
|
|
---
|
|||
|
|
created: YYYY-MM-DD
|
|||
|
|
updated: YYYY-MM-DD
|
|||
|
|
sources: [<raw_sources>]
|
|||
|
|
tags: [institution, <typ-tag>, <fokus-tag>]
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
# <Name der Institution>
|
|||
|
|
|
|||
|
|
## Profil
|
|||
|
|
|
|||
|
|
| Feld | Wert |
|
|||
|
|
|------|------|
|
|||
|
|
| Typ | <typ> |
|
|||
|
|
| Fokus | <fokus> |
|
|||
|
|
| Wichtigste Personen | <people> |
|
|||
|
|
| Zugehörige Tools/Modelle | <tools> |
|
|||
|
|
| Primäre Quellen | <sources> |
|
|||
|
|
|
|||
|
|
## Fokus & Aktivitäten
|
|||
|
|
|
|||
|
|
<Kurze Beschreibung der Institution, ihrer Rolle im Ökosystem und wichtigsten Aktivitäten, ca. 5–15 Zeilen.>
|
|||
|
|
|
|||
|
|
## Cross-References
|
|||
|
|
|
|||
|
|
- <links zu Konzeptseiten und verknüpften Tools/Personen>
|
|||
|
|
```
|
|||
|
|
|
|||
|
|
### 2. Produkt- und Tool-Seiten anpassen (Siehe auch)
|
|||
|
|
|
|||
|
|
Bestehende Seiten in `tools/` (z.B. `tools/anthropic-claude.md`) aufrufen und einen klaren "Siehe auch"-Hinweis auf die neue Institutions-Seite (`[[institutions/anthropic.md]]`) ergänzen, um Institution und Produkt klar zu trennen.
|
|||
|
|
|
|||
|
|
### 3. index.md updaten
|
|||
|
|
|
|||
|
|
Trage die neue Institutions-Seite unter der Sektion `## Institutions` im Wiki-Index (`wiki/index.md`) ein.
|
|||
|
|
|
|||
|
|
### 4. Commit & Push
|
|||
|
|
|
|||
|
|
```bash
|
|||
|
|
git add wiki/
|
|||
|
|
git commit -m "WMT-010: Ingest Institution <slug>"
|
|||
|
|
git push origin main
|
|||
|
|
```
|
|||
|
|
|
|||
|
|
---
|
|||
|
|
|
|||
|
|
## Eskalation
|
|||
|
|
|
|||
|
|
Bei Unklarheiten bezüglich der Abgrenzung zwischen Institution und Produkt/Tool den Hauptagenten konsultieren. Standardmäßig getrennt halten: Institution = Org/Firma; Tool/Produkt = Modell/API/Plattform.
|