daily-standup

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

13 stars

Best use case

daily-standup is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

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

Teams using daily-standup should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/daily-standup/SKILL.md --create-dirs "https://raw.githubusercontent.com/abdullah1854/MCPGateway/main/.agents/skills/daily-standup/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/daily-standup/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How daily-standup Compares

Feature / Agentdaily-standupStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

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

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# 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

```typescript
// 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

```typescript

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)

Related Skills

We are still matching the closest adjacent skills for this page. In the meantime, continue through the full directory.