plugins marketplace
← All plugins

dodexacode

v0.1.0

AI-native Swift shell and MCP server with typed primitives, self-diagnostics, evaluator-ready submission bundles, capability catalog, workspace context, and scoped security review tooling.

Codex1 MCP serverstdio

by DodexaCode MaintainersMIT0updated 4 months ago

Source

git clone https://github.com/Reyanda/dodexacode

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

dodexacode/
├── .codex-plugin/plugin.json
└── .mcp.json

MCP servers1

dodexacodestdio
command
swift
args
run --package-path . dodexacode --mcp

Manifests1

.codex-plugin/plugin.json
{
  "name": "dodexacode",
  "version": "0.1.0",
  "description": "AI-native Swift shell and MCP server with typed primitives, self-diagnostics, evaluator-ready submission bundles, capability catalog, workspace context, and scoped security review tooling.",
  "author": {
    "name": "DodexaCode Maintainers",
    "email": "techreyanda@gmail.com"
  },
  "homepage": "https://github.com/Reyanda/dodexacode",
  "repository": "https://github.com/Reyanda/dodexacode",
  "license": "MIT",
  "keywords": [
    "swift",
    "shell",
    "mcp",
    "developer-tools",
    "security"
  ],
  "mcpServers": {
    "dodexacode": {
      "command": "swift",
      "args": [
        "run",
        "--package-path",
        ".",
        "dodexacode",
        "--mcp"
      ]
    }
  },
  "interface": {
    "displayName": "DodexaCode",
    "shortDescription": "Swift shell and MCP runtime with diagnostics, submission bundles, and capability catalog.",
    "longDescription": "DodexaCode is a clean-room Swift shell with typed future-shell primitives, compact workspace briefing, reviewer-facing doctor diagnostics, evaluator-ready submission bundle export, a machine-readable capability catalog, structured MCP tools, and policy-gated security review workflows.",
    "developerName": "DodexaCode Maintainers",
    "category": "Coding",
    "capabilities": [
      "Interactive",
      "Read",
      "Write"
    ],
    "websiteURL": "https://github.com/Reyanda/dodexacode",
    "privacyPolicyURL": "https://github.com/Reyanda/dodexacode/blob/main/PRIVACY.md",
    "termsOfServiceURL": "https://github.com/Reyanda/dodexacode/blob/main/TERMS.md",
    "defaultPrompt": [
      "Brief this workspace and suggest the next steps.",
      "Run doctor and summarize local readiness, persistence, and policy posture.",
      "Show the capability catalog reviewer walkthroughs and recommend the strongest path.",
      "Generate an OpenAI submission bundle and export it as structured evidence.",
      "Run a command through dodexacode and return structured output.",
      "Review a target with passive security mode and show mirror defenses."
    ],
    "brandColor": "#0369A1"
  }
}