kiro-memory 1.0.0 → 1.0.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 +5 -5
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
**Persistent cross-session memory for [Kiro CLI](https://kiro.dev/).**
|
|
4
4
|
|
|
5
|
-

|
|
6
|
+

|
|
7
7
|

|
|
8
8
|

|
|
9
9
|
|
|
@@ -48,7 +48,7 @@ When a new session starts, ContextKit automatically injects previous session con
|
|
|
48
48
|
|
|
49
49
|
```bash
|
|
50
50
|
# Install globally
|
|
51
|
-
npm install -g
|
|
51
|
+
npm install -g kiro-memory
|
|
52
52
|
|
|
53
53
|
# Install into Kiro CLI (hooks + MCP server + agent config)
|
|
54
54
|
contextkit install
|
|
@@ -57,7 +57,7 @@ contextkit install
|
|
|
57
57
|
Or from source:
|
|
58
58
|
|
|
59
59
|
```bash
|
|
60
|
-
git clone https://github.com/auriti-web-design/
|
|
60
|
+
git clone https://github.com/auriti-web-design/kiro-memory.git
|
|
61
61
|
cd contextkit
|
|
62
62
|
npm install && npm run build
|
|
63
63
|
npm run install:kiro
|
|
@@ -147,7 +147,7 @@ The hooks are fully automatic. No changes to your workflow required.
|
|
|
147
147
|
The TypeScript SDK provides full programmatic access to the memory system.
|
|
148
148
|
|
|
149
149
|
```typescript
|
|
150
|
-
import { createContextKit } from '
|
|
150
|
+
import { createContextKit } from 'kiro-memory';
|
|
151
151
|
|
|
152
152
|
const ctx = createContextKit({ project: 'my-project' });
|
|
153
153
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kiro-memory",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Persistent cross-session memory for Kiro CLI. Automatically tracks context, observations, and summaries across coding sessions.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"kiro",
|
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
"license": "AGPL-3.0",
|
|
20
20
|
"repository": {
|
|
21
21
|
"type": "git",
|
|
22
|
-
"url": "https://github.com/auriti-web-design/
|
|
22
|
+
"url": "https://github.com/auriti-web-design/kiro-memory.git"
|
|
23
23
|
},
|
|
24
|
-
"homepage": "https://github.com/auriti-web-design/
|
|
24
|
+
"homepage": "https://github.com/auriti-web-design/kiro-memory#readme",
|
|
25
25
|
"bugs": {
|
|
26
|
-
"url": "https://github.com/auriti-web-design/
|
|
26
|
+
"url": "https://github.com/auriti-web-design/kiro-memory/issues"
|
|
27
27
|
},
|
|
28
28
|
"type": "module",
|
|
29
29
|
"exports": {
|