Agent Plugins Marketplace
All plugins

claude-bionify

v1.0.1

Bionic reading for Claude's responses that bolds the leading part of each word to guide your eyes and enable you to read faster.

Claude Code1 Skill

By Samuel Ruairí BullardLicense: MIT945 GitHub starsUpdated last month

Directory evidence

Runtimes
Claude Code
Parsed components
1 skill or MCP entry
Source updated
Aug 12, 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 claude-bionify for Claude Code

Installs for the current user
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install claude-bionify@agent-plugin-marketplace

Paste and run these commands in a terminal with Claude Code. 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/ccplugins/awesome-claude-code-plugins

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

Plugin files

plugins/claude-bionify/
├── .claude-plugin/plugin.json
└── skills/claude-bionify/SKILL.md

Included Skills1

claude-bionifyskills/claude-bionify/SKILL.md

Configure and control the claude-bionify bionic reading plugin. Use when the user asks about bionic reading settings (fixation/strength, boundary, minimum word length, acronyms, URLs, headings), wants to turn the bionic display on, off, or toggle it, asks for the current status, or asks how to use the /claude-bionify commands.

Plugin manifests1

plugins/claude-bionify/.claude-plugin/plugin.json
{
  "$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
  "name": "claude-bionify",
  "displayName": "claude-bionify",
  "version": "1.0.1",
  "description": "Bionic reading for Claude's responses that bolds the leading part of each word to guide your eyes and enable you to read faster.",
  "author": {
    "name": "Samuel Ruairí Bullard",
    "email": "[email protected]",
    "url": "https://github.com/abullard1"
  },
  "homepage": "https://github.com/abullard1/claude-bionify",
  "repository": "https://github.com/abullard1/claude-bionify",
  "license": "MIT",
  "keywords": [
    "bionic-reading",
    "speed-reading",
    "accessibility",
    "readability",
    "adhd",
    "dyslexia",
    "focus",
    "productivity"
  ],
  "userConfig": {
    "fixation": {
      "type": "number",
      "title": "Fixation strength",
      "description": "Fraction of each word to bold (0.1–0.9). Higher means more bold.",
      "default": 0.5,
      "min": 0.1,
      "max": 0.9
    },
    "min_word_length": {
      "type": "number",
      "title": "Minimum word length",
      "description": "Words shorter than this are left unbolded.",
      "default": 4,
      "min": 1
    },
    "boundary": {
      "type": "string",
      "title": "Bold boundary",
      "description": "How much of each word to bold: \"fraction\" uses Fixation strength; \"syllable\" ends at the first syllable (e.g. stri-ng); \"log\" grows logarithmically so long words are bolded less.",
      "default": "fraction"
    },
    "skip_acronyms": {
      "type": "boolean",
      "title": "Skip acronyms",
      "description": "Leave ALL-CAPS acronyms like API or JSON unbolded.",
      "default": true
    },
    "protect_urls": {
      "type": "boolean",
      "title": "Protect URLs, paths, and files",
      "description": "Don't bold inside URLs, emails, file paths, or filenames.",
      "default": true
    },
    "skip_headings": {
      "type": "boolean",
      "title": "Skip headings",
      "description": "Leave markdown headings (lines starting with #) unbolded. Headings are already visually prominent, so bolding inside them adds clutter.",
      "default": true
    }
  },
  "experimental": {
    "themes": "./themes/"
  }
}

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

[claude-bionify on Agent Plugins Marketplace](https://pluginsmp.com/plugins/claude-bionify)