unit-12: promote /sent to a meta-dispatcher skill#7
Merged
Conversation
Promotes the previously command-only Sent router into a real skill at skills/sent/SKILL.md so Claude auto-invokes routing whenever the user mentions Sent broadly (without naming a channel) — instead of only when the user types /sent. The slash command is reduced to a thin shim matching the shape of the other shim commands and now invokes the new skill rather than restating the routing logic. - NEW skills/sent/SKILL.md (Overview, When to Use, routing table for the 7 vertical skills, clarifying questions, when not to route, related skills with link to references/sent-glossary.md) - EDIT .claude/commands/sent.md → 7-line shim invoking sent-skills:sent Validator passes (8 skills OK). Per plan.md WS4 / unit 12. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Promotes the
/sentslash-command router into a real skill atskills/sent/SKILL.mdso Claude auto-invokes routing whenever the user mentions Sent broadly (not only when the user types/sent). The slash command is reduced to a thin shim that invokes the new skill, matching the shape of the other shim commands in.claude/commands/.Implements unit 12 of the
/batchparallel restructure (seeplan.mdworkstream WS4 — discoverability & polish).Scope (touches only these files)
skills/sent/SKILL.md— meta-dispatcher skill (70-line body)descriptioncontaining multiple "Use when" triggers (Sent mentioned broadly, ambiguous channel, dashboard URL pasted, "what can you help with on Sent")docs.sent.dmand Sent supportreferences/sent-glossary.md.claude/commands/sent.md— replaced 17-line router body with a 7-line shim that delegates tosent-skills:sentDoes not touch other skills, other shim commands, validator, CI, root markdown, plugin manifest, or
plan.md— per hard constraints in the unit brief.Test plan
test -f skills/sent/SKILL.md— passesbash scripts/validate-skills.sh— exits 0 (OK: 8 skill(s) validated)wc -l .claude/commands/sent.md— 7 lines (≤ 15)grep -q "sent-skills:sent" .claude/commands/sent.md— passessentskill on prompts like "help me with Sent" or "I want to send messages" without/senttyped/sentslash command still works end-to-end via the shimCo-Authored-By: Claude Opus 4.7 (1M context) noreply@anthropic.com