一键导入
daily-briefing
Generate a daily briefing summarizing recent memory and relevant information. Use when the user asks for a morning briefing or daily summary.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generate a daily briefing summarizing recent memory and relevant information. Use when the user asks for a morning briefing or daily summary.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Install the WorkIQ CLI for Microsoft 365 integration. This is a one-time setup skill that downloads and configures the workiq binary. Use when the user says: "setup workiq", "install workiq", "configure workiq"
Create an ad-hoc Microsoft Foundry agent for a specific purpose using the new v2 Responses API. Build a custom prompt agent with optional tools, run a conversation, and clean up. Use when the user says: "create a foundry agent", "make an agent for", "foundry agent", "build an ai agent", "create an assistant", "spin up an agent", "agent for this task"
Create an ad-hoc Microsoft Foundry agent with Code Interpreter to analyze data, generate charts, solve math problems, or run Python code in a sandboxed environment. Uses the new Foundry v2 Responses API with conversations. Use when the user says: "analyze this data", "create a chart", "run code interpreter", "foundry code interpreter", "analyze csv", "generate a plot", "solve this with code", "use code interpreter", "data analysis agent"
Provision a Microsoft Foundry resource, create a project, deploy a model (gpt-4.1-mini), and install the required Python SDK packages. This is a one-time setup skill. Use when the user says: "setup foundry", "provision foundry", "create foundry resource", "setup azure ai foundry", "install foundry sdk"
List recent and active GitHub incidents from githubstatus.com. Shows incident history, root causes, and resolution timelines. Use when the user says: "github incidents", "github outage history", "what happened on github", "recent github issues", "github downtime"
Check upcoming and active scheduled maintenance windows for GitHub services. Use when the user says: "github maintenance", "github scheduled downtime", "any github maintenance planned", "github upcoming maintenance"
| name | daily-briefing |
| description | Generate a daily briefing summarizing recent memory and relevant information. Use when the user asks for a morning briefing or daily summary. |
| metadata | {"verb":"brief"} |
Compile a comprehensive daily briefing from memory.
Read today's daily log (if it exists):
cat ~/.polyclaw/memory/daily/$(date +%Y-%m-%d).md 2>/dev/null || echo "No entries yet today."
Read yesterday's daily log for continuity:
cat ~/.polyclaw/memory/daily/$(date -v-1d +%Y-%m-%d).md 2>/dev/null || echo "No entries yesterday."
Scan topic notes for any recently updated items:
find ~/.polyclaw/memory/topics/ -name '*.md' -mtime -2 -exec basename {} .md \;
Compile the briefing:
Use emoji headers and keep it scannable:
Good morning! Here's your briefing for <date>:
**Yesterday**
- ...
**Active Topics**
- ...
**Suggested Actions**
- ...