diff --git a/.codex-plugin/plugin.json b/.codex-plugin/plugin.json new file mode 100644 index 0000000..8140497 --- /dev/null +++ b/.codex-plugin/plugin.json @@ -0,0 +1,24 @@ +{ + "name": "engram", + "version": "0.1.0", + "description": "Persistent memory for AI coding agents from Codex via MCP", + "author": { + "name": "Gentleman-Programming", + "url": "https://github.com/Gentleman-Programming/engram" + }, + "homepage": "https://github.com/Gentleman-Programming/engram", + "repository": "https://github.com/Gentleman-Programming/engram", + "keywords": [ + "mcp", + "codex" + ], + "mcpServers": "./.mcp.json", + "skills": "./skills/", + "interface": { + "displayName": "Engram", + "shortDescription": "Persistent memory for AI coding agents from Codex via MCP", + "longDescription": "Persistent memory system for AI coding agents. Agent-agnostic Go binary with SQLite + FTS5, MCP server, HTTP API, CLI, and TUI.", + "category": "Memory", + "websiteURL": "https://github.com/Gentleman-Programming/engram" + } +} \ No newline at end of file diff --git a/.github/workflows/plugin-quality-gate.yml b/.github/workflows/plugin-quality-gate.yml new file mode 100644 index 0000000..c60a724 --- /dev/null +++ b/.github/workflows/plugin-quality-gate.yml @@ -0,0 +1,20 @@ +name: Plugin Quality Gate + +on: + pull_request: + paths: + - ".codex-plugin/**" + - "skills/**" + - ".mcp.json" + +jobs: + scan: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Codex plugin quality gate + uses: hashgraph-online/hol-codex-plugin-scanner-action@v1 + with: + plugin_dir: "." + min_score: 80 + fail_on_severity: high diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 0000000..9f4c13c --- /dev/null +++ b/.mcp.json @@ -0,0 +1,10 @@ +{ + "mcpServers": { + "engram": { + "command": "engram", + "args": [ + "serve" + ] + } + } +} \ No newline at end of file diff --git a/skills/engram/SKILL.md b/skills/engram/SKILL.md new file mode 100644 index 0000000..9944e0e --- /dev/null +++ b/skills/engram/SKILL.md @@ -0,0 +1,12 @@ +--- +name: engram +description: Persistent memory for AI coding agents from Codex via MCP +--- + +# Engram for Codex + +Use Engram from Codex via MCP. + +## When to use +- When you need engram capabilities in your Codex workflow +- See https://github.com/Gentleman-Programming/engram for full setup instructions