Back to the catalog

dyslex.ia

Accessibility MCP server and Agent Skills for AI agents. Requires Superpowers.

Open source Open in the app JSON README (API)

About

Accessibility MCP server and Agent Skills for AI agents. Requires Superpowers.

Details

Kind
MCP servers
Topic
No topic detected
Publisher
firou91
Origin
official
Category
ferramentas
Transport
local
Version
0.2.2
Stars
7
Last push
2026-09-01T18:42:53Z
Repository state
ativo
Language
TypeScript
License
Apache-2.0
Added
2026-08-29 03:01:54
Updated
2026-08-29 03:01:54
Origin id
io.github.Firou91/dyslex-ia

README

# Dyslex.ai

Dyslex.ai is a cognitive accessibility skills plugin for AI agents.

It helps agents reduce friction across the human-AI interaction loop: expressing intent, reconstructing meaning from imperfect wording, preserving technical detail, managing cognitive load, and presenting the next action clearly.

Dyslex.ai does not diagnose disability, provide medical advice, or claim medical benefit.

## Quickstart

- [Codex](#codex)
- [Claude Code](#claude-code)
- [Antigravity](#antigravity)
- [Cursor](#cursor)
- [Factory Droid](#factory-droid)
- [GitHub Copilot CLI](#github-copilot-cli)
- [Kimi Code](#kimi-code)
- [OpenCode](#opencode)
- [Pi](#pi)

## How It Works

Dyslex.ai is a skills-only plugin with an evidence-aware cognitive model.

The plugin contributes reusable Agent Skills through:

```text
.codex-plugin/plugin.json
skills/
src/cognitive/
```

When a matching task appears, the agent can use the relevant skill to reduce a specific functional friction. The project maps evidence-informed mechanisms to interaction risks, then to concrete agent behavior.

```text
scientific knowledge
  -> functional model
  -> interaction risk
  -> adaptation strategy
  -> skill behavior
```

The goal is not to replace the agent's reasoning or Superpowers workflow. The goal is to make that workflow easier to follow, safer to resume, and harder to misread.

Every skill starts with a Superpowers gate. If Superpowers is missing or uncertain, the agent must stop and ask the user to install Superpowers before applying Dyslex.ai.

## Installation

### Codex

Primary path, after public availability:

```text
/plugins
```

Search for:

```text
Dyslex.ai
```

CLI install, when available from the configured marketplace:

```bash
codex plugin add dyslex-ai@openai-curated
```

Fallback if Dyslex.ai is not visible in the public plugin directory yet:

```bash
codex plugin add dyslex-ai@npm:@firou91/dyslex.ai
```

Start a new Codex session after installation so the skills are loaded.

<!-- UNAVAILABLE FOR THE MOMENT -->
<!-- ### Claude Code

Install Superpowers first:

```text
/plugin install superpowers@claude-plugins-official
```

Dyslex.ai currently ships a static adapter plan for Claude Code:

```bash
dyslexai install --host claude-code
```

Public Claude Code deployment is planned after the project reaches the support target listed below.

### Antigravity

Install Superpowers first:

```bash
agy plugin install https://github.com/obra/superpowers
```

Generate the Dyslex.ai adapter plan:

```bash
dyslexai install --host antigravity
```

### Cursor

Install Superpowers first:

```text
/add-plugin superpowers
```

Generate the Dyslex.ai adapter plan:

```bash
dyslexai install --host cursor
```

Public Cursor deployment is planned after the project reaches the support target listed below.

### Factory Droid

Install Superpowers first:

```bash
droid plugin marketplace add https://github.com/obra/superpowers
droid plugin install superpowers@superpowers
```

Generate the Dyslex.ai adapter plan:

```bash
dyslexai install --host factory-droid
```

### GitHub Copilot CLI

Install Superpowers first:

```bash
copilot plugin marketplace add obra/superpowers-marketplace
copilot plugin install superpowers@superpowers-marketplace
```

Generate the Dyslex.ai adapter plan:

```bash
dyslexai install --host copilot-cli
```

### Kimi Code

Install Superpowers first:

```text
/plugins install https://github.com/obra/superpowers
```

Generate the Dyslex.ai adapter plan:

```bash
dyslexai install --host kimi-code
```

### OpenCode

Install Superpowers using the OpenCode instructions from the Superpowers project:

```text
https://raw.githubusercontent.com/obra/superpowers/refs/heads/main/.opencode/INSTALL.md
```

Generate the Dyslex.ai adapter plan:

```bash
dyslexai install --host opencode
```

### Pi

Install Superpowers first:

```bash
pi install git:github.com/obra/superpowers
```

Generate the Dyslex.ai adapter plan:

```bash
dyslexai install --host pi
``` -->

### Local Package

The npm package is published as:

```bash
npm install @firou91/dyslex.ai
```

The CLI command is:

```bash
dyslexai doctor --verbose
```

## The Basic Workflow

1. Install Superpowers in the target agent.
2. Install Dyslex.ai as a plugin.
3. Start a new session so the skills are visible.
4. Ask normally, including messy text, unclear instructions, raw errors, or long output.
5. Dyslex.ai detects the relevant accessibility skill.
6. The skill preserves commands, paths, package names, environment variables, and other technical tokens.
7. The agent clarifies only material ambiguity before acting.
8. The response is structured for readability and verification.

## What's Inside

Dyslex.ai currently includes 16 skills, plus a shared cognitive model for evidence, functional dimensions, and adaptation rules.

### Readability And Writing

- `accessible-response`: reshape answers into clearer blocks without losing detail.
- `spelling-and-writing-support`: correct, proofread, or reformulate text while preserving tone.
- `typo-tolerant-intent`: infer likely intent from typos or malformed wording.
- `identifier-safety`: protect paths, commands, URLs, package names, variables, hashes, and regexes.

### Debugging

- `error-decoder`: turn raw errors, stack traces, and logs into clear explanations.
- `terminal-output-reader`: summarize noisy terminal output without hiding failures.
- `diff-reader`: explain changes, risks, and test needs from diffs or patches.
- `code-explainer`: explain source code in accessible layers.

### Collaboration

- `instruction-decoder`: unpack dense prompts, issues, specs, or task descriptions.
- `prompt-clarifier`: ask only the questions that materially change the result.
- `task-sequencer`: break work into ordered steps with dependencies and checks.
- `decision-comparator`: compare options and provide a clear recommendation when needed.
- `number-and-date-clarifier`: clarify ambiguous dates, units, versions, decimals, and ranges.

### Meta And Continuity

- `context-reentry`: resume interrupted work after pauses, compaction, or task switching.
- `documentation-navigator`: identify which docs matter and what is required versus recommended.
- `accessible-superpowers`: present Superpowers workflows more accessibly without weakening them.

## Philosophy

Dyslex.ai is built around a simple rule: accessibility should reduce cognitive friction without reducing technical precision or user autonomy.

That means:

- adapt to functional needs, not diagnostic labels;
- preserve exact technical tokens;
- separate facts from assumptions;
- ask fewer, better questions;
- make success criteria explicit;
- keep warnings and failures visible;
- avoid medical claims;
- avoid pseudo-neuroscience;
- treat unsupported ideas as hypotheses or preferences;
- respect Superpowers as the workflow authority.

The project is not trying to make agents softer or less rigorous. It is trying to make rigorous work easier to read, resume, and verify.

## Scientific Model

The first research and architecture report is available in [DYSLEX.AI — Scientific Interaction Model](docs/research/scientific-interaction-model.md).

The model avoids diagnosis-based modes. It uses functional dimensions such as:

- working-memory load;
- spelling variability;
- lexical-access uncertainty;
- reading-speed load;
- numerical ambiguity;
- sequencing and planning load;
- interface and tool-action burden;
- over-adaptation risk.

## Identity

Here is how we connect the very minimal visual identity to Dyslex.ai's role, name, and philosophy.

Read the full visual identity notes in [Identity](docs/identity.md).

## Support

Publishing and maintaining Dyslex.ai across public agent ecosystems costs time and API tokens. Making an accessibility plugin publicly available usually requires repeated review passes, test runs, model-specific validation, and ongoing compatibility checks.

Codex is already covered as the first public deployment target.

Community support will guide the next deployment targets:

- 1,000 GitHub stars: Public deployment for Claude Code.
- 5,000 GitHub stars: Public release of the plugin for Cursor and other planned hosts.

You can support the project by:

- starring the repository;
- testing Dyslex.ai in real workflows;
- reporting unclear behavior;
- suggesting accessibility improvements;
- sharing reproducible prompts where the skills help or fail.

## Documentation

- [Architecture](docs/architecture/README.md)
- [Installation](docs/installation/README.md)
- [Codex CLI ](docs//codex-cli.md)
- [Plugin E2E Publication](docs//plugin-e2e.md)
- [Compatibility](docs/compatibility/README.md)
- [Security](docs/security/README.md)
- [Accessibility](docs/accessibility/README.md)
- [Publishing](docs/publishing.md)

More