# Daily Standup

> daily-standup

- Skill: `abdullah1854-claudesuperskills/daily-standup` (Agent Skill, multi-file: 4 files)
- Install (CLI): `npx skillmds@latest add abdullah1854-claudesuperskills/daily-standup`
- Raw SKILL.md: https://api.skillmd.com/api/skills/abdullah1854-claudesuperskills/daily-standup/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: abdullah1854 (https://skillmd.com/u/abdullah1854-claudesuperskills)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/abdullah1854-claudesuperskills/daily-standup

---

# 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)

