Agent Plugins Marketplace
All plugins

albino

v0.2.0

Personal productivity plugin: brings Rashad's workflows to Codex.

CodexClaude Code8 Skills3 MCP serversstdio

By Rashad Ansari6 GitHub starsUpdated 4 days ago

Directory evidence

Runtimes
Codex and Claude Code
Parsed components
11 skill or MCP entries
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 albino for Codex and Claude Code

Installs for the current user
codex plugin marketplace add RashadAnsari/myagents
codex plugin marketplace upgrade myagents
codex plugin add albino@myagents

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

Compatibility: the page URL and API slug “albino” remain stable.

  • Codex: albino@agent-plugin-marketplacealbino@myagents

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/RashadAnsari/myagents

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/albino/.

Plugin files

plugins/albino/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/agent-memory/SKILL.md
├── skills/dev-conventions/SKILL.md
├── skills/eu-ai-act/SKILL.md
├── skills/frontend-design/SKILL.md
├── skills/humanizer/SKILL.md
├── skills/markitdown/SKILL.md
├── skills/plugin-authoring/SKILL.md
├── skills/research-first/SKILL.md
└── .mcp.json

Included Skills8

agent-memoryskills/agent-memory/SKILL.md

Use the agent-memory MCP server to retrieve, verify, and store durable project knowledge and global user knowledge before and after non-trivial work.

dev-conventionsskills/dev-conventions/SKILL.md

Development conventions: think before coding, simplicity first, reuse and duplication discipline, surgical scope, localization, UI consistency, validation, data alignment, and verifiable success criteria. Activate when writing, reviewing, or refactoring code in any project, or when the user asks to "improve reusability", "reduce duplication", or "DRY this up".

eu-ai-actskills/eu-ai-act/SKILL.md

Reference knowledge on the EU AI Act (Regulation (EU) 2024/1689): risk tiers, obligations, compliance deadlines including the 2026 AI Omnibus changes, penalties, and scope. Activate when the user asks about the EU AI Act, AI regulation in Europe, high-risk AI compliance, AI transparency or watermarking obligations, GPAI model rules, or whether a product or feature falls under EU AI rules.

frontend-designskills/frontend-design/SKILL.md

Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.

humanizerskills/humanizer/SKILL.md

Remove signs of AI-generated writing from text. Use when editing or reviewing text to make it sound more natural and human-written. Based on Wikipedia's comprehensive "Signs of AI writing" guide. Detects and fixes patterns including: inflated symbolism, promotional language, superficial -ing analyses, vague attributions, em dash overuse, rule of three, AI vocabulary words, passive voice, negative parallelisms, and filler phrases.

markitdownskills/markitdown/SKILL.md

Convert files, URLs, and documents to Markdown using the markitdown MCP server. Activate when the user asks to convert, extract, or read content from PDFs, Word docs, PowerPoints, spreadsheets, images, audio files, or any URL.

plugin-authoringskills/plugin-authoring/SKILL.md

Best practices for writing skills, commands, and agents: descriptions, structure, token efficiency, frontmatter, tool scoping, and common authoring mistakes. Activate when creating or editing a SKILL.md, a command file, or an agent file, or when the user asks to "write a skill", "add a command", "create an agent", or "review this skill".

research-firstskills/research-first/SKILL.md

Enforce thorough research before answering or implementing anything non-trivial, including always looking up the latest stable version of any library or dependency. Activate when working on unfamiliar APIs, systems, protocols, security topics, dependency versions, or any concept where guessing would be harmful.

MCP servers3

agent-memorystdio
command
bash
args
-c PLUGIN="${CLAUDE_PLUGIN_ROOT}"; [ -z "$PLUGIN" ] && PLUGIN="$(pwd)"; exec "$PLUGIN/scripts/run-with-uv.sh" run --directory "$PLUGIN/mcp-servers/agent-memory" agent-memory
cwd
.
markitdownstdio
command
bash
args
-c PLUGIN="${CLAUDE_PLUGIN_ROOT}"; [ -z "$PLUGIN" ] && PLUGIN="$(pwd)"; exec "$PLUGIN/scripts/run-with-uv.sh" tool run markitdown-mcp
cwd
.
playwrightstdio
command
bash
args
-c PLUGIN="${CLAUDE_PLUGIN_ROOT}"; [ -z "$PLUGIN" ] && PLUGIN="$(pwd)"; EXT=""; [ -n "${PLAYWRIGHT_MCP_EXTENSION_TOKEN:-}" ] && EXT="--extension"; exec "$PLUGIN/scripts/run-with-bunx.sh" @playwright/mcp@latest $EXT
cwd
.

MCP configuration uses runtime-provided plugin path placeholders such as ${PLUGIN_ROOT} or ${CLAUDE_PLUGIN_ROOT}. Review the manifest for the runtime-specific expansion rules.

Plugin manifests2

plugins/albino/.codex-plugin/plugin.json
{
  "name": "albino",
  "version": "0.2.0",
  "description": "Personal productivity plugin: brings Rashad's workflows to Codex.",
  "author": {
    "name": "Rashad Ansari",
    "url": "https://github.com/RashadAnsari"
  },
  "skills": "./skills/",
  "mcpServers": "./.mcp.json",
  "hooks": {
    "hooks": {
      "SessionStart": [
        {
          "hooks": [
            {
              "type": "command",
              "command": "PLATFORM=codex bash \"${PLUGIN_ROOT}/hooks/session-start.sh\"",
              "timeout": 30
            }
          ]
        }
      ],
      "UserPromptSubmit": [
        {
          "hooks": [
            {
              "type": "command",
              "command": "PLATFORM=codex bash \"${PLUGIN_ROOT}/hooks/user-prompt-submit.sh\"",
              "timeout": 30
            }
          ]
        }
      ],
      "Stop": [
        {
          "hooks": [
            {
              "type": "command",
              "command": "PLATFORM=codex bash \"${PLUGIN_ROOT}/hooks/stop.sh\"",
              "timeout": 30
            }
          ]
        }
      ]
    }
  }
}
plugins/albino/.claude-plugin/plugin.json
{
  "name": "albino",
  "version": "0.2.0",
  "description": "Personal productivity plugin: brings Rashad's workflows to Claude Code.",
  "author": {
    "name": "Rashad Ansari",
    "url": "https://github.com/RashadAnsari"
  },
  "hooks": {
    "SessionStart": [
      {
        "hooks": [
          {
            "type": "command",
            "command": "PLATFORM=claude-code bash \"${CLAUDE_PLUGIN_ROOT}/hooks/session-start.sh\"",
            "timeout": 30
          }
        ]
      }
    ],
    "UserPromptSubmit": [
      {
        "hooks": [
          {
            "type": "command",
            "command": "PLATFORM=claude-code bash \"${CLAUDE_PLUGIN_ROOT}/hooks/user-prompt-submit.sh\"",
            "timeout": 30
          }
        ]
      }
    ],
    "Stop": [
      {
        "hooks": [
          {
            "type": "command",
            "command": "PLATFORM=claude-code bash \"${CLAUDE_PLUGIN_ROOT}/hooks/stop.sh\"",
            "timeout": 30
          }
        ]
      }
    ]
  }
}

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

[albino on Agent Plugins Marketplace](https://pluginsmp.com/plugins/albino)