{
  "schemaVersion": "1.0",
  "item": {
    "slug": "fsxmemory",
    "name": "ForesigxtMemory",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/azrijamil/fsxmemory",
    "canonicalUrl": "https://clawhub.ai/azrijamil/fsxmemory",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/fsxmemory",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fsxmemory",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "INSTALL.md",
      "SKILL.md",
      "templates/daily.md",
      "templates/decision.md",
      "templates/episode.md",
      "templates/handoff.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/fsxmemory"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/fsxmemory",
    "agentPageUrl": "https://openagent3.xyz/skills/fsxmemory/agent",
    "manifestUrl": "https://openagent3.xyz/skills/fsxmemory/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/fsxmemory/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Foresigxt Memory",
        "body": "Structured memory system for AI agents."
      },
      {
        "title": "Install",
        "body": "npm install -g @foresigxt/foresigxt-cli-memory"
      },
      {
        "title": "Option 1: Initialize New Vault",
        "body": "# Initialize vault (creates folder structure + templates)\nfsxmemory init ~/memory"
      },
      {
        "title": "Option 2: Use Existing Vault",
        "body": "For isolated workspace memory (each workspace has its own vault):\n\n# Create .env in workspace root\necho 'FSXMEMORY_PATH=/path/to/workspace/memory' > .env\n\n# All agents in THIS workspace use this isolated vault\nfsxmemory stats  # Works automatically!\n\nFor shared memory across all workspaces:\n\n# Set global environment variable (in ~/.bashrc or ~/.zshrc)\nexport FSXMEMORY_PATH=/path/to/shared/memory\n\n# All agents in ALL workspaces share the same vault\n\nOr: Use --vault flag for one-time override:\n\nfsxmemory stats --vault /path/to/other/vault"
      },
      {
        "title": "Store memories by type",
        "body": "# Types: fact, feeling, decision, lesson, commitment, preference, relationship, project, procedural, semantic, episodic\nfsxmemory remember decision \"Use Postgres over SQLite\" --content \"Need concurrent writes for multi-agent setup\"\nfsxmemory remember lesson \"Context death is survivable\" --content \"Checkpoint before heavy work\"\nfsxmemory remember relationship \"Justin Dukes\" --content \"Client contact at Hale Pet Door\"\nfsxmemory remember procedural \"Deploy to Production\" --content \"1. Run tests 2. Build 3. Deploy\"\nfsxmemory remember semantic \"Event Loop Concept\" --content \"JavaScript's concurrency model...\"\nfsxmemory remember episodic \"First Production Deploy\" --content \"Deployed v2.0 today, team was nervous but it went well\""
      },
      {
        "title": "Quick capture to inbox",
        "body": "fsxmemory capture \"TODO: Review PR tomorrow\""
      },
      {
        "title": "Search (requires qmd installed)",
        "body": "# Keyword search (fast)\nfsxmemory search \"client contacts\"\n\n# Semantic search (slower, more accurate)\nfsxmemory vsearch \"what did we decide about the database\""
      },
      {
        "title": "Checkpoint (save state frequently)",
        "body": "fsxmemory checkpoint --working-on \"PR review\" --focus \"type guards\" --blocked \"waiting for CI\""
      },
      {
        "title": "Recover (check on wake)",
        "body": "fsxmemory recover --clear\n# Shows: death time, last checkpoint, recent handoff"
      },
      {
        "title": "Handoff (before session end)",
        "body": "fsxmemory handoff \\\n  --working-on \"Foresigxt Memory improvements\" \\\n  --blocked \"npm token\" \\\n  --next \"publish to npm, create skill\" \\\n  --feeling \"productive\""
      },
      {
        "title": "Recap (bootstrap new session)",
        "body": "fsxmemory recap\n# Shows: recent handoffs, active projects, pending commitments, lessons"
      },
      {
        "title": "Migration from Other Formats",
        "body": "Migrate existing vaults from OpenClaw, Obsidian, or other markdown-based systems:"
      },
      {
        "title": "Analyze First (Dry Run)",
        "body": "# See what would be changed without modifying files\nfsxmemory migrate --from openclaw --vault /path/to/vault --dry-run"
      },
      {
        "title": "Migrate with Backup",
        "body": "# Recommended: Creates automatic backup before migration\nfsxmemory migrate --from openclaw --vault /path/to/vault --backup\n\n# The migration:\n# ✅ Adds YAML frontmatter to all markdown files\n# ✅ Renames directories (procedural→procedures, semantic→knowledge, episodic→episodes)\n# ✅ Creates .fsxmemory.json config file\n# ✅ Preserves all content and custom categories\n# ✅ Creates timestamped backup for rollback"
      },
      {
        "title": "Rollback if Needed",
        "body": "# Restore from backup if something went wrong\nfsxmemory migrate --rollback --vault /path/to/vault"
      },
      {
        "title": "Migration Options",
        "body": "# Available source formats\n--from openclaw      # OpenClaw vault format\n--from obsidian      # Obsidian vault format\n--from generic       # Generic markdown vault\n\n# Migration flags\n--dry-run           # Preview changes without modifying files\n--backup            # Create backup before migration (recommended)\n--force             # Skip confirmation prompts\n--verbose           # Show detailed progress\n--rollback          # Restore from last backup"
      },
      {
        "title": "Example: Migrate OpenClaw Vault",
        "body": "# 1. Analyze first\nfsxmemory migrate --from openclaw --vault ~/.openclaw/workspace/memory --dry-run\n\n# 2. Run migration with backup\nfsxmemory migrate --from openclaw --vault ~/.openclaw/workspace/memory --backup --verbose\n\n# 3. Verify migration worked\nfsxmemory stats --vault ~/.openclaw/workspace/memory\nfsxmemory doctor --vault ~/.openclaw/workspace/memory\n\nMigration Speed: ~53 files in 0.07 seconds ⚡"
      },
      {
        "title": "Auto-linking",
        "body": "Wiki-link entity mentions in markdown files:\n\n# Link all files\nfsxmemory link --all\n\n# Link single file\nfsxmemory link memory/2024-01-15.md"
      },
      {
        "title": "Templates Reference",
        "body": "Foresigxt Memory includes structured templates for consistent documentation. Location: templates/ directory."
      },
      {
        "title": "Available Templates",
        "body": "TemplateTypeUse ForSectionsdecision.mddecisionKey choices, architecture decisionsContext, Options, Decision, Outcomeprocedure.mdproceduralHow-to guides, workflows, SOPsPurpose, Prerequisites, Steps, Pitfalls, Verificationknowledge.mdsemanticConcepts, definitions, mental modelsDefinition, Key Concepts, Examples, Why It Mattersepisode.mdepisodicEvents, experiences, meetingsWhat Happened, Context, Key Moments, Reflectionperson.mdpersonContacts, relationshipsContact, Role, Working With, Interactionsproject.mdprojectActive work, initiativesGoal, Status, Next Actions, Blockerslesson.mdlessonInsights, patterns learnedSituation, Lesson, Applicationhandoff.mdhandoffSession continuityWorking On, Context, Next Steps, Blockersdaily.mddailyDaily notes, journalFocus, Done, Notes"
      },
      {
        "title": "Template Usage",
        "body": "Templates are automatically selected by memory type:\n\nfsxmemory remember decision \"Title\" --content \"...\"    # → templates/decision.md\nfsxmemory remember procedural \"Title\" --content \"...\"  # → templates/procedure.md\nfsxmemory remember semantic \"Title\" --content \"...\"    # → templates/knowledge.md\nfsxmemory remember episodic \"Title\" --content \"...\"    # → templates/episode.md\nfsxmemory remember relationship \"Name\" --content \"...\" # → templates/person.md\nfsxmemory remember lesson \"Title\" --content \"...\"      # → templates/lesson.md\n\nTo view template structure: Read the template file in templates/ directory before creating a memory document.\n\nTemplate features:\n\nYAML frontmatter with metadata (title, date, type, status)\nStructured sections with placeholder guidance\nWiki-link suggestions for connections\nAuto-generated tags"
      },
      {
        "title": "Folder Structure",
        "body": "vault/\n├── .fsxmemory/           # Internal state\n│   ├── last-checkpoint.json\n│   └── dirty-death.flag\n├── decisions/            # Key choices with reasoning\n├── lessons/              # Insights and patterns\n├── people/               # One file per person\n├── projects/             # Active work tracking\n├── procedures/           # How-to guides and workflows\n├── knowledge/            # Concepts and definitions\n├── episodes/             # Personal experiences\n├── handoffs/             # Session continuity\n├── inbox/                # Quick captures\n└── templates/            # Document templates (9 types)"
      },
      {
        "title": "Best Practices",
        "body": "Checkpoint every 10-15 min during heavy work\nHandoff before session end — future you will thank you\nRecover on wake — check if last session died\nUse types — knowing WHAT you're storing helps WHERE to put it\nWiki-link liberally — [[person-name]] builds your knowledge graph"
      },
      {
        "title": "Integration with qmd",
        "body": "Foresigxt Memory uses qmd for search:\n\n# Install qmd\nbun install -g github:tobi/qmd\n\n# Add vault as collection\nqmd collection add /path/to/vault --name my-memory --mask \"**/*.md\"\n\n# Update index\nqmd update && qmd embed"
      },
      {
        "title": "Configuration",
        "body": "Foresigxt Memory supports three ways to set the vault path (in order of precedence):"
      },
      {
        "title": "1. Command-line flag (highest priority)",
        "body": "fsxmemory stats --vault /path/to/vault"
      },
      {
        "title": "2. Environment variable",
        "body": "export FSXMEMORY_PATH=/path/to/memory\nfsxmemory stats"
      },
      {
        "title": "3. .env file (for workspace-isolated memory)",
        "body": "# Create .env in workspace root\ncat > .env << 'EOF'\nFSXMEMORY_PATH=/home/user/.openclaw/workspace/memory\nEOF\n\n# All fsxmemory commands in this workspace use this isolated vault\nfsxmemory stats\nfsxmemory checkpoint --working-on \"task\"\n\nUse .env when:\n\n✅ Isolating workspace memory — Each project has its own separate vault\n✅ Per-project configuration — Different agents in different workspaces use different vaults\n✅ Portable — Workspace agents automatically use the right vault\n✅ Git-safe — Add .env to .gitignore to protect paths\n\nUse global export when:\n\n✅ Sharing memory across workspaces — All agents everywhere use one vault\n✅ Centralized knowledge — One source of truth for all projects\n\nEnvironment Variables:\n\nFSXMEMORY_PATH — Vault path (can be set in shell or .env file)"
      },
      {
        "title": "Publishing Skill Package",
        "body": "To create a distributable skill package (includes SKILL.md and templates/):\n\n# Package the skill\nnpm run package-skill\n\n# Output: dist-skill/fsxmemory-skill.zip (~8KB)\n\nPackage contents:\n\nSKILL.md - Complete documentation and reference\ntemplates/ - All 9 memory templates\n.env.example - Configuration template\nINSTALL.md - Quick setup guide\n\nDistribution:\nShare the fsxmemory-skill.zip file with other agents/teams. They can extract it to get:\n\nComplete skill documentation\nReady-to-use templates\nConfiguration examples\n\nFor OpenClaw/ClaudeHub:\nThe packaged skill is ready for upload to skill repositories."
      },
      {
        "title": "Links",
        "body": "npm: https://www.npmjs.com/package/@foresigxt/foresigxt-cli-memory\nGitHub: https://github.com/Foresigxt/foresigxt-cli-memory\nIssues: https://github.com/Foresigxt/foresigxt-cli-memory/issues"
      }
    ],
    "body": "Foresigxt Memory\n\nStructured memory system for AI agents.\n\nInstall\nnpm install -g @foresigxt/foresigxt-cli-memory\n\nSetup\nOption 1: Initialize New Vault\n# Initialize vault (creates folder structure + templates)\nfsxmemory init ~/memory\n\nOption 2: Use Existing Vault\n\nFor isolated workspace memory (each workspace has its own vault):\n\n# Create .env in workspace root\necho 'FSXMEMORY_PATH=/path/to/workspace/memory' > .env\n\n# All agents in THIS workspace use this isolated vault\nfsxmemory stats  # Works automatically!\n\n\nFor shared memory across all workspaces:\n\n# Set global environment variable (in ~/.bashrc or ~/.zshrc)\nexport FSXMEMORY_PATH=/path/to/shared/memory\n\n# All agents in ALL workspaces share the same vault\n\n\nOr: Use --vault flag for one-time override:\n\nfsxmemory stats --vault /path/to/other/vault\n\nCore Commands\nStore memories by type\n# Types: fact, feeling, decision, lesson, commitment, preference, relationship, project, procedural, semantic, episodic\nfsxmemory remember decision \"Use Postgres over SQLite\" --content \"Need concurrent writes for multi-agent setup\"\nfsxmemory remember lesson \"Context death is survivable\" --content \"Checkpoint before heavy work\"\nfsxmemory remember relationship \"Justin Dukes\" --content \"Client contact at Hale Pet Door\"\nfsxmemory remember procedural \"Deploy to Production\" --content \"1. Run tests 2. Build 3. Deploy\"\nfsxmemory remember semantic \"Event Loop Concept\" --content \"JavaScript's concurrency model...\"\nfsxmemory remember episodic \"First Production Deploy\" --content \"Deployed v2.0 today, team was nervous but it went well\"\n\nQuick capture to inbox\nfsxmemory capture \"TODO: Review PR tomorrow\"\n\nSearch (requires qmd installed)\n# Keyword search (fast)\nfsxmemory search \"client contacts\"\n\n# Semantic search (slower, more accurate)\nfsxmemory vsearch \"what did we decide about the database\"\n\nContext Death Resilience\nCheckpoint (save state frequently)\nfsxmemory checkpoint --working-on \"PR review\" --focus \"type guards\" --blocked \"waiting for CI\"\n\nRecover (check on wake)\nfsxmemory recover --clear\n# Shows: death time, last checkpoint, recent handoff\n\nHandoff (before session end)\nfsxmemory handoff \\\n  --working-on \"Foresigxt Memory improvements\" \\\n  --blocked \"npm token\" \\\n  --next \"publish to npm, create skill\" \\\n  --feeling \"productive\"\n\nRecap (bootstrap new session)\nfsxmemory recap\n# Shows: recent handoffs, active projects, pending commitments, lessons\n\nMigration from Other Formats\n\nMigrate existing vaults from OpenClaw, Obsidian, or other markdown-based systems:\n\nAnalyze First (Dry Run)\n# See what would be changed without modifying files\nfsxmemory migrate --from openclaw --vault /path/to/vault --dry-run\n\nMigrate with Backup\n# Recommended: Creates automatic backup before migration\nfsxmemory migrate --from openclaw --vault /path/to/vault --backup\n\n# The migration:\n# ✅ Adds YAML frontmatter to all markdown files\n# ✅ Renames directories (procedural→procedures, semantic→knowledge, episodic→episodes)\n# ✅ Creates .fsxmemory.json config file\n# ✅ Preserves all content and custom categories\n# ✅ Creates timestamped backup for rollback\n\nRollback if Needed\n# Restore from backup if something went wrong\nfsxmemory migrate --rollback --vault /path/to/vault\n\nMigration Options\n# Available source formats\n--from openclaw      # OpenClaw vault format\n--from obsidian      # Obsidian vault format\n--from generic       # Generic markdown vault\n\n# Migration flags\n--dry-run           # Preview changes without modifying files\n--backup            # Create backup before migration (recommended)\n--force             # Skip confirmation prompts\n--verbose           # Show detailed progress\n--rollback          # Restore from last backup\n\nExample: Migrate OpenClaw Vault\n# 1. Analyze first\nfsxmemory migrate --from openclaw --vault ~/.openclaw/workspace/memory --dry-run\n\n# 2. Run migration with backup\nfsxmemory migrate --from openclaw --vault ~/.openclaw/workspace/memory --backup --verbose\n\n# 3. Verify migration worked\nfsxmemory stats --vault ~/.openclaw/workspace/memory\nfsxmemory doctor --vault ~/.openclaw/workspace/memory\n\n\nMigration Speed: ~53 files in 0.07 seconds ⚡\n\nAuto-linking\n\nWiki-link entity mentions in markdown files:\n\n# Link all files\nfsxmemory link --all\n\n# Link single file\nfsxmemory link memory/2024-01-15.md\n\nTemplates Reference\n\nForesigxt Memory includes structured templates for consistent documentation. Location: templates/ directory.\n\nAvailable Templates\nTemplate\tType\tUse For\tSections\ndecision.md\tdecision\tKey choices, architecture decisions\tContext, Options, Decision, Outcome\nprocedure.md\tprocedural\tHow-to guides, workflows, SOPs\tPurpose, Prerequisites, Steps, Pitfalls, Verification\nknowledge.md\tsemantic\tConcepts, definitions, mental models\tDefinition, Key Concepts, Examples, Why It Matters\nepisode.md\tepisodic\tEvents, experiences, meetings\tWhat Happened, Context, Key Moments, Reflection\nperson.md\tperson\tContacts, relationships\tContact, Role, Working With, Interactions\nproject.md\tproject\tActive work, initiatives\tGoal, Status, Next Actions, Blockers\nlesson.md\tlesson\tInsights, patterns learned\tSituation, Lesson, Application\nhandoff.md\thandoff\tSession continuity\tWorking On, Context, Next Steps, Blockers\ndaily.md\tdaily\tDaily notes, journal\tFocus, Done, Notes\nTemplate Usage\n\nTemplates are automatically selected by memory type:\n\nfsxmemory remember decision \"Title\" --content \"...\"    # → templates/decision.md\nfsxmemory remember procedural \"Title\" --content \"...\"  # → templates/procedure.md\nfsxmemory remember semantic \"Title\" --content \"...\"    # → templates/knowledge.md\nfsxmemory remember episodic \"Title\" --content \"...\"    # → templates/episode.md\nfsxmemory remember relationship \"Name\" --content \"...\" # → templates/person.md\nfsxmemory remember lesson \"Title\" --content \"...\"      # → templates/lesson.md\n\n\nTo view template structure: Read the template file in templates/ directory before creating a memory document.\n\nTemplate features:\n\nYAML frontmatter with metadata (title, date, type, status)\nStructured sections with placeholder guidance\nWiki-link suggestions for connections\nAuto-generated tags\nFolder Structure\nvault/\n├── .fsxmemory/           # Internal state\n│   ├── last-checkpoint.json\n│   └── dirty-death.flag\n├── decisions/            # Key choices with reasoning\n├── lessons/              # Insights and patterns\n├── people/               # One file per person\n├── projects/             # Active work tracking\n├── procedures/           # How-to guides and workflows\n├── knowledge/            # Concepts and definitions\n├── episodes/             # Personal experiences\n├── handoffs/             # Session continuity\n├── inbox/                # Quick captures\n└── templates/            # Document templates (9 types)\n\nBest Practices\nCheckpoint every 10-15 min during heavy work\nHandoff before session end — future you will thank you\nRecover on wake — check if last session died\nUse types — knowing WHAT you're storing helps WHERE to put it\nWiki-link liberally — [[person-name]] builds your knowledge graph\nIntegration with qmd\n\nForesigxt Memory uses qmd for search:\n\n# Install qmd\nbun install -g github:tobi/qmd\n\n# Add vault as collection\nqmd collection add /path/to/vault --name my-memory --mask \"**/*.md\"\n\n# Update index\nqmd update && qmd embed\n\nConfiguration\n\nForesigxt Memory supports three ways to set the vault path (in order of precedence):\n\n1. Command-line flag (highest priority)\nfsxmemory stats --vault /path/to/vault\n\n2. Environment variable\nexport FSXMEMORY_PATH=/path/to/memory\nfsxmemory stats\n\n3. .env file (for workspace-isolated memory)\n# Create .env in workspace root\ncat > .env << 'EOF'\nFSXMEMORY_PATH=/home/user/.openclaw/workspace/memory\nEOF\n\n# All fsxmemory commands in this workspace use this isolated vault\nfsxmemory stats\nfsxmemory checkpoint --working-on \"task\"\n\n\nUse .env when:\n\n✅ Isolating workspace memory — Each project has its own separate vault\n✅ Per-project configuration — Different agents in different workspaces use different vaults\n✅ Portable — Workspace agents automatically use the right vault\n✅ Git-safe — Add .env to .gitignore to protect paths\n\nUse global export when:\n\n✅ Sharing memory across workspaces — All agents everywhere use one vault\n✅ Centralized knowledge — One source of truth for all projects\n\nEnvironment Variables:\n\nFSXMEMORY_PATH — Vault path (can be set in shell or .env file)\nPublishing Skill Package\n\nTo create a distributable skill package (includes SKILL.md and templates/):\n\n# Package the skill\nnpm run package-skill\n\n# Output: dist-skill/fsxmemory-skill.zip (~8KB)\n\n\nPackage contents:\n\nSKILL.md - Complete documentation and reference\ntemplates/ - All 9 memory templates\n.env.example - Configuration template\nINSTALL.md - Quick setup guide\n\nDistribution: Share the fsxmemory-skill.zip file with other agents/teams. They can extract it to get:\n\nComplete skill documentation\nReady-to-use templates\nConfiguration examples\n\nFor OpenClaw/ClaudeHub: The packaged skill is ready for upload to skill repositories.\n\nLinks\nnpm: https://www.npmjs.com/package/@foresigxt/foresigxt-cli-memory\nGitHub: https://github.com/Foresigxt/foresigxt-cli-memory\nIssues: https://github.com/Foresigxt/foresigxt-cli-memory/issues"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/azrijamil/fsxmemory",
    "publisherUrl": "https://clawhub.ai/azrijamil/fsxmemory",
    "owner": "azrijamil",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/fsxmemory",
    "downloadUrl": "https://openagent3.xyz/downloads/fsxmemory",
    "agentUrl": "https://openagent3.xyz/skills/fsxmemory/agent",
    "manifestUrl": "https://openagent3.xyz/skills/fsxmemory/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/fsxmemory/agent.md"
  }
}