Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计提醒

weekly-planner每周计划表

Agent Skill

weekly-planner 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

15,523

周安装

660

GitHub Stars

公开资料未说明

下载量

5,438
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:weekly-planner(每周计划表)
来源仓库:https://github.com/tristanmanchester/weekly-planner
安装命令:
openclaw skills install weekly-planner
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install weekly-planner

简介

基于TOML文件的个人每周计划管理系统。

  • 支持收件箱捕获、时间块安排与回顾总结。weekly-planner 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 可选导出至Google Calendar同步日程。
  • 数据存储于本地文件,建议定期备份防丢失。
  • 需熟悉TOML语法结构方可正确编辑配置文件。

SKILL.md

name
weekly-planner
description
File-based weekly planning system (TOML) with inbox capture, time-block scheduling, weekly review, and optional calendar publishing (Google Calendar via gogcli or .ics export). Use when a user asks to plan or time-block a week, triage an inbox of tasks, roll over unfinished work, run a weekly review, or publish a weekly schedule to a calendar. Do NOT use for full project-management tools (Jira/Linear/etc.) unless explicitly requested.
license
MIT
compatibility
OpenClaw / AgentSkills. Scripts require Python 3.11+. Optional: gog (steipete/gogcli) for direct Google Calendar sync; otherwise export .ics.
metadata
{"version":"0.2.0","tags":["planner","weekly-review","time-blocking","productivity"],"openclaw":{"emoji":"🗓️","install":[{"id":"brew-python","kind":"brew","formula":"python","bins":["python3"],"label":"Install Python 3 (brew)"},{"id":"brew-gogcli","kind":"brew","formula":"steipete/tap/gogcli","bins":["gog"],"label":"Install gogcli (brew)"}]}}

Weekly Planner

A lightweight, file-based weekly planner that lives in a workspace folder as plain text (.toml). It supports:

  • Inbox capture (planner/inbox.toml) for fast, append-only task capture
  • Weekly plans (planner/weeks/YYYY-Www.toml) with:

