Skip to content
This repository was archived by the owner on Feb 25, 2026. It is now read-only.

Commit 1d64abe

Browse files
committed
doc(fix): add missing bullets
1 parent 0343889 commit 1d64abe

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ The protocol addresses the inherent limitations of centralized package registrie
1414

1515
- **Decentralized Distribution:** Instead of a central server like npm or PyPI, Atom uses Git repositories as the source of truth. It leverages the distributed nature of Git to ensure that package availability is not tied to a single entity, eliminating a critical vulnerability in the software supply chain.
1616

17-
**Source as Truth:** Instead of copying source code into a registry, atoms are lightweight references to the same Git objects that comprise the original source code. This creates an unbreakable link between published packages and their origins, ensuring that the packaged code is always identical to the source.
17+
- **Source as Truth:** Instead of copying source code into a registry, atoms are lightweight references to the same Git objects that comprise the original source code. This creates an unbreakable link between published packages and their origins, ensuring that the packaged code is always identical to the source.
1818

19-
**No Single Points of Failure:** Dependencies can be resolved from multiple mirrors or the original repository, ensuring availability even if one source becomes unavailable. This distributed approach means that a single registry outage or compromise cannot halt development.
19+
- **No Single Points of Failure:** Dependencies can be resolved from multiple mirrors or the original repository, ensuring availability even if one source becomes unavailable. This distributed approach means that a single registry outage or compromise cannot halt development.
2020

21-
**Community-Driven Resilience:** Anyone can mirror an atom repository, creating a distributed network that cannot be taken down by any single entity. This community-driven approach ensures long-term availability and prevents vendor lock-in.
21+
- **Community-Driven Resilience:** Anyone can mirror an atom repository, creating a distributed network that cannot be taken down by any single entity. This community-driven approach ensures long-term availability and prevents vendor lock-in.
2222

23-
**Practical Implications:** In a world where incidents like the `left-pad` npm package breaking the internet or the `xz-utils` backdoor demonstrate the fragility of centralized systems, Eka's decentralized approach ensures that critical dependencies remain available and verifiable, even during network outages or registry compromises.
23+
- **Practical Implications:** In a world where incidents like the `left-pad` npm package breaking the internet or the `xz-utils` backdoor demonstrate the fragility of centralized systems, Eka's decentralized approach ensures that critical dependencies remain available and verifiable, even during network outages or registry compromises.
2424

2525
- **Designed for Efficiency:** By creating unambiguous, content-addressed cryptographic IDs for every package, Atom enables a future for highly efficient, decentralized build pipelines. This foundation allows for a system that is not only more secure and resilient but is also designed for high-performance, distributed build systems.
2626

@@ -136,22 +136,22 @@ The `atom.lock` file captures the exact resolved state of all dependencies, crea
136136
version = 1
137137

138138
[sets]
139-
"<blake3-hash-of-company-root>" = ["git@github.com:our-company/atoms"]
140-
"<blake3-hash-of-public-root>" = ["https://atoms.example.com", "https://mirror.atoms.example.com"]
139+
"<hash-of-company-root>" = ["git@github.com:our-company/atoms"]
140+
"<hash-of-public-root>" = ["https://atoms.example.com", "https://mirror.atoms.example.com"]
141141

142142
[[deps]]
143143
type = "atom"
144144
label = "auth-lib"
145145
version = "2.1.3"
146-
set = "<blake3-hash-of-company-root>"
146+
set = "<hash-of-company-root>"
147147
rev = "<exact-git-commit>"
148148
id = "<cryptographic-atom-id>"
149149

150150
[[deps]]
151151
type = "atom"
152152
label = "serde"
153153
version = "1.0.42"
154-
set = "<blake3-hash-of-public-root>"
154+
set = "<hash-of-public-root>"
155155
rev = "<exact-git-commit>"
156156
id = "<cryptographic-atom-id>"
157157
```

0 commit comments

Comments
 (0)