MCPGateway: Skill for Claude Code

.agents/skills/daily-standup/SKILL.md

daily-standup is a skill for Claude Code, Codex from abdullah1854/MCPGateway. It costs 0 tokens per session (397 once invoked), scanned A, original, MIT.

A generator for daily standup reports, short team updates covering completed work, planned work, and blockers.

In plain words
What is it for?
Use it to create a standup from yesterday’s accomplishments, today’s plans, and any current blockers.
Why use it?
It turns structured lists into a dated report so the update does not have to be formatted by hand.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is abdullah1854/MCPGateway's own configuration. It tells Claude Code and Codex how to work on MCPGateway 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 MCPGateway configures →

Reuse

Borrowing it

Nothing to install: this file belongs to abdullah1854/MCPGateway. 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/abdullah1854/MCPGateway/main/.agents/skills/daily-standup/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/abdullah1854/MCPGateway

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 daily-standup

README.md
[![agentmods](https://agentmods.dev/badge/skills/abdullah1854/mcpgateway/daily-standup/github.svg)](https://agentmods.dev/skills/abdullah1854/mcpgateway/daily-standup)
Your own site
<a href="https://agentmods.dev/skills/abdullah1854/mcpgateway/daily-standup"><img src="https://agentmods.dev/badge/skills/abdullah1854/mcpgateway/daily-standup/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 daily-standup

Your own site · 80×15
<a href="https://agentmods.dev/skills/abdullah1854/mcpgateway/daily-standup"><img src="https://agentmods.dev/badge/skills/abdullah1854/mcpgateway/daily-standup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 397 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.00000 $0.00397
Opus 5 $0.00000 $0.00198
Sonnet 5 $0.00000 $0.00079
Haiku 4.5 $0.00000 $0.00040

Measured 10d ago against content hash 0b6161d906f1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

daily-standup 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 10d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (index.ts, scripts/standup_generator.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.

.agents/skills/daily-standup/SKILL.md · 71 lines

What it actually says

daily-standup

Generates daily standup reports from accomplishments, plans, and blockers.

Metadata

  • Version: 1.0.0
  • Category: productivity
  • Source: workspace

Tags

standup, agile, productivity

MCP Dependencies

None specified

Inputs

  • accomplishments (array) (required): Yesterday's accomplishments
  • planned (array) (required): Today's plan
  • blockers (array) (optional): Current blockers

Workflow

No workflow defined

Anti-Hallucination Rules

None specified

Verification Checklist

None specified

Usage

// Execute via MCP Gateway:
gateway_execute_skill({ name: "daily-standup", inputs: { ... } })

// Or via REST API:
// POST /api/code/skills/daily-standup/execute
// Body: { "inputs": { ... } }

Code


const { accomplishments, planned, blockers = [] } = inputs;
const date = new Date().toISOString().split('T')[0];

let report = `# Daily Standup - ${date}\n\n## ✅ Yesterday\n`;
for (const a of accomplishments) report += `- ${a}\n`;

report += `\n## 📋 Today\n`;
for (const p of planned) report += `- ${p}\n`;

if (blockers.length > 0) {
  report += `\n## 🚧 Blockers\n`;
  for (const b of blockers) report += `- ${b}\n`;
}

console.log(report);


Created: Mon Dec 22 2025 10:36:14 GMT+0800 (Singapore Standard Time) Updated: Mon Dec 22 2025 10:36:14 GMT+0800 (Singapore Standard Time)

Files

What ships with it

3 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. 10d ago First seen · 71 lines · 0 tokens per session scan A 0b6161d906f1

Subscribe to this mod's changes

daily-standup is a skill published in the GitHub repository abdullah1854/MCPGateway (15 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 397 tokens. 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-30.

Related

Other skills, from other repositories