get-claudia 1.3.1 → 1.3.2
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 +15 -11
- package/package.json +1 -1
- package/template-v2/.mcp.json.example +1 -3
package/README.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
<img src="assets/claudia-banner.gif" alt="Claudia" width="500">
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
|
+
<p align="center">
|
|
6
|
+
<a href="https://github.com/kbanc85/claudia/stargazers"><img src="https://img.shields.io/github/stars/kbanc85/claudia?style=flat-square" alt="GitHub stars"></a>
|
|
7
|
+
<a href="https://www.npmjs.com/package/get-claudia"><img src="https://img.shields.io/npm/v/get-claudia?style=flat-square" alt="npm version"></a>
|
|
8
|
+
<a href="https://github.com/kbanc85/claudia/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square" alt="License"></a>
|
|
9
|
+
<a href="https://nodejs.org"><img src="https://img.shields.io/badge/node-%3E%3D14-brightgreen?style=flat-square" alt="Node.js"></a>
|
|
10
|
+
<a href="https://python.org"><img src="https://img.shields.io/badge/python-%3E%3D3.10-blue?style=flat-square" alt="Python"></a>
|
|
11
|
+
</p>
|
|
12
|
+
|
|
5
13
|
<h3 align="center">An AI assistant who learns how you work.</h3>
|
|
6
14
|
|
|
7
15
|
<p align="center">
|
|
@@ -43,16 +51,16 @@ Say hi. She'll introduce herself and set things up for you.
|
|
|
43
51
|
|
|
44
52
|
---
|
|
45
53
|
|
|
46
|
-
## What's New in v1.
|
|
54
|
+
## What's New in v1.3.1
|
|
47
55
|
|
|
48
|
-
**
|
|
56
|
+
**Per-project memory isolation** - Each Claudia installation now gets its own memories:
|
|
49
57
|
|
|
50
|
-
- **
|
|
51
|
-
- **
|
|
52
|
-
- **
|
|
53
|
-
- **
|
|
58
|
+
- **Automatic isolation** - Work project memories don't mix with personal projects
|
|
59
|
+
- **Zero config required** - Uses `${workspaceFolder}` to auto-isolate per project
|
|
60
|
+
- **Business Operating System** (v1.3.0) - Deep folder structures with pipeline tracking, financial management, accountability
|
|
61
|
+
- **5 new commands** - `/pipeline-review`, `/financial-snapshot`, `/client-health`, `/accountability-check`
|
|
54
62
|
|
|
55
|
-
|
|
63
|
+
Memories stay where they belong. Each project is its own context.
|
|
56
64
|
|
|
57
65
|
---
|
|
58
66
|
|
|
@@ -91,10 +99,6 @@ Restart Claude Code in a new terminal, and Claudia now has persistent memory.
|
|
|
91
99
|
|
|
92
100
|
## Your First Conversation
|
|
93
101
|
|
|
94
|
-
<p align="center">
|
|
95
|
-
<img src="assets/demo.gif" alt="Claudia onboarding conversation" width="700">
|
|
96
|
-
</p>
|
|
97
|
-
|
|
98
102
|
When you first run `claude`, she introduces herself and learns about you:
|
|
99
103
|
|
|
100
104
|
```
|
package/package.json
CHANGED
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"mcpServers": {
|
|
3
3
|
|
|
4
|
-
"_comment": "Claudia prefers CLI tools when available (faster, simpler), then MCP servers.",
|
|
5
|
-
"_comment2": "Find more servers at mcp.so or github.com/modelcontextprotocol/servers",
|
|
6
|
-
|
|
7
4
|
"claudia-memory": {
|
|
8
5
|
"_disabled": true,
|
|
9
6
|
"command": "~/.claudia/daemon/venv/bin/python",
|
|
@@ -45,6 +42,7 @@
|
|
|
45
42
|
},
|
|
46
43
|
|
|
47
44
|
"_notes": {
|
|
45
|
+
"about": "Claudia prefers CLI tools when available (faster, simpler), then MCP servers. Find more at mcp.so or github.com/modelcontextprotocol/servers",
|
|
48
46
|
"setup": [
|
|
49
47
|
"1. Rename this file to .mcp.json",
|
|
50
48
|
"2. Remove _disabled from servers you want to use",
|