.claude/skills/tips-status/SKILL.md
Tips残数と配信状況を確認する。在庫管理や補充タイミングの判断に使用。
npx skillsauth add takuya86/slack-ai-tips-bot tips-statusInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Tips残数と配信状況を確認するスキル。
/tips-statusTips状況を確認残りのTipsは?obsidian-sns-dataをclone
git clone https://github.com/takuya86/obsidian-sns-data.git /tmp/data
Tips残数を集計
# 各カテゴリの未使用数/総数を集計
for cat in engineer consultant backoffice; do
total=$(ls /tmp/data/ai-tips/$cat/*.md 2>/dev/null | wc -l)
unused=$(grep -rl "used_count: 0" /tmp/data/ai-tips/$cat/ 2>/dev/null | wc -l)
echo "$cat: $unused/$total 未使用"
done
GitHub Actions状況を確認
gh run list --workflow=post-tips.yml --limit 5
結果をレポート
📊 Tips残数:
┌─────────────┬────────┬───────┬────────┐
│ カテゴリ │ 未使用 │ 合計 │ 残り日数│
├─────────────┼────────┼───────┼────────┤
│ engineer │ 46 │ 55 │ 46日 │
│ consultant │ 25 │ 35 │ 25日 │
│ backoffice │ 26 │ 35 │ 26日 │
└─────────────┴────────┴───────┴────────┘
⚠️ consultantが残り25日分です。更新を検討してください。
📅 最近の配信履歴:
- 2026-02-14 09:00 ✅ engineer: 【事例】NTTドコモ...
- 2026-02-14 12:00 ✅ consultant: 【事例】三菱UFJ...
- 2026-02-14 18:00 ✅ backoffice: 【実践】経費精算...
🔗 詳細: https://github.com/takuya86/slack-ai-tips-bot/actions
| 残数 | 状態 | アクション |
|------|------|-----------|
| 10件以上 | 正常 | - |
| 5-9件 | 注意 | /tips-update で更新を検討 |
| 4件以下 | 警告 | 早急に /tips-update で更新が必要 |
/tips-update: Tips追加development
Web検索で最新AI活用事例を収集し、obsidian-sns-dataリポジトリにTipsを追加する。Tips残数が少ない時や新しいコンテンツが必要な時に使用。
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------