用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/DOsinga/world66 --skill todo命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | todo |
| description | help update the content of world66 in batches. invoke when the user asks you to help with a to do item |
| argument-hint | <task-name> |
If no task name is provided, list the available tasks by looking at subdirectories of todo/. Show the task name, a one-line summary from TASK.md, and how many shards remain. Let the user pick one.
If a task name is provided, pick up a random shard from todo/$ARGUMENTS/ and process it. These tasks are typically about updating the content in content/, so make sure you understand the task at hand in terms of folder structure. Read CLAUDE.md, STYLE.md, and any other docs referenced by TASK.md before starting.
Check prerequisites
gh (GitHub CLI) is installed. If not, install it with brew install gh.main branch. If not, stash or commit first.Pick a shard
todo/$ARGUMENTS/ for .txt batch files.Check for existing PRs
todo-$ARGUMENTS-<shard> (e.g., todo-country_cleanup-batch_00).gh pr list --state all --search "todo-$ARGUMENTS-<shard>" to check if a PR already exists (open or merged).Create a branch
git checkout -b todo-$ARGUMENTS-<shard>Read the task description
todo/$ARGUMENTS/TASK.md to understand what needs to be done for each item.Process each item in the shard
python3 tools/mark_done.py $ARGUMENTS <path/to/page.md>
This adds <task>: <today> to the done: dict in the frontmatter. Run it
on the main location/country file for the item (the top-level .md, not
each section/POI). Stage the change as part of the same item commit.Delete the shard file
Push and create a PR
git push -u origin todo-$ARGUMENTS-<shard>gh pr create:
todo-$ARGUMENTS-<shard>http://127.0.0.1:8066/review?branch=todo-$ARGUMENTS-<shard>