← All plugins
plain-speak
v2.15.2Terse-response modes for Claude Code and Codex, with an active hygiene checker that reinjects the rules only when the model drifts.
CodexClaude Code2 skills
by Renz Sanchez0updated 1 week ago
Source
git clone https://github.com/rnzsanchez/plain-speakClone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.
Layout
plain-speak/
├── .codex-plugin/plugin.json├── .claude-plugin/plugin.json├── skills/init/SKILL.md└── skills/stats/SKILL.md
Skills2
initskills/init/SKILL.md
Show which plain-speak mode is active, or switch it.
statsskills/stats/SKILL.md
Token and drift report for plain-speak — this session plus lifetime.
Manifests2
.codex-plugin/plugin.json
{
"name": "plain-speak",
"version": "2.15.2",
"description": "Terse-response modes for Claude Code and Codex, with an active hygiene checker that reinjects the rules only when the model drifts.",
"author": {
"name": "Renz Sanchez",
"url": "https://github.com/rnzsanchez"
},
"skills": "./skills/",
"hooks": "./hooks/plain-speak-hooks.json",
"interface": {
"displayName": "Plain Speak",
"shortDescription": "Plain, terse answers that stay plain.",
"longDescription": "Terse-response modes with an active hygiene checker that reinjects the rules only when the model drifts.",
"developerName": "Renz Sanchez",
"category": "Productivity",
"capabilities": [
"Instructions",
"Lifecycle hooks"
],
"defaultPrompt": [
"Show which plain-speak mode is active.",
"Switch plain-speak to normal mode.",
"Show plain-speak token and drift stats."
]
}
}.claude-plugin/plugin.json
{
"name": "plain-speak",
"version": "2.15.2",
"description": "Terse-response modes with a silent checker that reads every reply and reinjects the rules only when the model drifts.",
"author": {
"name": "Renz Sanchez",
"url": "https://github.com/rnzsanchez"
},
"hooks": "./hooks/plain-speak-hooks.json"
}