From supernemawashi
Use when user wants to create or update a person's profile - collects data from available MCP sources (Slack, Gmail, Calendar, GitHub, and any other discoverable sources via the adapter pattern) and writes to PROFILE_DIR
How this skill is triggered — by the user, by Claude, or both
Slash command
/supernemawashi:nemawashi-collectThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Collect data about a person from available MCP sources and create or update their profile in `PROFILE_DIR/`.
Collect data about a person from available MCP sources and create or update their profile in PROFILE_DIR/.
Ask the user:
Read PROFILE_DIR/<person-name>/profile.md if it exists. Note what data is already collected and when it was last updated.
Read all *.md files in the adapters/ directory (relative to this skill). For each adapter:
After running every known adapter, scan for additional MCP servers that look communication-relevant but are not covered by an adapter (e.g., Discord, Linear, Notion, Drive). For each uncovered source:
[<slug>] where <slug> is derived from the MCP server name (e.g., [discord], [linear]).adapters/<slug>.md file for it (see ADAPTER-CONTRACT.md).Create the directory PROFILE_DIR/<person-name>/ if it doesn't exist.
profile.md — Write with this structure. These are the manual sections that nemawashi-analyze preserves verbatim across re-analyses; the synthesis pass adds ## Core Pattern and ## Framework Summary underneath without touching these.
---
name: [Full Name]
role: [Role/Title]
team: [Team Name]
last_updated: [YYYY-MM-DD]
sources: [list of MCP sources used]
---
## Basic Info
- Title: [title]
- Reports to: [manager, if known]
- Tenure: [if known]
## Communication Patterns
- [Observed patterns from collected data]
- [Response time tendencies]
- [Preferred channels]
- [Tone and formality level]
## Active Channels
- [Slack channels, email threads, repos where this person is active]
## Work Patterns
- [Meeting cadence, focus hours, escalation patterns — fill what's observable]
Leave the analysis sections (## Core Pattern, ## Framework Summary) to nemawashi-analyze; the synthesis pass writes them. Per-framework files at frameworks/<slug>.md are also produced by nemawashi-analyze, not here.
relationship.md — Ask the user about their relationship:
---
person: [Full Name]
relation: [relationship description]
last_updated: [YYYY-MM-DD]
---
## Relationship with Me
- [User-provided context about their relationship]
## Approach Strategy
<!-- Populated after nemawashi-analyze runs -->
facts.jsonl — Append one observable behavior per line, following the canonical schema in FACTS-SCHEMA.md. New entries always go here; never modify a legacy facts.md if one is present (consumers read both).
Entry format rules:
profile.md.date (YYYY-MM-DD or YYYY-MM), source (the adapter's output_tag or manual for user-provided facts), content (one observable behavior — what they said or did).FACTS-SCHEMA.md and each adapter file.Examples:
{"date":"2026-03-27","source":"slack","content":"Rear-guard criticism to subordinate about alert handling","url":"https://acme.slack.com/archives/C123/p456","channel":"#engineering"}
{"date":"2026-03-27","source":"gmail","content":"Accepted meeting invitation for design review as passive participant"}
{"date":"2026-03-26","source":"calendar","content":"Attended ops meeting organized by team lead","meeting_title":"Ops Weekly"}
After collection, suggest:
When you need to collect for multiple targets at once — invoked by nemawashi-discover Step 5, or directly by the user as "collect for X, Y, Z in parallel" — do not run the per-adapter recipes inline N times. Dispatch the profile-collector agent (defined at agents/profile-collector.md) once per target. Each agent runs in an isolated context and writes only that target's profile files.
The parent (this skill running in the main session) is responsible for:
profile-collector agents in parallel (one Agent tool invocation per target, all in a single message).target_name: <slug>
target_full_name: <Full Name>
target_role: <Role or "unknown">
profile_dir: ${PROFILE_DIR}/<slug>/
today: <YYYY-MM-DD>
relationship_hint: <one-liner from the user, optional>
Adapters available in this session: <comma-separated slugs>
Read the adapter files at skills/nemawashi-collect/adapters/<slug>.md for the
above slugs (plus ADAPTER-CONTRACT.md and FACTS-SCHEMA.md). Follow each
adapter's Collection Recipe + Fact Extraction. The recipes resolve the
TARGET's identifiers; "user's own handle / email / login" only matters
for a couple of recipe steps (e.g. GitHub's `@me` filter), which the
tooling resolves natively — no separate identity cache is needed.
Return one report block per the agent's documented output shape.
Sub-agents read the adapter files at the canonical path, so recipe drift is impossible.
npx claudepluginhub kohei-wada/supernemawashi --plugin supernemawashiCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.