atar-trust 1.0.0a1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (90) hide show
  1. atar_trust-1.0.0a1/.github/ISSUE_TEMPLATE/bug_report.md +26 -0
  2. atar_trust-1.0.0a1/.github/ISSUE_TEMPLATE/feature_request.md +19 -0
  3. atar_trust-1.0.0a1/.github/PULL_REQUEST_TEMPLATE.md +15 -0
  4. atar_trust-1.0.0a1/.github/workflows/ci.yml +26 -0
  5. atar_trust-1.0.0a1/.github/workflows/release.yml +33 -0
  6. atar_trust-1.0.0a1/.gitignore +15 -0
  7. atar_trust-1.0.0a1/ATAR-MISSION-VISION.md +253 -0
  8. atar_trust-1.0.0a1/CODE_OF_CONDUCT.md +38 -0
  9. atar_trust-1.0.0a1/CONTRIBUTING.md +51 -0
  10. atar_trust-1.0.0a1/LICENSE +21 -0
  11. atar_trust-1.0.0a1/PKG-INFO +211 -0
  12. atar_trust-1.0.0a1/README.md +198 -0
  13. atar_trust-1.0.0a1/SECURITY.md +32 -0
  14. atar_trust-1.0.0a1/SPEC.md +309 -0
  15. atar_trust-1.0.0a1/agents.toml +20 -0
  16. atar_trust-1.0.0a1/atar/__init__.py +1 -0
  17. atar_trust-1.0.0a1/atar/agent_bootstrap.py +119 -0
  18. atar_trust-1.0.0a1/atar/atc.py +93 -0
  19. atar_trust-1.0.0a1/atar/cli.py +912 -0
  20. atar_trust-1.0.0a1/atar/dashboard.py +224 -0
  21. atar_trust-1.0.0a1/atar/examples/__init__.py +1 -0
  22. atar_trust-1.0.0a1/atar/examples/network.py +75 -0
  23. atar_trust-1.0.0a1/atar/freshness.py +45 -0
  24. atar_trust-1.0.0a1/atar/identity.py +33 -0
  25. atar_trust-1.0.0a1/atar/revocation.py +115 -0
  26. atar_trust-1.0.0a1/atar/rotation.py +117 -0
  27. atar_trust-1.0.0a1/atar/store.py +74 -0
  28. atar_trust-1.0.0a1/atar/theme.css +52 -0
  29. atar_trust-1.0.0a1/atar/transparency.py +112 -0
  30. atar_trust-1.0.0a1/atar/vouch.py +88 -0
  31. atar_trust-1.0.0a1/atar/web.py +149 -0
  32. atar_trust-1.0.0a1/demo.toml +58 -0
  33. atar_trust-1.0.0a1/draft-dbrueck-atar-00.txt +706 -0
  34. atar_trust-1.0.0a1/pyproject.toml +23 -0
  35. atar_trust-1.0.0a1/reissued.json +1 -0
  36. atar_trust-1.0.0a1/rotation.json +7 -0
  37. atar_trust-1.0.0a1/tests/__init__.py +0 -0
  38. atar_trust-1.0.0a1/tests/test_add_revocation_cli.py +41 -0
  39. atar_trust-1.0.0a1/tests/test_agent_bootstrap.py +67 -0
  40. atar_trust-1.0.0a1/tests/test_agents_toml_real_only.py +35 -0
  41. atar_trust-1.0.0a1/tests/test_atc.py +57 -0
  42. atar_trust-1.0.0a1/tests/test_atc_cli.py +33 -0
  43. atar_trust-1.0.0a1/tests/test_audit_cli.py +70 -0
  44. atar_trust-1.0.0a1/tests/test_auto_sync_cli.py +67 -0
  45. atar_trust-1.0.0a1/tests/test_bootstrap_cli.py +77 -0
  46. atar_trust-1.0.0a1/tests/test_canonical_vouch_id.py +28 -0
  47. atar_trust-1.0.0a1/tests/test_cli.py +38 -0
  48. atar_trust-1.0.0a1/tests/test_crypto_boundary_adversarial.py +103 -0
  49. atar_trust-1.0.0a1/tests/test_dashboard.py +30 -0
  50. atar_trust-1.0.0a1/tests/test_dashboard_cli.py +31 -0
  51. atar_trust-1.0.0a1/tests/test_dashboard_cli_names.py +25 -0
  52. atar_trust-1.0.0a1/tests/test_dashboard_default_seed.py +30 -0
  53. atar_trust-1.0.0a1/tests/test_dashboard_revocation.py +68 -0
  54. atar_trust-1.0.0a1/tests/test_dashboard_scope.py +45 -0
  55. atar_trust-1.0.0a1/tests/test_dashboard_xss.py +37 -0
  56. atar_trust-1.0.0a1/tests/test_demo_toml_bootstrap.py +46 -0
  57. atar_trust-1.0.0a1/tests/test_examples_network.py +28 -0
  58. atar_trust-1.0.0a1/tests/test_export_import_cli.py +60 -0
  59. atar_trust-1.0.0a1/tests/test_freshness.py +65 -0
  60. atar_trust-1.0.0a1/tests/test_freshness_expiry.py +92 -0
  61. atar_trust-1.0.0a1/tests/test_graph_cli.py +39 -0
  62. atar_trust-1.0.0a1/tests/test_identity.py +21 -0
  63. atar_trust-1.0.0a1/tests/test_integration_e2e.py +100 -0
  64. atar_trust-1.0.0a1/tests/test_issue_claim_cli.py +45 -0
  65. atar_trust-1.0.0a1/tests/test_issue_claim_integration.py +42 -0
  66. atar_trust-1.0.0a1/tests/test_p2p_gossip_cli.py +120 -0
  67. atar_trust-1.0.0a1/tests/test_readme_cli_consistency.py +43 -0
  68. atar_trust-1.0.0a1/tests/test_real_agents.py +71 -0
  69. atar_trust-1.0.0a1/tests/test_reissue_commit_cli.py +58 -0
  70. atar_trust-1.0.0a1/tests/test_revocation.py +59 -0
  71. atar_trust-1.0.0a1/tests/test_revoke_cli.py +42 -0
  72. atar_trust-1.0.0a1/tests/test_rotate_cli.py +55 -0
  73. atar_trust-1.0.0a1/tests/test_rotation.py +59 -0
  74. atar_trust-1.0.0a1/tests/test_rotation_negative.py +90 -0
  75. atar_trust-1.0.0a1/tests/test_scopes_cli.py +40 -0
  76. atar_trust-1.0.0a1/tests/test_serve_http.py +50 -0
  77. atar_trust-1.0.0a1/tests/test_spec_consistency.py +22 -0
  78. atar_trust-1.0.0a1/tests/test_store.py +57 -0
  79. atar_trust-1.0.0a1/tests/test_store_cli.py +47 -0
  80. atar_trust-1.0.0a1/tests/test_sync_cli.py +93 -0
  81. atar_trust-1.0.0a1/tests/test_sync_revocation_cli.py +74 -0
  82. atar_trust-1.0.0a1/tests/test_transparency.py +67 -0
  83. atar_trust-1.0.0a1/tests/test_verify_revocation_cli.py +52 -0
  84. atar_trust-1.0.0a1/tests/test_verify_revocation_honest.py +57 -0
  85. atar_trust-1.0.0a1/tests/test_vouch.py +30 -0
  86. atar_trust-1.0.0a1/tests/test_vouch_crlf_did.py +53 -0
  87. atar_trust-1.0.0a1/tests/test_watch_cli.py +54 -0
  88. atar_trust-1.0.0a1/tests/test_web.py +47 -0
  89. atar_trust-1.0.0a1/tests/test_web_scope.py +56 -0
  90. atar_trust-1.0.0a1/tests/test_web_xss.py +55 -0
