Agent Plugins Marketplace
All plugins

problem-solving-memory

v0.0.0

Shares one authoritative Problem and its typed evidence across supported AI coding hosts.

CodexClaude Code1 MCP serverstdio

By AI Problem-Solving MemoryLicense: MIT0 GitHub starsUpdated 4 days ago

Directory evidence

Runtimes
Codex and Claude Code
Parsed components
1 skill or MCP entry
Source updated
Sep 19, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install problem-solving-memory for Codex and Claude Code

Installs for the current user
codex plugin marketplace add IchenDEV/agent-plugin-mkt
codex plugin marketplace upgrade agent-plugin-marketplace
codex plugin add problem-solving-memory@agent-plugin-marketplace

Paste and run these commands in a terminal with Codex. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/nikotaronosuke/ai-problem-solving-memory

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is packages/claude-code-memory-plugin/.

Plugin files

packages/claude-code-memory-plugin/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
└── .mcp.json

MCP servers1

memorystdio
command
node
args
bundle/server.js
cwd
.

Plugin manifests2

packages/claude-code-memory-plugin/.codex-plugin/plugin.json
{
  "name": "problem-solving-memory",
  "version": "0.0.0",
  "description": "Shares one authoritative Problem and its typed evidence across supported AI coding hosts.",
  "author": {
    "name": "AI Problem-Solving Memory"
  },
  "repository": "https://github.com/nikotaronosuke/ai-problem-solving-memory",
  "license": "MIT",
  "keywords": [
    "mcp",
    "problem-solving",
    "memory",
    "codex"
  ],
  "mcpServers": {
    "memory": {
      "command": "node",
      "args": [
        "bundle/server.js"
      ],
      "cwd": ".",
      "env_vars": [
        "MEMORY_API_URL",
        "MEMORY_API_TOKEN"
      ]
    }
  },
  "interface": {
    "displayName": "Problem-Solving Memory",
    "shortDescription": "Continue the same verified Problem across AI coding sessions.",
    "longDescription": "Uses the existing local MCP tools to continue one server-authoritative Problem, append typed evidence and preserve verification gates when work moves between supported AI coding hosts.",
    "developerName": "AI Problem-Solving Memory",
    "category": "Developer Tools",
    "defaultPrompt": "Check which Problem this project is currently working on, and continue it from its recorded evidence.",
    "capabilities": [
      "MCP",
      "Write"
    ]
  }
}
packages/claude-code-memory-plugin/.claude-plugin/plugin.json
{
  "name": "problem-solving-memory",
  "displayName": "Problem-Solving Memory",
  "description": "Remembers which problem this session is working on, across sessions and projects.",
  "author": {
    "name": "AI Problem-Solving Memory"
  },
  "license": "MIT"
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[problem-solving-memory on Agent Plugins Marketplace](https://pluginsmp.com/plugins/problem-solving-memory)