CodeAppsDevelopmentStandard: Skill for Claude Code

.github/skills/ai-teammate/SKILL.md

ai-teammate is a skill for Claude Code, Codex from geekfujiwara/CodeAppsDevelopmentStandard. It costs 236 tokens per session (10,563 once invoked), scanned A, original, MIT.

A development guide for building a self-hosted AI teammate that can work in Microsoft Teams and Microsoft 365 Copilot. It covers an Agent SDK application hosted on Azure App Service and connected to services such as email, calendars, search, scheduled work, and code execution.

In plain words
What is it for?
Use it to design and implement a Teams-facing agent, configure its identity and capabilities, and share its results with users.
Why use it?
It sets the supported hosting pattern, security boundaries, templating rules, and setup requirements for making the agent available as a digital colleague.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: names the AskUserQuestion tool.

This is geekfujiwara/CodeAppsDevelopmentStandard's own configuration. It tells Claude Code and Codex how to work on CodeAppsDevelopmentStandard itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything CodeAppsDevelopmentStandard configures →

Reuse

Borrowing it

Nothing to install: this file belongs to geekfujiwara/CodeAppsDevelopmentStandard. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/geekfujiwara/CodeAppsDevelopmentStandard/main/.github/skills/ai-teammate/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/geekfujiwara/CodeAppsDevelopmentStandard

Made for: Claude Code, Codex.

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 ai-teammate

README.md
[![agentmods](https://agentmods.dev/badge/skills/geekfujiwara/codeappsdevelopmentstandard/ai-teammate.svg)](https://agentmods.dev/skills/geekfujiwara/codeappsdevelopmentstandard/ai-teammate)
Your own site
<a href="https://agentmods.dev/skills/geekfujiwara/codeappsdevelopmentstandard/ai-teammate"><img src="https://agentmods.dev/badge/skills/geekfujiwara/codeappsdevelopmentstandard/ai-teammate.svg" alt="Measured on agentmods" height="20"></a>
Per session 236 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 10,563 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00236 $0.10563
Opus 5 $0.00118 $0.05282
Sonnet 5 $0.00047 $0.02113
Haiku 4.5 $0.00024 $0.01056

Measured 2d ago against content hash 1ba584bfc640, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

ai-teammate 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 2d ago.

The scan reads SKILL.md. This mod also ships 12 executable files (scripts/build_teams_package.py, scripts/configure_agent_presence.py, scripts/create_blueprint.py, …), 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.

.github/skills/ai-teammate/SKILL.md · 504 lines

How it starts

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

AI チームメイト開発スキル

Microsoft Agent SDK アプリを App Service で自己ホストし、Agent 365 のエージェント ID ブループリントと Teams アプリパッケージを通じて、Teams / Microsoft 365 Copilot の **同僚エージェント(agentUser)**として実際に会話できる状態にする。

Foundry ホスト方式は使わない。 Foundry の activityprotocol を Agent 365 の agentUser エンドポイントに指定すると Agent 365 のトークンが 401 で拒否され、Teams で話しかけても応答が 返ってこない(無反応)。受理 audience を変える手段が無く、回避策も無い。 参考情報としてのみ references/foundry-hosted-bot.md に隔離する。 実装で作るのは常に自前 App Service の /api/messages

本 SKILL.md には正常系フローだけを置く。手順の中身・分岐・異常系はすべて references/、 再現可能な操作は scripts/ にある。

原則 内容
正常系は自己ホスト agentUser チャットが動くのは Agents SDK アプリを App Service で自己ホストする構成のみ
Foundry は参考 Foundry エージェントは正常系に含めない。頭脳として使うなら中間サービスで読替が要る
SDK / REST のみ Azure CLI・a365 CLI・Agents SDK で完結。ポータルのブラウザ自動操作は行わない
テンプレート駆動 コミットするのは ${VAR} 入りテンプレートだけ。実値は .env / シークレットストアのみ
外部データはデータ 取り込んだ文章はフェンスで囲って渡し、実害のある操作はコードで ID を検証する
インスタンス単位 同意・写真・Dataverse 登録はインスタンスごと。作り直すたびにやり直す
ALM は委譲 pre-commit・CI/CD・レビューゲート・リリース記録は alm スキルが担当する

前提ツール: Python 3.10+、Azure CLI(az)、Agent 365 CLI(a365)、.NET 8 SDK、Git。 認証は standard/scripts/auth_helper.py のキャッシュを共有し、ai-teammate 用に個別ログインしない。

参照 用途
digital-colleague-design.md 何を作るかを決める(役割カタログ R1〜R6 / 機能ブロック B1〜B16 / 提案条件 / 制約 / 段階導入)。Step 0 で読む
self-hosted-agent.md 自己ホストの完全手順(Azure Bot / App Service / appsettings.json / ログの読み方)
feature-blocks.md 機能ブロックの実装レシピ(B2/B6/B9〜B16 のコピー・アプリ設定・DI 登録)。Step 8 で読む
agent-brain.md 中身の作り込み(Azure OpenAI / 会話履歴 / プロンプト外部化 / Dataverse MCP / Work IQ / 再デプロイ)
prompt-injection.md 外部データを読むなら必須。フェンス / 許可リスト / 検知 / 同意の強制の 4 層。Step 8 で読む
usage-accounting.md 誰が・何に・いくら使ったかの計測(B15)。Azure ポータルでは出せない内訳。Step 8 で読む
incoming-files.md 送られたファイルを受け取る(B16)。取得経路と supportsFilesStep 8 で読む
assistant-agent-pattern.md 秘書・同僚としての標準品質(承認後の実行 / 権限準拠検索 / 人格 / プレゼンス)
sample-implementation-cases.md 評価・運用のサンプル実装事例(KPI ドリルダウン / 複数ターン評価 / 非同期ジョブ / Power Automate / Dataverse ミラー)
architecture.md 2 種類のブループリントの違い / manifest スキーマ / 公開経路 / 表示名・アイコンの変更
troubleshooting.md 異常系(401 / AADSTS82001 / AADSTS65001 / カタログ公開の 409・403 など)
.env.example 環境変数の一覧と取得元
alm 秘匿化ゲート・CI/CD・リリース記録
参考のみ foundry-hosted-bot.md(Foundry ホスト方式)/ poc-quickstart.md(共有エージェントの簡易ルート)/ team-pattern.md(複数体構成)/ a365-cli.md

Read the full file on GitHub · 504 lines

Files

What ships with it

57 files 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. 2d ago First seen · 504 lines · 236 tokens per session scan A 1ba584bfc640

Subscribe to this mod's changes

ai-teammate is a skill published in the GitHub repository geekfujiwara/CodeAppsDevelopmentStandard (62 stars, last pushed today), licensed MIT. It adds 236 tokens to every session and 10,563 once invoked, about $0.0012 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-09-03.

Related

Other skills, from other repositories