skill
Prose Style (Adom House Style)
Public Made by Adomby adom
The Adom house writing style. Apply to ALL user-facing copy you write: NO em-dashes (use a comma, colon, or period), and cut the tics that make text read as AI-generated (delve, seamless, robust, leverage, 'it's not just X, it's Y', 'in today's world'). Write plainly, like a person. Read before writing any README, wiki page, release note, chat message, UI string, or docs.
#!/bin/bash
set -e
# Deliver the skill into the agent skills dir so Claude/Codex discover it.
# (Same pattern as adom/definitions and adom/building-adom-apps.)
PKG_DIR="$(cd "$(dirname "$0")" && pwd)"
SKILLS_DIR="$HOME/.claude/skills"
mkdir -p "$SKILLS_DIR/prose-style"
if [ -f "$PKG_DIR/SKILL.md" ]; then
cp "$PKG_DIR/SKILL.md" "$SKILLS_DIR/prose-style/SKILL.md"
fi
# Mirror to Codex if present.
if [ -d "$HOME/.codex/skills" ]; then
mkdir -p "$HOME/.codex/skills/prose-style"
[ -f "$PKG_DIR/SKILL.md" ] && cp "$PKG_DIR/SKILL.md" "$HOME/.codex/skills/prose-style/SKILL.md"
fi
echo "Installed prose-style -> $SKILLS_DIR/prose-style"