teams-message

teams-message is a skill for Claude Code from okolovmark/nixodoo-copier-template. It costs 82 tokens per session (2,118 once invoked), scanned A, original, MIT.

A guide for composing and sending Microsoft Teams messages, which are chats or channel posts used for workplace communication.

In plain words
What is it for?
Writing readable English messages, checking recipients by email, preparing a draft, and sending correctly formatted direct, group, or channel messages.
Why use it?
It reduces formatting mistakes and helps ensure messages go to the verified intended recipient.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter.

Good fit Writing readable English messages, checking recipients by email, preparing a draft, and sending correctly formatted direct, group, or channel messages.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/okolovmark/nixodoo-copier-template/if-status_mcp-teams-teams-message-endif
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add okolovmark/nixodoo-copier-template --skill if-status_mcp-teams-teams-message-endif
Clone the repo
git clone --depth 1 https://github.com/okolovmark/nixodoo-copier-template

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for teams-message

README.md
[![agentmods](https://agentmods.dev/badge/skills/okolovmark/nixodoo-copier-template/if-status_mcp-teams-teams-message-endif/github.svg)](https://agentmods.dev/skills/okolovmark/nixodoo-copier-template/if-status_mcp-teams-teams-message-endif)
Your own site
<a href="https://agentmods.dev/skills/okolovmark/nixodoo-copier-template/if-status_mcp-teams-teams-message-endif"><img src="https://agentmods.dev/badge/skills/okolovmark/nixodoo-copier-template/if-status_mcp-teams-teams-message-endif/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for teams-message

Your own site · 80×15
<a href="https://agentmods.dev/skills/okolovmark/nixodoo-copier-template/if-status_mcp-teams-teams-message-endif"><img src="https://agentmods.dev/badge/skills/okolovmark/nixodoo-copier-template/if-status_mcp-teams-teams-message-endif.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 82 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,118 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00082 $0.02118
Opus 5 $0.00041 $0.01059
Sonnet 5 $0.00016 $0.00424
Haiku 4.5 $0.00008 $0.00212

Measured 4d ago against content hash 5759523f936b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

teams-message scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/preview.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

template/{% if use_claude_code %}.claude{% endif %}/skills/{% if status_mcp == 'teams' %}teams-message{% endif %}/SKILL.md · 141 lines

How it starts

The opening of the file, as written. The whole thing — 141 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Teams message

One message, readable at chat width (~90 chars), written as the user. Also the formatting authority for every other skill that posts to Teams (my-status, deploy/pipeline notifications): those own what is sent, this owns how it is shaped and sent.

Transport is the claude.ai Microsoft 365 connector (mcp__claude_ai_Microsoft_365__teams_*), which the user connects in their claude.ai under Customize → Connectors. There is no project-level Teams MCP server to install.

Hard rules

  • Write HTML and pass bodyType: "html". The connector does no markdown pass at all — it takes text or HTML and sanitizes the HTML. Markdown syntax posted as a body lands literally: **Modules:** renders as asterisks, - item as a hyphen, [label](url) as brackets. This is the single most common way a message comes out unreadable. bodyType: "text" (the default) is for a genuinely one-paragraph message and nothing else.
  • A sent message cannot be edited or deleted. The connector exposes no update or delete tool. There is no read-back-and-fix loop any more: the draft gate below is the only correction opportunity. Re-read the recipient and the body before sending.
  • English body, always — whatever language the session runs in. The draft shown to the user is English too.
  • DM recipient resolved fresh: search_people by name, match the email in the result, and only then take/create the chat. Never reuse a chat id carried in context — the id encodes an opaque GUID, so a wrong recipient is invisible in the call and in the success response. Watch for duplicate same-name accounts (old/disabled mailboxes); pick the live one. Fixed group chat ids from the identity memory node are exempt.
  • It is the user speaking, not an assistant. No offers of extra work ("want me to check X", "let me know if you want a hand") — the message is signed by a person with their own backlog. End on the fact, or on the step the recipient takes.
  • No AI style tells: no em dashes, no contractions (write "do not", "it is", "I have"), no "not just X, but Y", no triadic parallel lists, no buzzwords (delve, leverage, seamless, robust, empower, unlock), no emoji bullets, no "I am excited to" / "Let's connect".
  • Draft first, send on the go. Show the exact text and wait. A request that already dictates the content ("send him: ...") is itself the go.
  • One message per go. Never split into a burst of follow-ups.
  • Body cap is 27000 bytes, and sends are rate-limited per user; a batch of messages needs pacing and a retry after a short delay.

Read the full file on GitHub · 141 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago Changed · +23 lines 5759523f936b
  2. 12d ago First seen · 118 lines · 82 tokens per session scan A 00996761cffb

Subscribe to this mod's changes

teams-message is a skill published in the GitHub repository okolovmark/nixodoo-copier-template (5 stars, last pushed 2d ago), licensed MIT. It adds 82 tokens to every session and 2,118 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories