@celiums/modules-starter 0.1.0 → 0.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 +52 -0
- package/package.json +10 -4
package/README.md
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
|
|
3
|
+
# Celiums
|
|
4
|
+
|
|
5
|
+
### Your AI doesn't know what it doesn't know. And it forgets everything.
|
|
6
|
+
|
|
7
|
+
**The open-source engine that gives AI persistent memory and instant access to 5,100+ expert knowledge modules — with a biological clock that adapts to each user.**
|
|
8
|
+
|
|
9
|
+
[](https://www.npmjs.com/package/@celiums/memory)
|
|
10
|
+
[](https://www.npmjs.com/package/@celiums/memory)
|
|
11
|
+
[](https://github.com/terrizoaguimor/celiums-memory/blob/main/LICENSE)
|
|
12
|
+
|
|
13
|
+
</div>
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## Quick Start
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
npm install -g @celiums/cli
|
|
21
|
+
celiums init
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
That's it. `celiums init` will:
|
|
25
|
+
- Ask your name, timezone, and chronotype (morning/night)
|
|
26
|
+
- Load 5,100 expert knowledge modules
|
|
27
|
+
- Auto-configure Claude Code, Cursor, and VS Code
|
|
28
|
+
- Create your personal cognitive profile
|
|
29
|
+
|
|
30
|
+
## 6 MCP Tools
|
|
31
|
+
|
|
32
|
+
| Tool | What it does |
|
|
33
|
+
|---|---|
|
|
34
|
+
| `forage` | Search 5,100+ expert modules |
|
|
35
|
+
| `absorb` | Load a specific module |
|
|
36
|
+
| `sense` | Get recommendations for a goal |
|
|
37
|
+
| `map_network` | Browse all categories |
|
|
38
|
+
| `remember` | Store persistent emotional memory |
|
|
39
|
+
| `recall` | Retrieve by semantic relevance |
|
|
40
|
+
|
|
41
|
+
## This Package
|
|
42
|
+
|
|
43
|
+
This package is part of the **Celiums** monorepo. You don't need to install it directly — `@celiums/cli` handles everything.
|
|
44
|
+
|
|
45
|
+
For full documentation, architecture, REST API reference, Docker deployment, and more:
|
|
46
|
+
|
|
47
|
+
**[github.com/terrizoaguimor/celiums-memory](https://github.com/terrizoaguimor/celiums-memory)**
|
|
48
|
+
|
|
49
|
+
## License
|
|
50
|
+
|
|
51
|
+
- **Code:** [Apache 2.0](https://github.com/terrizoaguimor/celiums-memory/blob/main/LICENSE)
|
|
52
|
+
- **Starter Modules:** [CC-BY-NC-4.0](https://github.com/terrizoaguimor/celiums-memory/blob/main/packages/modules-starter/LICENSE)
|
package/package.json
CHANGED
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@celiums/modules-starter",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "5,100 curated expert knowledge modules for the Celiums OpenCore. Covers 18 developer categories: software engineering, frontend, backend, DevOps, databases, security, AI/ML, and more.",
|
|
5
5
|
"keywords": [
|
|
6
|
-
"celiums",
|
|
7
|
-
"
|
|
6
|
+
"celiums",
|
|
7
|
+
"knowledge",
|
|
8
|
+
"modules",
|
|
9
|
+
"ai",
|
|
10
|
+
"mcp",
|
|
11
|
+
"developer-tools",
|
|
12
|
+
"curated",
|
|
13
|
+
"expert-knowledge"
|
|
8
14
|
],
|
|
9
15
|
"homepage": "https://celiums.ai",
|
|
10
16
|
"repository": {
|
|
@@ -37,4 +43,4 @@
|
|
|
37
43
|
"optionalDependencies": {
|
|
38
44
|
"better-sqlite3": "^11.5.0"
|
|
39
45
|
}
|
|
40
|
-
}
|
|
46
|
+
}
|