memorix 0.7.1 → 0.7.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/CHANGELOG.md +7 -0
- package/README.md +13 -1
- package/dist/cli/index.js +3 -3
- package/dist/cli/index.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [0.7.2] — 2026-02-22
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- **`memorix_workspace_sync` rejects `kiro` as target** — Added `kiro` to `AGENT_TARGETS` enum (adapter was already implemented but missing from the tool's input schema)
|
|
9
|
+
- **`memorix_rules_sync` missing `kiro` target** — Added `kiro` to `RULE_SOURCES` enum so Kiro steering rules can be generated as a sync target
|
|
10
|
+
- **VS Code Copilot README config** — Separated `.vscode/mcp.json` (workspace) and `settings.json` (global) formats which have different JSON structures
|
|
11
|
+
|
|
5
12
|
## [0.7.1] — 2026-02-22
|
|
6
13
|
|
|
7
14
|
### Fixed
|
package/README.md
CHANGED
|
@@ -197,7 +197,19 @@ args = ["-y", "memorix@latest", "serve"]
|
|
|
197
197
|
|
|
198
198
|
### VS Code Copilot
|
|
199
199
|
|
|
200
|
-
`.vscode/mcp.json`
|
|
200
|
+
**Option A** — `.vscode/mcp.json` (workspace-scoped):
|
|
201
|
+
```json
|
|
202
|
+
{
|
|
203
|
+
"servers": {
|
|
204
|
+
"memorix": {
|
|
205
|
+
"command": "npx",
|
|
206
|
+
"args": ["-y", "memorix@latest", "serve"]
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
```
|
|
211
|
+
|
|
212
|
+
**Option B** — VS Code `settings.json` (global):
|
|
201
213
|
```json
|
|
202
214
|
{
|
|
203
215
|
"mcp": {
|
package/dist/cli/index.js
CHANGED
|
@@ -4925,12 +4925,12 @@ Entity: ${entityName} | Type: ${type} | Project: ${project.id}${enrichment}`
|
|
|
4925
4925
|
};
|
|
4926
4926
|
}
|
|
4927
4927
|
);
|
|
4928
|
-
const RULE_SOURCES = ["cursor", "claude-code", "codex", "windsurf", "antigravity", "copilot"];
|
|
4928
|
+
const RULE_SOURCES = ["cursor", "claude-code", "codex", "windsurf", "antigravity", "copilot", "kiro"];
|
|
4929
4929
|
server.registerTool(
|
|
4930
4930
|
"memorix_rules_sync",
|
|
4931
4931
|
{
|
|
4932
4932
|
title: "Rules Sync",
|
|
4933
|
-
description: "Scan project for agent rule files (Cursor, Claude Code, Codex, Windsurf, Antigravity, Copilot), deduplicate, detect conflicts, and optionally generate rules for a target agent format. Without target: returns sync status report. With target: generates converted rule files.",
|
|
4933
|
+
description: "Scan project for agent rule files (Cursor, Claude Code, Codex, Windsurf, Antigravity, Copilot, Kiro), deduplicate, detect conflicts, and optionally generate rules for a target agent format. Without target: returns sync status report. With target: generates converted rule files.",
|
|
4934
4934
|
inputSchema: {
|
|
4935
4935
|
action: z.enum(["status", "generate"]).describe('Action: "status" for report, "generate" to produce target files'),
|
|
4936
4936
|
target: z.enum(RULE_SOURCES).optional().describe("Target agent format for generation (required when action=generate)")
|
|
@@ -4980,7 +4980,7 @@ Entity: ${entityName} | Type: ${type} | Project: ${project.id}${enrichment}`
|
|
|
4980
4980
|
};
|
|
4981
4981
|
}
|
|
4982
4982
|
);
|
|
4983
|
-
const AGENT_TARGETS = ["windsurf", "cursor", "claude-code", "codex", "copilot", "antigravity"];
|
|
4983
|
+
const AGENT_TARGETS = ["windsurf", "cursor", "claude-code", "codex", "copilot", "antigravity", "kiro"];
|
|
4984
4984
|
server.registerTool(
|
|
4985
4985
|
"memorix_workspace_sync",
|
|
4986
4986
|
{
|