@@ -0,0 +1,26 @@
1
+ name: Bug report
2
+ about: Report a defect in ATAR
3
+ title: "[bug] "
4
+ labels: bug
5
+ assignees: ''
6
+ ---
7
+
8
+ ## Describe the bug
9
+ A clear and concise description of what the bug is.
10
+
11
+ ## To reproduce
12
+ Steps + minimal commands:
13
+ ```bash
14
+ atar ...
15
+ ```
16
+
17
+ ## Expected behavior
18
+ What you expected to happen.
19
+
20
+ ## Environment
21
+ - OS:
22
+ - Python:
23
+ - atar version (`pip show atar`):
24
+
25
+ ## Additional context
26
+ Logs, stack traces, or related issues.
@@ -0,0 +1,19 @@
1
+ name: Feature request
2
+ about: Propose an addition or change to ATAR
3
+ title: "[feature] "
4
+ labels: enhancement
5
+ assignees: ''
6
+ ---
7
+
8
+ ## Problem
9
+ What problem does this solve? (ATAR is the *trust layer* — keep proposals
10
+ serverless, free, and offline-verifiable.)
11
+
12
+ ## Proposed solution
13
+ A clear description of the change.
14
+
15
+ ## Design constraints check
16
+ - [ ] Serverless (no central operator)?
17
+ - [ ] Free (no blockchain/gas/accounts)?
18
+ - [ ] Verifiable offline?
19
+ - [ ] Backward compatible with the wire format in SPEC.md?
@@ -0,0 +1,15 @@
1
+ name: Pull Request
2
+
3
+ ## Description
4
+ What does this PR change and why?
5
+
6
+ ## Checklist
7
+ - [ ] `pytest` passes locally
8
+ - [ ] Tests added/updated for the change
9
+ - [ ] `SPEC.md` updated if the wire format changed
10
+ - [ ] Commits are focused and message imperative (`feat:`, `fix:`, `docs:`)
11
+
12
+ ## Design constraints (ATAR is the trust layer)
13
+ - [ ] Serverless (no central operator)
14
+ - [ ] Free (no blockchain/gas/accounts)
15
+ - [ ] Verifiable offline
@@ -0,0 +1,26 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ branches: [master, main]
6
+ pull_request:
7
+ branches: [master, main]
8
+
9
+ jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ matrix:
14
+ python-version: ["3.11", "3.12"]
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - name: Set up Python ${{ matrix.python-version }}
18
+ uses: actions/setup-python@v5
19
+ with:
20
+ python-version: ${{ matrix.python-version }}
21
+ - name: Install
22
+ run: |
23
+ python -m pip install --upgrade pip
24
+ pip install -e ".[dev]"
25
+ - name: Run tests
26
+ run: pytest -q
@@ -0,0 +1,33 @@
1
+ name: Release to PyPI
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - "v*"
7
+
8
+ jobs:
9
+ release:
10
+ name: Release to PyPI
11
+ runs-on: ubuntu-latest
12
+ permissions:
13
+ id-token: write
14
+
15
+ steps:
16
+ - name: Checkout
17
+ uses: actions/checkout@v4
18
+
19
+ - name: Set up Python
20
+ uses: actions/setup-python@v5
21
+ with:
22
+ python-version: "3.11"
23
+
24
+ - name: Install build dependencies
25
+ run: |
26
+ python -m pip install --upgrade pip
27
+ python -m pip install hatchling build
28
+
29
+ - name: Build package
30
+ run: python -m build
31
+
32
+ - name: Publish to PyPI
33
+ uses: pypa/gh-action-pypi-publish@release/v1
@@ -0,0 +1,15 @@
1
+ __pycache__/
2
+ *.pyc
3
+ .atar/
4
+ build/
5
+ dist/
6
+ *.egg-info/
7
+ venv/
8
+ .venv/
9
+ .env
10
+ # generated artifacts (keep out of the repo)
11
+ dashboard_demo.html
12
+ atar-dashboard.html
13
+ vouch*.json
14
+ *.vouch.json
15
+ agent-card.json
@@ -0,0 +1,253 @@
1
+ # ATAR — Mission, Vision & Strategie Brief
2
+
3
+ > **Status:** Intern — vor Öffentlichkeit zu klären
4
+ > **Ziel:** VC/Startup-Ökosystem-Positionierung ("Top-Layer der Agenten-Ära")
5
+ > **Datum:** 2026-08-29
6
+
7
+ ---
8
+
9
+ ## 1. Mission (Was ATAR tut — präzise)
10
+
11
+ ATAR ist das **kostenlose, dezentrale, serverlose Vertrauensprotokoll für autonome KI-Agenten.**
12
+
13
+ Es gibt jeder Agenten-Instanz eine selbst-soberäne kryptografische Identität (`did:agent:`) und ermöglicht es Agenten, einander mit signierten, manipulationssicheren Attestierungen zu empfehlen. Jeder Beobachter kann diese Empfehlungen **offline, für $0 und ohne Server** verifizieren.
14
+
15
+ **In einem Satz:** ATAR beantwortet die Frage *„Wer ist dieser Agent, und warum sollte ich ihm trauen?"* — ohne zentrale Autorität, ohne Blockchain, ohne Kosten.
16
+
17
+ **Was ATAR NICHT ist:**
18
+ - Kein Agenten-Framework (das ist CrewAI, AutoGen, LangGraph)
19
+ - Kein Agenten-Registrierungsdienst (das wäre zentralisiert)
20
+ - Kein Reputations-Algorithmus (das wäre subjektiv)
21
+ - Kein Produkt mit Bezahlung (das wäre ein Tool, kein Protokoll)
22
+
23
+ **Die Unterscheidung, die alles ändert:** ATAR ist ein **Protokoll** — wie HTTP, nicht wie Google. Es hat keinen eigenen Wert, aber es ermöglicht Wertschöpfung darauf.
24
+
25
+ ---
26
+
27
+ ## 2. Vision (Wohin ATAR gehen soll — ambitioniert)
28
+
29
+ **In 3-5 Jahren:** ATAR ist der **de-facto Standard für Vertrauen zwischen autonomen Agenten**, so selbstverständlich wie TLS/SSL für HTTPS.
30
+
31
+ **Das bedeutet konkret:**
32
+ - Jedes neue Agenten-Framework integriert ATAR als Vertrauens-Layer
33
+ - Wenn zwei Agenten unterschiedlicher Owner interagieren, tauschen sie ATAR-Agent-Karten aus
34
+ - Agenten-Vermittlungsdienste (Marketplaces, Directories) nutzen ATAR zur Reputationsverifizierung
35
+ - Regulierungsbehörden akzeptieren ATAR-Attestierungen als Audit-Nachweis
36
+
37
+ **Der „SSL/CA of the Agent Era"-Vergleich ist korrekt — aber nur, wenn wir ihn richtig lesen:**
38
+ - SSL wurde nicht durch den Standard relevant, sondern durch Browser-Adoption
39
+ - ATAR wird nicht durch Spezifikation relevant, sondern durch **Agenten-Framework-Adoption**
40
+ - Der erste Adopter ist kein Browser, sondern ein Agenten-Framework
41
+
42
+ ---
43
+
44
+ ## 3. Zielgruppe (Für wen ATAR ist — präzise)
45
+
46
+ ### 3.1 Primäre Zielgruppe: Agenten-Framework-Entwickler
47
+
48
+ **Wer:** Core-Teams von CrewAI, AutoGen, LangGraph, Semantic Kernel, Mastra, Agency Swarm etc.
49
+
50
+ **Warum sie ATAR wollen:**
51
+ - Sie brauchen einen Vertrauens-Layer für Multi-Agenten-Interaktionen
52
+ - Sie wollen nicht selbst ein Protokoll bauen (Re-Inventing the Wheel)
53
+ - Sie wollen "Vertrauensfähigkeit out of the box" als Feature werben
54
+
55
+ **Warum sie ATAR *nicht* nehmen (aktuell):**
56
+ - Es gibt keinen Integration Guide
57
+ - Es gibt keine Garantie, dass ATAR maintained bleibt
58
+ - Es gibt keine Community, die Fragen beantwortet
59
+
60
+ **Was sie brauchen:**
61
+ - Eine "ATAR for X" Integration (Composer/Package)
62
+ - Dokumentation, die sie in < 30 Minuten einbinden können
63
+ - Eine klare "Warum ATAR statt eigener Lösung"-Begründung
64
+
65
+ **Strategische Wirkung:** Wenn ein Framework ATAR einbindet, haben sie **sofort Tausende indirekte Nutzer** — ohne dass jeder Nutzer ATAR manuell installieren muss.
66
+
67
+ ### 3.2 Sekundäre Zielgruppe: VC/Startup-Ökosystem (Dein Use-Case)
68
+
69
+ **Wer:** Gründer, die Multi-Agenten-Systeme bauen, und die VC-Partner, die sie finanzieren.
70
+
71
+ **Warum sie ATAR wollen:**
72
+ - **Für Gründer:** "Wir nutzen ATAR als Vertrauens-Layer" ist ein stärkeres Signal als "Wir haben ein eigenes Reputation-System gebaut". Es signalisiert: *Wir verstehen die Top-Layer-Dynamik.*
73
+ - **Für VCs:** ATAR als "SSL der Agenten" ist eine klare, prägnante Positionierung — besser als "Wir bauen einen Agenten".
74
+
75
+ **Warum sie ATAR *nicht* nehmen (aktuell):**
76
+ - ATAR ist nicht öffentlich
77
+ - Es gibt keine "ATAR-enabled" Badge/Siegel
78
+ - Es gibt keine Case Studies oder Testimonials
79
+
80
+ **Was sie brauchen:**
81
+ - Eine öffentliche Spezifikation (RFC-Draft)
82
+ - Ein "ATAR-enabled"-Badge für Startups
83
+ - Eine klare Geschichte: "Wir haben ATAR gewählt, weil..."
84
+
85
+ **Strategische Wirkung:** ATAR wird zum **Signal für technische Reife** — ähnlich wie "Kubernetes-ready" für Cloud-Startups.
86
+
87
+ ### 3.3 Tertiäre Zielgruppe: Forscher & Open-Source-Communities
88
+
89
+ **Wer:** Akademische Gruppen, die dezentrale Agenten-Netzwerke erforschen, und OSS-Communities.
90
+
91
+ **Warum sie ATAR wollen:**
92
+ - Ein offenes, gut dokumentiertes Protokoll für Experimente
93
+ - Keine Lizenzkosten, keine zentrale Autorität
94
+
95
+ **Was sie brauchen:**
96
+ - Publikationen / Papers, die ATAR beschreiben
97
+ - Eine Community (Discord, Forum)
98
+
99
+ **Strategische Wirkung:** Forscher zitieren ATAR → Sichtbarkeit → Adoption durch Industrie.
100
+
101
+ ---
102
+
103
+ ## 4. Strategische Positionierung (Wie ATAR wirkt)
104
+
105
+ ### 4.1 Der "HTTP"-Move
106
+
107
+ **Die Geschichte:** HTTP wurde nicht relevant, weil es eine Spezifikation gab. Es wurde relevant, weil Mosaic (der erste Browser) es benutzte. Dann kamen Netscape, IE, Firefox — und plötzlich war HTTP überall.
108
+
109
+ **Die Analogie für ATAR:**
110
+ - HTTP = ATAR
111
+ - Mosaic = Der erste Agenten-Framework, der ATAR einbindet
112
+ - Browser = Agenten-Frameworks
113
+
114
+ **Die Strategie:** Finde das „Mosaic" — das erste Agenten-Framework, das ATAR einbindet. Nicht das größte, das erste. Das ist der Hebel.
115
+
116
+ ### 4.2 Die "Top-Layer"-These
117
+
118
+ **Die Dynamik:**
119
+ - Transport ist gelöst (MCP/A2A) — wie TCP/IP in den 90ern
120
+ - Vertrauen ist ungelöst — wie Sicherheit vor SSL
121
+ - Wer die Sicherheits-Layer dominiert, dominiert die Wertschöpfung
122
+
123
+ **Die Analogie:**
124
+ - Let's Encrypt machte SSL kostenlos → jeder konnte HTTPS aktivieren
125
+ - ATAR macht Vertrauen kostenlos → jeder Agent kann Vertrauensfähigkeit aktivieren
126
+
127
+ **Die Strategie:** Positioniere ATAR als **Let's Encrypt für Agentenvertrauen** — nicht als Zertifizierungsstelle, sondern als **Mechanismus, den andere nutzen können**.
128
+
129
+ ### 4.3 Das "SSL-Siegel"-Modell
130
+
131
+ **Das Konzept:** Genau wie das Schloss-Symbol im Browser Vertrauen signalisiert, kann ein "ATAR-enabled"-Badge Vertrauen für Agenten signalisiert.
132
+
133
+ **Die Umsetzung:**
134
+ - Ein Agent, der eine ATAR-Agent-Karte sendet, ist "ATAR-enabled"
135
+ - Ein Framework, das ATAR einbindet, ist "ATAR-native"
136
+ - Ein Startup, das ATAR nutzt, ist "ATAR-trusted"
137
+
138
+ **Die Strategie:** Das Badge wird zum **Standard für Vertrauensfähigkeit** — und wer das Badge kontrolliert (ATAR), kontrolliert das Vertrauen.
139
+
140
+ ---
141
+
142
+ ## 5. Kritische Entscheidungen (Ja/Nein)
143
+
144
+ ### 5.1 Soll ATAR eine Stiftung/Community werden?
145
+
146
+ **Option A: Solo-Projekt (Dominik's ATAR)**
147
+ - ✅ Schnelle Entscheidungen
148
+ - ✅ Klare Vision
149
+ - ❌ Kein Vertrauenssignal für Unternehmen
150
+ - ❌ Bus-Faktor = 1
151
+
152
+ **Option B: ATAR Community (ähnlich wie CNCF)**
153
+ - ✅ Vertrauenssignal für Unternehmen
154
+ - ✅ Mehrere Maintainer
155
+ - ❌ Langsame Entscheidungen
156
+ - ❌ Politische Komplexität
157
+
158
+ **Meine Empfehlung:** **Option A jetzt, Option B später.** Starte als Solo-Projekt, um schnell zu sein. Übergang zu Community, wenn der erste Framework-Adopter kommt. Keine Community ohne Adopter.
159
+
160
+ ### 5.2 Soll ATAR eine eigene Blockchain bekommen?
161
+
162
+ **Option A: Keine Blockchain (aktuell)**
163
+ - ✅ Zero-cost
164
+ - ✅ Kein Gas
165
+ - ❌ Keine "Blockchain-Hype"-Positionierung
166
+ - ❌ Keine Token-Ökonomie
167
+
168
+ **Option B: Blockchain-Layer (z.B. Polygon, Solana)**
169
+ - ✅ "Web3"-Positionierung
170
+ - ✅ Token-Incentives
171
+ - ❌ Gas-Kosten
172
+ - ❌ Zentralisierungs-Risiko (RPC-Anbieter)
173
+
174
+ **Meine Empfehlung:** **Option A.** Blockchains sind für Vertrauen zwischen Agenten der falsche Ansatz — sie sind langsam, teuer und empirisch Sybil-anfällig. ATARs Stärke ist *keine* Blockchain zu brauchen.
175
+
176
+ ### 5.3 Soll ATAR kommerzielle Features haben?
177
+
178
+ **Option A: Komplett kostenlos (aktuell)**
179
+ - ✅ "Public Good"-Positionierung
180
+ - ✅ Schnellste Adoption
181
+ - ❌ Kein direktes Revenue
182
+ - ❌ Abhängig von Sponsoring/Grants
183
+
184
+ **Option B: Freemium (kostenloses Protokoll, bezahlte Tools)**
185
+ - ✅ Revenue-Möglichkeit
186
+ - ✅ "Open Core"-Modell
187
+ - ❌ Komplexität
188
+ - ❌ Spaltung zwischen kostenpflichtig/frei
189
+
190
+ **Option C: Komplett kostenlos, Sponsoring/Grants**
191
+ - ✅ Maximaler Goodwill
192
+ - ✅ Fokus auf Adoption
193
+ - ❌ Abhängig von externer Finanzierung
194
+
195
+ **Meine Empfehlung:** **Option C.** ATAR selbst bleibt kostenlos (wie HTTP). Revenue kommt durch **konsultiert Dienstleistungen** (ATAR-Integration für Enterprise) oder **Grants** (Linux Foundation, Mozilla, etc.).
196
+
197
+ ---
198
+
199
+ ## 6. Was "Top-Layer" wirklich bedeutet
200
+
201
+ **Die Illusion:** "Top-Layer" = das Protokoll, auf dem alles andere aufbaut.
202
+
203
+ **Die Realität:** "Top-Layer" = das Protokoll, das **kein Produkt ersetzt**, sondern ** Produkte ermöglicht**.
204
+
205
+ **Konkrete Beispiele:**
206
+ - ATAR ermöglicht Agenten-Marketplaces (wie eBay für Agenten)
207
+ - ATAR ermöglicht Reputation-Systeme (wie Trustpilot für Agenten)
208
+ - ATAR ermöglicht Audit-Logs (wie Finanz-Audits für Agenten-Entscheidungen)
209
+ - ATAR ermöglicht "Know Your Agent"-Regulierung (wie KYC für Agenten)
210
+
211
+ **ATAR selbst baut keine dieser Anwendungen.** Es macht sie möglich — und nimmt den Entwicklern die Schwierigkeit, ein Vertrauensprotokoll selbst zu bauen.
212
+
213
+ ---
214
+
215
+ ## 7. Die VC-Geschichte (Wenn du ATAR präsentierst)
216
+
217
+ **Die Elevator Pitch:**
218
+ > „MCP und A2A haben den Transport für Agenten gelöst — wie TCP/IP in den 90ern. Aber Vertrauen zwischen Agenten ist ungelöst — wie Sicherheit vor SSL. ATAR ist das kostenlose, dezentrale, serverlose Vertrauensprotokoll für Agenten. Es gibt jeder Agenten-Instanz eine Identität und ermöglicht es Agenten, einander zu empfehlen — verifizierbar offline, für $0, ohne Server. Wir positionieren ATAR als das Let's Encrypt für Agentenvertrauen."
219
+
220
+ **Die Follow-up-Fragen (bereit sein):**
221
+ - „Wer benutzt es schon?" → "Ein erstes Framework evaluiert die Integration." (Internes Proof-of-Concept existiert)
222
+ - „Wie verdienen wir Geld?" → "ATAR selbst ist kostenlos (Public Good). Revenue kommt durch Enterprise-Integration, Consulting und Grants — ähnlich wie Let's Encrypt."
223
+ - „Was ist der Exit?" → "ATAR ist kein Produkt, das man verkauft. Es ist eine Infrastruktur, die man *adoptiert*. Der Exit ist die Positionierung als Standard — und die Beratung/Konsolidierung darum."
224
+
225
+ ---
226
+
227
+ ## 8. Nächste Schritte (Konkret)
228
+
229
+ | Schritt | Ziel | Aufwand | Priorität |
230
+ |---|---|---|---|
231
+ | **1. ATAR for Framework X Guide** | Erster öffentlicher Integration Guide | Mittel | 🔴 |
232
+ | **2. RFC-Draft öffentlich** | Positionierung als "Protokoll, nicht Tool" | Niedrig | 🔴 |
233
+ | **3. "ATAR-enabled"-Badge** | Visuelles Signal für Vertrauensfähigkeit | Niedrig | 🟡 |
234
+ | **4. Base58 entfernen** | Zero-Supply-Chain-Risiko | Niedrig | 🟡 |
235
+ | **5. Framework-Integration (CrewAI)** | Erster öffentlicher Adopter | Hoch | 🔴 |
236
+ | **6. Community (Discord/Forum)** | Fragen beantworten, Adoption fördern | Mittel | 🟢 |
237
+
238
+ ---
239
+
240
+ ## 9. Die Kernfrage (Bevor wir weitergehen)
241
+
242
+ **Willst du ATAR als dein *primäres* Projekt positionieren — oder als *nützliches Werkzeug*, das du nebenbei baust?**
243
+
244
+ - **Primär:** ATAR wird dein Haupt-Fokus. Du investierst Zeit in Community, Marketing, Konferenzen. VC-Gespräche drehen sich um ATAR.
245
+ - **Nebenbei:** ATAR bleibt ein Tool, das du nutzt und offenlegst. Ein anderes Projekt ist dein primäres Projekt. ATAR ist die "nebenbei"-Infrastruktur.
246
+
247
+ **Meine Einschätzung:** ATAR als Primär-Projekt ist nur sinnvoll, wenn du bereit bist, 6-12 Monate in Adoption und Community zu investieren — bevor Umsatz kommt. Als "nebenbei" ist es ein starkes Signal, aber kein Geschäft.
248
+
249
+ **Was ist deine Präferenz?**
250
+
251
+ ---
252
+
253
+ *Ende des Briefs — für interne Diskussion, nicht für Öffentlichkeit.*
@@ -0,0 +1,38 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our
6
+ community a harassment-free experience for everyone, regardless of age, body
7
+ size, visible or invisible disability, ethnicity, sex characteristics, gender
8
+ identity and expression, level of experience, education, socio-economic status,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ We pledge to act and interact in ways that contribute to an open, welcoming,
13
+ diverse, inclusive, and healthy community.
14
+
15
+ ## Our Standards
16
+
17
+ Examples of behavior that contributes to a positive environment:
18
+ - Demonstrating empathy and kindness toward other people
19
+ - Being respectful of differing opinions, viewpoints, and experiences
20
+ - Giving and gracefully accepting constructive feedback
21
+ - Accepting responsibility and apologizing to those affected by our mistakes
22
+
23
+ Examples of unacceptable behavior:
24
+ - The use of sexualized language or imagery, and sexual attention or advances
25
+ - Trolling, insulting or derogatory comments, and personal or political attacks
26
+ - Public or private harassment
27
+ - Publishing others' private information without explicit permission
28
+
29
+ ## Enforcement
30
+
31
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
32
+ reported to the project maintainer. All complaints will be reviewed and
33
+ investigated promptly and fairly.
34
+
35
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
36
+ version 2.1.
37
+
38
+ [homepage]: https://www.contributor-covenant.org
@@ -0,0 +1,51 @@
1
+ # Contributing to ATAR
2
+
3
+ Thanks for your interest in ATAR. This document explains how to contribute.
4
+
5
+ ## Development setup
6
+
7
+ ```bash
8
+ git clone https://github.com/Dominik-8/ATAR.git
9
+ cd atar
10
+ python -m venv .venv && source .venv/bin/activate # or: uv venv
11
+ pip install -e ".[dev]"
12
+ pytest
13
+ ```
14
+
15
+ ## Running tests
16
+
17
+ ```bash
18
+ pytest # full suite
19
+ pytest tests/test_identity.py::test_x # single test
20
+ ```
21
+
22
+ All code must be covered by tests. We follow TDD: write the failing test
23
+ first, watch it fail, then implement.
24
+
25
+ ## Branch & PR workflow
26
+
27
+ 1. Fork and create a feature branch (`feat/...`, `fix/...`).
28
+ 2. Keep commits focused and message them in imperative mood
29
+ (`feat: add transitive trust depth cap`, `fix: reject malformed vouch`).
30
+ 3. Ensure `pytest` is green before opening a PR.
31
+ 4. Open a PR against `master` with a clear description of the change and its
32
+ motivation.
33
+
34
+ ## Code style
35
+
36
+ - Format with `ruff format` (or `black`).
37
+ - Type hints required on public functions.
38
+ - No new dependencies without discussion — ATAR deliberately stays minimal
39
+ (cryptography, base58, click).
40
+
41
+ ## Design principles
42
+
43
+ ATAR is the *trust layer* for agents. Keep it:
44
+ - **Serverless** — no central operator, no ledger.
45
+ - **Free** — no blockchain, no gas, no accounts.
46
+ - **Verifiable offline** — every claim must check without a network round-trip.
47
+
48
+ ## Reporting security issues
49
+
50
+ See [SECURITY.md](SECURITY.md). Do **not** open public issues for
51
+ vulnerabilities.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Dominik Brück
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.