genosdb 0.36.1 → 0.36.3

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 (2) hide show
  1. package/README.md +10 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -127,6 +127,7 @@ GenosDB is closed source by design; what it does cryptographically is not. [CRYP
127
127
 
128
128
  - **Guarantees and their status** — [SECURITY.md](https://github.com/estebanrfp/gdb/blob/main/SECURITY.md) lists every guarantee, each pinned by a conformance test run in real browsers over real WebRTC, and how to report a vulnerability.
129
129
  - **Independent review** — security researchers, auditors and organizations evaluating GenosDB are invited to review the specification against the bundle. Published audit reports are listed in [docs/audits](https://github.com/estebanrfp/gdb/blob/main/docs/audits/index.md), with date, reviewer and scope. To coordinate a review, see [Business Inquiries & Collaboration](#business-inquiries--collaboration).
130
+ - **Audit toolkit** — [genosdb-audit](https://github.com/estebanrfp/genosdb-audit) is open source (MIT): passive provenance checks against the official CDN release and review of Zero Trust evidence. Pull requests are welcome from anyone.
130
131
 
131
132
  ---
132
133
 
@@ -161,6 +162,12 @@ For interactive, AI-assisted GenosDB documentation:
161
162
 
162
163
  [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/estebanrfp/gdb)
163
164
 
165
+ Building with an AI coding agent? Install the official GenosDB skill — the frozen API, the patterns, the security model and the testing rules, maintained in the same commit as the engine:
166
+
167
+ ```bash
168
+ npx skills add https://github.com/estebanrfp/genosdb-skill --skill genosdb --global
169
+ ```
170
+
164
171
  ## Examples
165
172
 
166
173
  We’ve created a collection of interactive examples to help you understand how GDB works in real-world scenarios. These examples cover everything from basic setup to advanced features like RBAC and P2P synchronization.
@@ -229,9 +236,10 @@ We value community contributions and welcome your help in improving GenosDB! Cur
229
236
 
230
237
  - 📝 Improving our documentation.
231
238
  - 💡 Submitting usage examples and tutorials.
239
+ - 🔍 Extending the open-source audit toolkit, [genosdb-audit](https://github.com/estebanrfp/genosdb-audit).
232
240
  - 🐞 Reporting bugs or suggesting new features.
233
241
 
234
- Please read our [Contribution Guidelines](https://github.com/estebanrfp/gdb/blob/main/CONTRIBUTING.md) for more details. We do not accept pull requests for the core source code at this time.
242
+ Please read our [Contribution Guidelines](https://github.com/estebanrfp/gdb/blob/main/CONTRIBUTING.md) for more details.
235
243
 
236
244
  ## Community
237
245
 
@@ -271,7 +279,7 @@ This project includes third-party dependencies with their own respective license
271
279
 
272
280
  ## Maintenance
273
281
 
274
- This repository provides production builds of GenosDB (GDB), a decentralized P2P graph database designed for modern web applications. These builds are freely available for anyone to use and integrate into their projects. Please note that the source code is not publicly available at this time; only the production builds are provided. The project is actively maintained by Esteban Fuster Pozzi ([@estebanrfp](https://github.com/estebanrfp)), with development and verification support from AI systems audited under the Spec Driven Development (SDD) methodology. Future maintenance may also involve qualified developers aligned with our vision.
282
+ This repository provides production builds of GenosDB (GDB), a decentralized P2P graph database designed for modern web applications. These builds are freely available for anyone to use and integrate into their projects. Please note that the source code is proprietary by design; the production builds are provided. The project is actively maintained by Esteban Fuster Pozzi ([@estebanrfp](https://github.com/estebanrfp)), with development and verification support from AI systems audited under the Spec Driven Development (SDD) methodology. Future maintenance may also involve qualified developers aligned with our vision. For more information on development continuity, see [CONTINUITY.md](https://github.com/estebanrfp/gdb/blob/main/CONTINUITY.md).
275
283
 
276
284
  ## Author
277
285
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "genosdb",
3
- "version": "0.36.1",
3
+ "version": "0.36.3",
4
4
  "description": "GenosDB (GDB): distributed graph database in real-time, peer-to-peer, scalable storage - efficient querying of complex relationships.",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",