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/index.js
CHANGED
|
@@ -4397,7 +4397,7 @@ async function createMemorixServer(cwd) {
|
|
|
4397
4397
|
"memorix_store",
|
|
4398
4398
|
{
|
|
4399
4399
|
title: "Store Memory",
|
|
4400
|
-
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).",
|
|
4400
|
+
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.",
|
|
4401
4401
|
inputSchema: {
|
|
4402
4402
|
entityName: z.string().describe('The entity this observation belongs to (e.g., "auth-module", "port-config")'),
|
|
4403
4403
|
type: z.enum(OBSERVATION_TYPES).describe("Observation type for classification"),
|
|
@@ -4451,7 +4451,7 @@ Entity: ${entityName} | Type: ${type} | Project: ${project.id}${enrichment}`
|
|
|
4451
4451
|
"memorix_search",
|
|
4452
4452
|
{
|
|
4453
4453
|
title: "Search Memory",
|
|
4454
|
-
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.",
|
|
4454
|
+
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.",
|
|
4455
4455
|
inputSchema: {
|
|
4456
4456
|
query: z.string().describe("Search query (natural language or keywords)"),
|
|
4457
4457
|
limit: z.number().optional().describe("Max results (default: 20)"),
|
|
@@ -4818,7 +4818,7 @@ Entity: ${entityName} | Type: ${type} | Project: ${project.id}${enrichment}`
|
|
|
4818
4818
|
"memorix_workspace_sync",
|
|
4819
4819
|
{
|
|
4820
4820
|
title: "Workspace Sync",
|
|
4821
|
-
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.',
|
|
4821
|
+
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.',
|
|
4822
4822
|
inputSchema: {
|
|
4823
4823
|
action: z.enum(["scan", "migrate", "apply"]).describe('Action: "scan" to detect configs, "migrate" to preview, "apply" to write to disk'),
|
|
4824
4824
|
target: z.enum(AGENT_TARGETS).optional().describe("Target agent for migration (required for migrate)"),
|
|
@@ -4916,7 +4916,7 @@ Entity: ${entityName} | Type: ${type} | Project: ${project.id}${enrichment}`
|
|
|
4916
4916
|
"memorix_skills",
|
|
4917
4917
|
{
|
|
4918
4918
|
title: "Project Skills",
|
|
4919
|
-
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
|
|
4919
|
+
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.`,
|
|
4920
4920
|
inputSchema: {
|
|
4921
4921
|
action: z.enum(["list", "generate", "inject"]).describe('Action: "list" to discover skills, "generate" to create from memory, "inject" to get skill content'),
|
|
4922
4922
|
name: z.string().optional().describe('Skill name (required for "inject")'),
|