@@ -74,7 +74,7 @@ Patches welcome.
7474
7575The ` agent ` sub-command tree has commands designed for AI coding agents and
7676other automated tooling. All agent output is stable, machine-readable JSON.
77- AIs should see [ ` AGENTS.md ` ] ( AGENTS.md ) for full tool schemas and usage patterns.
77+ AIs should see [ ` AGENTS.md ` ] ( ) for full tool schemas and usage patterns.
7878
7979` character agent mcp ` starts a [ Model Context Protocol] [ mcp ] stdio server.
8080This allows ` character ` to act as a co-process providing Unicode domain
@@ -108,20 +108,20 @@ The server returns an `instructions` field in its MCP initialize response,
108108which Claude Code uses to discover the Unicode tools automatically via Tool
109109Search — no additional configuration is needed for basic usage.
110110
111- ** Installing the skill file ** (optional): the file
112- [ ` extra/SKILL .md ` ] ( extra/SKILL.md ) provides a deeper reference — a
111+ ** Installing the custom slash command ** (optional): the file
112+ [ ` extra/character-unicode .md ` ] ( ) provides a deeper reference — a
113113tool-routing decision table, the full property field reference, and advanced
114114tips. Install it as a custom slash command for on-demand access:
115115
116116``` sh
117117# from the character source tree
118- mkdir -p ~ /.claude/commands
119- cp extra/SKILL .md ~ /.claude/commands/character-unicode.md
118+ mkdir -pv ~ /.claude/commands
119+ cp -v extra/character-unicode .md ~ /.claude/commands/./
120120```
121121
122122Once installed, type ` /character-unicode ` in a Claude Code session to load the
123- skill into context. The server's ` instructions ` text references the skill, so
124- Claude can load it when detailed guidance is needed.
123+ extra guidance into context. The server's ` instructions ` text references the
124+ command, so Claude can load it when detailed guidance is needed.
125125
126126#### Other MCP clients
127127
@@ -134,12 +134,18 @@ automatically.
134134
135135## Documentation
136136
137- | File | Audience |
138- | ---------------------------------- | ---------------------------------------------------------------------------- |
139- | [ ` AGENTS.md ` ] ( AGENTS.md ) | AI agents — tool schemas, example invocations, output formats |
140- | [ ` CODE_GUIDE.md ` ] ( CODE_GUIDE.md ) | Developers — package map, reading order, data flow, protocols |
141- | [ ` extra/SKILL.md ` ] ( extra/SKILL.md ) | AI agents — tool-routing table, property field reference, Claude Code skill |
142-
137+ | File | Audience |
138+ | -------------------------------- | ----------------------------------------------------------------------------------- |
139+ | [ ` AGENTS.md ` ] ( ) | AI agents — tool schemas, example invocations, output formats |
140+ | [ ` CODE_GUIDE.md ` ] ( ) | Developers — package map, reading order, data flow, protocols |
141+ | [ ` extra/character-unicode.md ` ] ( ) | AI agents — tool-routing table, property field reference, Claude Code slash command |
142+
143+ [ AGENTS.md ] : AGENTS.md
144+ [ `AGENTS.md` ] : AGENTS.md
145+ [ CODE_GUIDE.md ] : CODE_GUIDE.md
146+ [ `CODE_GUIDE.md` ] : CODE_GUIDE.md
147+ [ extra/character-unicode.md ] : extra/character-unicode.md
148+ [ `extra/character-unicode.md` ] : extra/character-unicode.md
143149
144150## Building
145151
0 commit comments