memorix 0.7.4 → 0.7.6
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 +19 -0
- package/README.md +200 -326
- package/dist/cli/index.js +4 -4
- package/dist/cli/index.js.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +17 -18
package/dist/cli/index.js
CHANGED
|
@@ -4583,7 +4583,7 @@ async function createMemorixServer(cwd) {
|
|
|
4583
4583
|
"memorix_store",
|
|
4584
4584
|
{
|
|
4585
4585
|
title: "Store Memory",
|
|
4586
|
-
description: "Store a new observation/memory. Automatically indexed for search. Use type to classify: gotcha (\u{1F534} critical pitfall), decision (\u{1F7E4} architecture choice), problem-solution (\u{1F7E1} bug fix), how-it-works (\u{1F535} explanation), what-changed (\u{1F7E2} change), discovery (\u{1F7E3} insight), why-it-exists (\u{1F7E0} rationale), trade-off (\u2696\uFE0F compromise), session-request (\u{1F3AF} original goal).",
|
|
4586
|
+
description: "Store a new observation/memory. Automatically indexed for search. Use type to classify: gotcha (\u{1F534} critical pitfall), decision (\u{1F7E4} architecture choice), problem-solution (\u{1F7E1} bug fix), how-it-works (\u{1F535} explanation), what-changed (\u{1F7E2} change), discovery (\u{1F7E3} insight), why-it-exists (\u{1F7E0} rationale), trade-off (\u2696\uFE0F compromise), session-request (\u{1F3AF} original goal). Stored memories persist across sessions and are shared with other IDEs (Cursor, Windsurf, Claude Code, Codex, Copilot, Kiro, Antigravity) via the same local data directory.",
|
|
4587
4587
|
inputSchema: {
|
|
4588
4588
|
entityName: z.string().describe('The entity this observation belongs to (e.g., "auth-module", "port-config")'),
|
|
4589
4589
|
type: z.enum(OBSERVATION_TYPES).describe("Observation type for classification"),
|
|
@@ -4637,7 +4637,7 @@ Entity: ${entityName} | Type: ${type} | Project: ${project.id}${enrichment}`
|
|
|
4637
4637
|
"memorix_search",
|
|
4638
4638
|
{
|
|
4639
4639
|
title: "Search Memory",
|
|
4640
|
-
description: "Search project memory. Returns a compact index (~50-100 tokens/result). Use memorix_detail to fetch full content for specific IDs. Use memorix_timeline to see chronological context.",
|
|
4640
|
+
description: "Search project memory. Returns a compact index (~50-100 tokens/result). Use memorix_detail to fetch full content for specific IDs. Use memorix_timeline to see chronological context. Searches across all observations stored from any IDE session \u2014 enabling cross-session and cross-agent context retrieval.",
|
|
4641
4641
|
inputSchema: {
|
|
4642
4642
|
query: z.string().describe("Search query (natural language or keywords)"),
|
|
4643
4643
|
limit: z.number().optional().describe("Max results (default: 20)"),
|
|
@@ -5004,7 +5004,7 @@ Entity: ${entityName} | Type: ${type} | Project: ${project.id}${enrichment}`
|
|
|
5004
5004
|
"memorix_workspace_sync",
|
|
5005
5005
|
{
|
|
5006
5006
|
title: "Workspace Sync",
|
|
5007
|
-
description: 'Migrate your entire workspace environment between AI agents. Syncs MCP server configs, workflows, rules, and skills. Action "scan": detect all workspace configs. Action "migrate": generate configs for target agent (preview only). Action "apply": migrate AND write configs to disk with backup/rollback.',
|
|
5007
|
+
description: 'Migrate your entire workspace environment between AI coding agents (Cursor, Windsurf, Claude Code, Codex, Copilot, Kiro, Antigravity). Syncs MCP server configs, workflows, rules, and skills across IDEs. Action "scan": detect all workspace configs. Action "migrate": generate configs for target agent (preview only). Action "apply": migrate AND write configs to disk with backup/rollback.',
|
|
5008
5008
|
inputSchema: {
|
|
5009
5009
|
action: z.enum(["scan", "migrate", "apply"]).describe('Action: "scan" to detect configs, "migrate" to preview, "apply" to write to disk'),
|
|
5010
5010
|
target: z.enum(AGENT_TARGETS).optional().describe("Target agent for migration (required for migrate)"),
|
|
@@ -5102,7 +5102,7 @@ Entity: ${entityName} | Type: ${type} | Project: ${project.id}${enrichment}`
|
|
|
5102
5102
|
"memorix_skills",
|
|
5103
5103
|
{
|
|
5104
5104
|
title: "Project Skills",
|
|
5105
|
-
description: `Memory-driven project skills. Action "list": show all available skills from all agents. Action "generate": auto-generate project-specific skills from observation patterns (gotchas, decisions, how-it-works). Action "inject": return a specific skill's full content for direct use. Generated skills follow the SKILL.md standard and can be synced across
|
|
5105
|
+
description: `Memory-driven project skills. Action "list": show all available skills from all agents. Action "generate": auto-generate project-specific skills from observation patterns (gotchas, decisions, how-it-works). Action "inject": return a specific skill's full content for direct use. Generated skills follow the SKILL.md standard and can be synced across Cursor, Windsurf, Claude Code, Codex, Copilot, Kiro, and Antigravity.`,
|
|
5106
5106
|
inputSchema: {
|
|
5107
5107
|
action: z.enum(["list", "generate", "inject"]).describe('Action: "list" to discover skills, "generate" to create from memory, "inject" to get skill content'),
|
|
5108
5108
|
name: z.string().optional().describe('Skill name (required for "inject")'),
|