Agent skill
daily-standup
Stars
1
Forks
0
Install this agent skill to your Project
npx add-skill https://github.com/abdullah1854/ClaudeSuperSkills/tree/main/daily-standup
SKILL.md
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 accomplishmentsplanned(array) (required): Today's planblockers(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)
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
dockerfile-generator
1
0
Explore
tool-design
1
0
Explore
ax-dynamics-helper
1
0
Explore
pr-summary
1
0
Explore
memory-systems
1
0
Explore
hooks-guide
1
0
Explore
Didn't find tool you were looking for?