- scheduled time blocks (can be published to a calendar) - unscheduled weekly bits / daily bits - an end-of-week review

  • A runbook (planner/runbook.toml) of recurring blocks copied into each new week
  • Optional mode cards (planner/modes/*.md) describing how the user wants to work in different contexts

When to use this skill

Use this skill when the user asks for any of the following:

  • “Plan my week”, “time-block my week”, “create a weekly plan”, “make a schedule for next week”
  • “Capture this in my inbox”, “add this to my planner”, “triage my tasks”
  • “Create a new week file”, “roll over last week’s unfinished tasks”
  • “Publish/sync my planner to my calendar”, “export an .ics for my week”
  • “Do an end-of-week review”

Don’t use this skill for full project-management systems (Jira/Linear/etc.) unless the user explicitly wants that.

Quick start

1) Ensure the planner folder exists

Look for a planner/ folder in the current workspace that contains planner/config.toml.

If it doesn’t exist, initialise a fresh planner skeleton (safe: refuses to overwrite existing folders):

python3 {baseDir}/scripts/init_planner.py --target ./planner

This creates:

  • planner/config.toml
  • planner/inbox.toml
  • planner/runbook.toml
  • planner/weeks/WEEK_TEMPLATE.toml
  • planner/modes/*.md
  • planner/scripts/new_week.py
  • planner/scripts/rollover_week.py
  • planner/scripts/validate.py
  • planner/scripts/sync_week.py (Google Calendar sync via gog)
  • planner/scripts/export_ics.py (calendar export without Google tooling)
  • planner/logs/

2) Tell the user what to customise

Ask the user to review planner/config.toml and customise:

  • timezone (IANA tz name, e.g. Europe/Berlin)
  • modes.* (their mode names + labels)
  • (Optional) calendar publish settings (see “Publish to calendar” below)

3) Create (or roll over) a week

Create a new week file:

python3 planner/scripts/new_week.py --week-start 2026-03-02

Or roll over unfinished tasks from the most recent week:

python3 planner/scripts/rollover_week.py --next

4) Validate before “publishing” anything

Run validation after edits (especially before calendar publish):

python3 planner/scripts/validate.py --week planner/weeks/2026-W10.toml

Core workflows

A) Inbox capture

Goal: capture tasks with minimal friction.

Rules:

  • Treat planner/inbox.toml as append-only.
  • Add one [[items]] block per task.
  • Keep each entry small; use notes only when it helps.

When the user says “add this to my inbox”, append a new item like:

[[items]]
created = "YYYY-MM-DDTHH:MM:SS+01:00"
text = "(task description)"
mode = "ops"               # any key from config.toml [modes.*]
est_minutes = 30
priority = "medium"        # low|medium|high
status = "todo"            # todo|doing|done|dropped
notes = ""

If the user doesn’t specify mode, choose a reasonable default (usually their “ops/admin” mode).

B) Triage inbox → weekly plan

Goal: turn raw inbox items into (a) 2–3 outcomes, (b) a small set of scheduled blocks, and (c) a manageable list of unscheduled bits.

Process:

1) Read planner/inbox.toml. 2) Ask the user for: - hard constraints (deadlines, appointments, travel) - 2–3 outcomes they care about this week - anything non-negotiable (exercise, family time, admin) 3) Convert inbox items into one of: - time blocks (must happen at a specific time) - weekly bits (do sometime this week) - daily bits (do sometime on a specific day) - or mark as dropped if it’s not happening this week

Keep the plan intentionally small:

  • 2–5 focus tasks
  • A few high-leverage time blocks
  • A short “bits” list the user can realistically finish

C) Create a new week file

Use when the user wants to start planning a new week.

1) Determine week_start (a Monday date in YYYY-MM-DD).

2) Generate the file (copies runbook blocks into [[time_blocks]]):

python3 planner/scripts/new_week.py --week-start 2026-03-02

3) Then edit planner/weeks/2026-W10.toml:

  • Fill [goals] outcomes (2–3 crisp outcomes)
  • Add focus_tasks (2–5 items max)
  • Add / adjust [[time_blocks]] (scheduled blocks)
  • Add [[weekly_bits]] and [[daily_bits]] for unscheduled tasks

D) Roll over unfinished work (optional)

Use when the user has an existing week file and wants to start the next week without retyping.

Typical flow:

python3 planner/scripts/rollover_week.py --next

This:

  • finds the most recent week in planner/weeks/
  • creates the next week (week_start + 7 days)
  • copies runbook blocks into the new week’s [[time_blocks]]
  • carries over unfinished weekly_bits and daily_bits

E) Publish time blocks to a calendar (optional)

Only [[time_blocks]] are published.

Two safe options:

Option 1: Google Calendar sync (direct, destructive)

This workflow is destructive by design — it updates/deletes managed events.

Safety rules (must follow):

  • Only ever sync to a dedicated planner calendar (never the user’s main calendar).
  • Always run dry-run first.
  • Only run with --apply if BOTH are true:

1) The user explicitly asked you to apply changes. 2) calendar.write_enabled = true in planner/config.toml.

Requirements:

  • gog CLI installed + authenticated (steipete/gogcli)

Dry-run:

python3 planner/scripts/sync_week.py --week planner/weeks/2026-W10.toml

Apply:

python3 planner/scripts/sync_week.py --week planner/weeks/2026-W10.toml --apply

Option 2: Export an .ics file (safe, non-destructive)

Works without Google tooling.

python3 planner/scripts/export_ics.py --week planner/weeks/2026-W10.toml

This writes planner/weeks/2026-W10.ics, which the user can import into most calendar apps.

F) End-of-week review

At the end of the week, help the user fill:

  • review.score (0–10)
  • review.wins (1–5 bullets)
  • review.fails (1–5 bullets)
  • review.what_i_learned (short paragraph)
  • review.next_week_focus (1–2 sentences)

Quality gates

Before publishing/syncing:

1) Run validation:

python3 planner/scripts/validate.py --week planner/weeks/2026-W10.toml

2) Fix all errors. 3) Treat warnings as “strong suggestions” (overlaps, out-of-bounds blocks, unknown modes).

References

  • File formats and schema: references/PLANNER_SCHEMA.md
  • Calendar publish & safety model: references/CALENDAR_SYNC.md

Troubleshooting

“Python can’t import tomllib” / “No module named tomllib”

You’re on Python < 3.11.

Fix: install Python 3.11+ and re-run.

“gog: command not found”

Google Calendar sync requires the gog CLI.

Fix: either install gogcli (see references) or use the .ics export instead.

“Refusing to apply changes: calendar.write_enabled is false”

Intentional safety latch.

Fix: have the user set calendar.write_enabled = true once they’re confident in the dry-run output.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

90.39%
按下载量换算4,915

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills