OKR工作管理炼金术师

v2.0.0

KPI/OKR 工作管理系统。支持季度/年度 OKR 目标设置,通过自然语言记录工作日志 自动追踪目标进度,生成周报、月报、季报、年报,实现目标管理+工作记录+进度追踪+复盘总结的完整闭环。

0· 162·0 current·0 all-time
by爱吃肉的小怪兽@zerosloney

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for zerosloney/okr-work-manager.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "OKR工作管理炼金术师" (zerosloney/okr-work-manager) from ClawHub.
Skill page: https://clawhub.ai/zerosloney/okr-work-manager
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install okr-work-manager

ClawHub CLI

Package manager switcher

npx clawhub@latest install okr-work-manager
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description claim OKR/KPI management and the skill only requires reading/writing JSON under {workspace}/.okr-work-manager and creating scheduled report tasks — all coherent with the stated purpose. No unrelated credentials, binaries, or external services are requested.
Instruction Scope
SKILL.md instructs the Agent to read/write JSON files in {workspace}/.okr-work-manager, create/modify those files, and optionally create Gateway Cron jobs to aggregate reports. It does not instruct access to other system paths, environment variables, or external endpoints beyond the scheduling API references, which align with report automation.
Install Mechanism
This is instruction-only (no install spec, no code files executed). That lowers disk-write/execution risk; nothing is downloaded or installed.
Credentials
The skill declares no required environment variables, credentials, or config paths. Its data access is limited to the workspace JSON directory described in the docs, which is proportionate to an OKR manager.
Persistence & Privilege
always:false (good). The skill includes instructions to create Gateway Cron tasks so it can schedule periodic agent turns — this enables autonomous periodic runs (expected for scheduled reports). Confirm you want scheduled autonomous runs and that the agent's cron API permissions are acceptable for your environment.
Assessment
This skill appears to do what it says: it will read and write structured JSON files under {workspace}/.okr-work-manager and can create scheduled (cron) agent jobs to auto-generate reports. Before installing, consider: (1) Back up any existing .okr-work-manager data in your workspace — the skill will create/modify files there. (2) If you do not want automatic periodic runs, do not enable the Gateway Cron tasks or adjust the schedules after installation. (3) The skill requests no external credentials and performs no network calls in the documentation, but it can modify workspace files — only install if you trust it to operate on those files. (4) If your environment restricts agent scheduling or file writes, review/limit the skill's permission to create cron jobs or run autonomously.

Like a lobster shell, security has layers — review code before you run it.

latestvk97acrgs6drn0zb4jrkbetnpfx83yzw1
162downloads
0stars
3versions
Updated 4w ago
v2.0.0
MIT-0

KPI/OKR 工作管理

将零散的工作日志转化为结构化的 OKR 管理,实现从目标设置到成果总结的完整数据闭环。

何时使用此技能

  • 用户要记录每日工作日志
  • 用户要创建/查看/更新周计划
  • 用户要生成周报、月报、季报或年报
  • 用户要设置或查看 OKR 目标和进度
  • 用户要复盘季度或年度 OKR 完成情况

核心原则

  1. 自然语言输入:任意格式,Agent 智能解析工时、标签
  2. 零依赖:Agent 直接读写 JSON 文件,无需安装任何工具
  3. 自动追踪:工作日志关联 OKR,自动累计进度
  4. 渐进分析:周报(轻度) -> 月报(对齐) -> 季报(提炼) -> 年报(复盘)

数据存储

数据存放在 {workspace}/.okr-work-manager/ 目录下:

.okr-work-manager/
├── daily/           # 工作日志 (YYYY-MM-DD.json)
├── plans/           # 周计划 (YYYY-Www.json)
├── weekly/          # 周报 (YYYY-Www-report.json)
├── monthly/         # 月报 (YYYY-MM-report.json)
├── quarterly/       # 季报 (YYYY-QX-report.json)
├── yearly/          # 年报 (YYYY-report.json)
├── okr_config.json  # OKR 配置
└── okr_progress.json # OKR 进度

完整 JSON schema 参见 data-schema.md

定时调度(Gateway Cron)

通过 Agent Gateway Cron 实现定期报告生成。

首次使用:初始化定时任务

Agent 通过 cron.add 创建 3 个隔离式 cron 任务:

