gnosys 4.1.0 → 4.1.1
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.
- package/README.md +11 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -56,13 +56,22 @@ Gnosys takes a different approach: the central brain is a single SQLite database
|
|
|
56
56
|
## Quick Start
|
|
57
57
|
|
|
58
58
|
```bash
|
|
59
|
-
# Install
|
|
59
|
+
# Install globally
|
|
60
60
|
npm install -g gnosys
|
|
61
61
|
|
|
62
|
+
# Set up global agent rules (all Claude Code projects get Gnosys instructions)
|
|
63
|
+
gnosys sync --global
|
|
64
|
+
|
|
62
65
|
# Initialize a project
|
|
63
66
|
cd your-project
|
|
64
67
|
gnosys init
|
|
65
68
|
|
|
69
|
+
# Generate agent rules for your IDE
|
|
70
|
+
gnosys sync --target claude # → writes CLAUDE.md
|
|
71
|
+
gnosys sync --target cursor # → writes .cursor/rules/gnosys.mdc
|
|
72
|
+
gnosys sync --target codex # → writes .codex/gnosys.md
|
|
73
|
+
gnosys sync --target all # → writes all detected IDEs
|
|
74
|
+
|
|
66
75
|
# Start the sandbox (background process — runs once, stays alive)
|
|
67
76
|
gnosys sandbox start
|
|
68
77
|
|
|
@@ -72,15 +81,12 @@ gnosys add "We chose PostgreSQL over MySQL for its JSON support and mature ecosy
|
|
|
72
81
|
# Search memories
|
|
73
82
|
gnosys recall "database selection"
|
|
74
83
|
gnosys search "PostgreSQL"
|
|
75
|
-
|
|
76
|
-
# Generate a helper library for agent integration
|
|
77
|
-
gnosys helper generate
|
|
78
84
|
```
|
|
79
85
|
|
|
80
86
|
### Agent / Helper Library
|
|
81
87
|
|
|
82
88
|
```ts
|
|
83
|
-
import { gnosys } from "./gnosys-helper"; // generated once
|
|
89
|
+
import { gnosys } from "./gnosys-helper"; // generated once via: gnosys helper generate
|
|
84
90
|
|
|
85
91
|
await gnosys.add("We use conventional commits");
|
|
86
92
|
const ctx = await gnosys.recall("auth decisions");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gnosys",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.1",
|
|
4
4
|
"description": "Gnosys — Persistent Memory for AI Agents. Sandbox-first runtime, central SQLite brain, federated search, Dream Mode, Web Knowledge Base, Obsidian export.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|