{"id":33913170,"url":"https://github.com/stack-stark/timehive","last_synced_at":"2026-05-29T12:01:33.681Z","repository":{"id":289044338,"uuid":"968484487","full_name":"stack-stark/timehive","owner":"stack-stark","description":"一个基于cron表达式的定时任务提醒助手","archived":false,"fork":false,"pushed_at":"2025-04-21T07:36:10.000Z","size":280,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-13T10:15:52.132Z","etag":null,"topics":["reminder","typescript","vscode-extension"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stack-stark.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-18T06:55:15.000Z","updated_at":"2025-04-21T07:35:04.000Z","dependencies_parsed_at":"2025-04-21T08:45:22.748Z","dependency_job_id":null,"html_url":"https://github.com/stack-stark/timehive","commit_stats":null,"previous_names":["stack-stark/timehive"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/stack-stark/timehive","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stack-stark%2Ftimehive","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stack-stark%2Ftimehive/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stack-stark%2Ftimehive/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stack-stark%2Ftimehive/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stack-stark","download_url":"https://codeload.github.com/stack-stark/timehive/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stack-stark%2Ftimehive/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33650712,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-29T02:00:06.066Z","response_time":107,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["reminder","typescript","vscode-extension"],"created_at":"2025-12-12T06:02:06.854Z","updated_at":"2026-05-29T12:01:33.676Z","avatar_url":"https://github.com/stack-stark.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 时间蜂巢  \n 一个基于cron表达式的定时任务提醒助手，使用需关闭编辑器勿扰模式。\n\n## 功能特色\n- 支持cron表达式创建自定义任务\n- 支持自定义任务分组\n- 支持暂停/重启任务\n- 支持删除任务\n- 支持修改任务\n\n### 如何新增提醒\n1. 点击右上角的`+添加提醒`按钮\n2. 输入cron表达式\n3. 输入任务名称\n\n### 如何 删除/暂停/重启 提醒\n1. 移动到需要操作的任务\n2. 点击相应按钮操作\n\n\n## 关于cron表达式\n‌Cron表达式是一种用于定义定时任务执行规则的字符串格式，广泛应用于系统调度和应用程序中。\n\n### 核心结构与字段含义\nCron表达式通常由6或7个字段组成（部分系统支持可选的“年”字段），按顺序表示以下时间单位：\n\n``` bash\n # ┌────────────── ‌秒‌（0-59，可选字段）\n # │ ┌──────────── ‌分钟‌（0-59）\n # │ │ ┌────────── ‌小时‌（0-23）\n # │ │ │ ┌──────── ‌日‌（1-31）\n # │ │ │ │ ┌────── ‌月‌（1-12或英文缩写如JAN）\n # │ │ │ │ │ ┌──── ‌星期‌（0-6或英文缩写如SUN，0和7均代表周日）\n # │ │ │ │ │ │\n # │ │ │ │ │ │\n # * * * * * *\n```\n### cron在线工具\n可以使用工具生成cron表达式，下面是几个常用的在线工具：\n\n‌[在线Cron表达式生成器-pppet.net](https://www.pppet.net/)\n\n‌[在线Cron表达式生成器-cron.ciding.cc](https://cron.ciding.cc/)\n\n### 常用特殊字符与规则\nCron表达式通过特殊字符实现灵活的时间规则定义：\n\n| 特殊字符 | 功能描述 | 使用示例 |\n|---------|---------|---------|\n| `*` | 匹配任意值 | 分字段设为`*`表示每分钟触发 |\n| `,` | 枚举多个值 | `1,15`在小时字段表示1点和15点 |\n| `-` | 定义范围 | `10-20`在日字段表示10号到20号 |\n| `/` | 指定间隔 | `0/15`在分字段表示每15分钟一次 |\n| `?` | 仅用于日或星期字段，表示\"不指定\" | 用于避免日和周字段冲突 |\n| `L` | 表示\"最后\" | `L`在星期字段表示最后一天 |\n| `W` | 表示\"最近工作日\" | `15W`在日字段表示离15号最近的工作日 |\n\n### 常见示例\n| Cron表达式 | 执行说明 |\n|-----------|---------|\n| `* * * * *` | 每1分钟整点执行 |\n| `0 0 * * * ?` | 每天每小时整点执行 |\n| `0 0/5 * * * ?` | 每5分钟执行一次 |\n| `25 9 * * 1-5` | 每个工作日的9点25分执行 |\n| `0 10 * * 5` | 每个星期五的10点执行 |\n| `0 0 12 * * ?` | 每天中午12点执行 |\n| `0 0 0 * * 0,6` | 每周日和周六午夜执行 |\n| `0 0 0 1 * ?` | 每个月1日午夜执行 |\n\n## 相关链接\n- [问题反馈](https://github.com/stack-stark/timehive/issues)\n\n- [项目地址](https://github.com/stack-stark/timehive.git)\n\n- [插件地址](https://marketplace.visualstudio.com/items?itemName=stack-stark-code.timehive)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstack-stark%2Ftimehive","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstack-stark%2Ftimehive","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstack-stark%2Ftimehive/lists"}