{
  "name": "okr:weekly-report",
  "schedule": { "kind": "cron", "expr": "0 18 * * 5", "tz": "Asia/Shanghai" },
  "sessionTarget": "isolated",
  "payload": {
    "kind": "agentTurn",
    "message": "执行本周工作周报。读取 {workspace}/.okr-work-manager/daily/ 本周日志和 plans/ 本周计划,汇总工时、标签、OKR 贡献,保存到 weekly/ 目录。参考 skills/okr-work-manager/references/data-schema.md",
    "model": "haiku"
  },
  "delivery": { "mode": "announce" }
}
{
  "name": "okr:monthly-report",
  "schedule": { "kind": "cron", "expr": "0 20 28 * *", "tz": "Asia/Shanghai" },
  "sessionTarget": "isolated",
  "payload": {
    "kind": "agentTurn",
    "message": "执行本月 OKR 对齐分析月报。读取 {workspace}/.okr-work-manager/ 本月全部日志,对比 okr_config.json 分析对齐度和进度预警,保存到 monthly/ 目录。参考 skills/okr-work-manager/references/data-schema.md",
    "model": "haiku"
  },
  "delivery": { "mode": "announce" }
}

CLI 方式(将 {cli} 替换为实际命令):

{cli} cron add \
  --name "okr:weekly-report" \
  --cron "0 18 * * 5" \
  --tz "Asia/Shanghai" \
  --session isolated \
  --message "执行本周工作周报..." \
  --model haiku --announce

默认值

任务默认时间cron 表达式说明
周报每周五 18:000 18 * * 5工作日结束前
月报每月 28 日 20:000 20 28 * *月底提前
季报/年报不自动执行由用户手动触发

频率调整

周报改成每周五 17 点
月报改成每月最后一天
暂停自动周报
恢复周报

四级分析体系

1. 周报(轻度展示)

  • 读取本周日志,对比周计划完成情况
  • 汇总各 OKR 的本周贡献
  • 保存至 weekly/YYYY-Www-report.json

2. 月报 + OKR 对齐分析(中度)

  • 读取本月全部日志和周报
  • 工作与 OKR 对齐度分析,识别未对齐工作
  • OKR 进度预警(落后/超前)
  • 下月对齐建议
  • 保存至 monthly/YYYY-MM-report.json

3. 季报 + OKR 智能提炼(深度)

  • 读取季度内所有月报
  • OKR 完成情况总结,KR 级进度评估
  • 基于工作分布智能提炼下一季度 OKR 建议
  • 保存至 quarterly/YYYY-QX-report.json

4. 年报 + 年度 OKR 复盘(全面)

  • 读取全年季报
  • 季度 OKR 与年度 OKR 对齐分析
  • 全年工作模式识别和趋势分析
  • 下一年度 OKR 建议
  • 保存至 yearly/YYYY-report.json
分析类型对齐分析进度预警OKR 提炼趋势分析调整建议
周报-----
月报OKR 对齐超前/落后--下月
季报OKR 对齐OKR 完成智能提炼-下季度
年报季度-年度全年完成OKR 建议季度趋势下一年度

OKR 管理

双重模式

模式说明
主动设置用户在季度/年度开始前设置目标,实时追踪进度
智能提炼季报/年报基于工作数据自动生成 OKR 建议

OKR ID 命名

类型格式示例
季度 OKRq_{year}-Q{quarter}_{index}q_2026-Q1_1
年度 OKRy_{year}_{index}y_2026_1

操作方式

  • 设置 OKR:"设置 Q1 OKR:1.完成架构升级(200h)- 核心模块重构(100h)..."
  • 查看进度:"查看 Q1 OKR 进度"
  • 更新 KR 进度:Agent 根据工作日志自动累计

时间计算规则

  • ISO 8601 标准:周从周一开始,第1周包含1月4日
  • 季度:Q1(1-3月)、Q2(4-6月)、Q3(7-9月)、Q4(10-12月)

依赖技能

无外部依赖。Agent 直接读写 JSON 文件。

参考文档

  • data-schema.md — 全部 JSON 数据结构定义(日志、计划、报告、OKR 配置、OKR 进度)
  • troubleshooting.md — 常见问题、数据修复、从 Python 版本迁移

使用示例

  • basic-usage.md — 记录日志、创建计划、生成周报
  • advanced-usage.md — OKR 设置、进度查看、月报对齐分析、季报提炼、年报复盘

版本历史

版本日期变更
2.0.02026-03-31重构为分层文档架构;补全月报/季报/年报/进度 JSON schema;统一路径为 {workspace};增加 Gateway Cron 调度;增加标准 frontmatter 字段
1.0.02026-03-27Agent 纯驱动重构:移除 Python 脚本,单 SKILL.md

Comments

Loading comments...