From mojiemoji-github
〜/.config/mojiemoji/config.json に prestamp の intensity などを<img src="https://mojiemoji.jozo.beer/emoji/%E4%BF%9D%E5%AD%98?font=akzk&color=10b981&animation=shuchusen&background=transparent&outline=8110b9&outline_width=2" alt="保存" height="24" align="absmiddle">し、毎回 CLI <img src="https://mojiemoji.jozo.beer/emoji/%E3%83%95%E3%83%A9%E3%82%B0?font=maru&color=fbbf24&animation=tate_scroll&background=transparent&outline=06d977&outline_width=2" alt="フラグ" height="24" align="absmiddle">を付けなくても既定<img src="https://mojiemoji.jozo.beer/emoji/%E5%8B%95%E4%BD%9C?font=gothic-bold&color=60a5fa&animation=psycho&background=transparent&outline_width=0" alt="動作" height="24" align="absmiddle">を揃えるための skill です。
How this skill is triggered — by the user, by Claude, or both
Slash command
/mojiemoji-github:mojiemoji-configThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
〜/.config/mojiemoji/config.json に prestamp の intensity などを<img src="https://mojiemoji.jozo.beer/emoji/%E4%BF%9D%E5%AD%98?font=akzk&color=10b981&animation=shuchusen&background=transparent&outline=8110b9&outline_width=2" alt="保存" height="24" align="absmiddle">し、毎回 CLI <img src="https://mojiemoji.jozo.beer/emoji/%E3%83%95%E3%83%A9%E3%82%B0?font=maru&color=fbbf24&animati...
〜/.config/mojiemoji/config.json に prestamp の intensity などをし、毎回 CLI
を付けなくても既定
を揃えるための skill です。
/mojiemoji-config を叩いたときprestamp.py の --intensity を毎回指定するのは手間なので、ファイルに一度書いておけば、CLI 無指定時はその値が使われます(解決順は CLI
)。
python3 -c "import sys; sys.path.insert(0, '${CLAUDE_PLUGIN_ROOT}/skills/mojiemoji-github/scripts'); from lib.config import get_intensity, get_config_path; print(f'config={get_config_path()}'); print(f'intensity={get_intensity() or \"(unset, default aggressive)\"}')"
aggressive / normal / minimal のいずれかをします。
python3 -c "import sys; sys.path.insert(0, '${CLAUDE_PLUGIN_ROOT}/skills/mojiemoji-github/scripts'); from lib.config import set_intensity; set_intensity('normal')"
python3 -c "import sys; sys.path.insert(0, '${CLAUDE_PLUGIN_ROOT}/skills/mojiemoji-github/scripts'); from lib.config import set_intensity; set_intensity('minimal')"
python3 -c "import sys; sys.path.insert(0, '${CLAUDE_PLUGIN_ROOT}/skills/mojiemoji-github/scripts'); from lib.config import set_intensity; set_intensity('aggressive')"
python3 -c "import sys; sys.path.insert(0, '${CLAUDE_PLUGIN_ROOT}/skills/mojiemoji-github/scripts'); from lib.config import unset_intensity; unset_intensity()"
XDG で、
XDG_CONFIG_HOME があれば <XDG_CONFIG_HOME>/mojiemoji/config.json、なければ ~/.config/mojiemoji/config.json です。
CLI の --intensity が最。無指定なら
ファイルの値。どちらも無ければ従来どおり
aggressive(sentinel 無しの従来互換)。
npx claudepluginhub jozobeer/mojiemoji-plugin --plugin mojiemoji-githubCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.