
Security News
TC39 Advances Temporal to Stage 4 Alongside Several ECMAScript Proposals
TC39’s March 2026 meeting advanced eight ECMAScript proposals, including Temporal reaching Stage 4 and securing its place in the ECMAScript 2026 specification.
Cron for AI agents — git-native scheduling, tasks, and reminders compiled to GitHub Actions
Cron for AI agents.
Schedule any AI agent — gitclaw, gitagent, Claude Code SDK, OpenAI, or your own — using cron.yaml compiled to GitHub Actions.
No custom runtime. No infra. Just git.
Quick Start • cron.yaml • CLI Commands • Compatible Agents • Branch Strategies • Adapters
AI agents need cron. Agents review PRs, fix lint, run audits, validate models, and track compliance — but there's no standard way to schedule them. Gitcron is cron for AI agents:
cron.yamlgitcron generate to compile into GitHub Actions workflowsWorks with any agent framework via gitagent adapters:
| Agent / Framework | Adapter | How it works |
|---|---|---|
| gitclaw | gitclaw | Full runtime with tools, hooks, audit, compliance |
| gitagent | claude / openai | Framework-agnostic agent standard |
| Claude Code SDK | claude | Claude-powered code agents |
| OpenAI | openai | GPT-powered agents |
| Any LLM | system-prompt | Generic system prompt export |
| Shell commands | command | Any CLI tool, script, or binary |
npm install -g gitcron
# Scaffold a new gitcron configuration
gitcron init --template standard
# Validate your configuration
gitcron validate
# Generate GitHub Actions workflow files
gitcron generate
# Preview without writing
gitcron generate --dry-run
spec_version: "0.1.0"
name: my-project-cron
schedules:
- name: nightly-code-review
cron: "0 2 * * *"
agent: code-reviewer
adapter: claude
prompt: "Review all open PRs"
branch:
strategy: pr
base: main
- name: weekly-lint
cron: "0 6 * * 1"
command: "npm run lint -- --fix"
branch:
strategy: commit
base: main
tasks:
directory: ".gitcron/tasks"
states: [pending, in_progress, review, done, cancelled]
transitions:
pending: [in_progress, cancelled]
in_progress: [review, done, cancelled]
review: [in_progress, done]
done: []
cancelled: []
reminders:
- name: quarterly-review
type: recurring
cron: "0 9 1 */3 *"
action:
type: issue
title: "Quarterly Review Due"
gitcron initScaffold a new configuration.
gitcron init # Standard template
gitcron init --template minimal # Minimal template
gitcron init --template full # Full template with all options
gitcron generateCompile cron.yaml into GitHub Actions workflow files.
gitcron generate # Write workflow files
gitcron generate --dry-run # Preview output
gitcron generate --diff # Show changes
gitcron generate --force # Overwrite manually-edited files
gitcron validateValidate cron.yaml against the schema.
gitcron validate # Validate
gitcron validate --strict # Treat warnings as errors
gitcron listList schedules, tasks, and reminders.
gitcron list # Show everything
gitcron list --schedules # Schedules only
gitcron list --tasks # Tasks only
gitcron list --reminders # Reminders only
gitcron statusShow an overview of your gitcron configuration.
gitcron taskGit-native task management. Every mutation creates a git commit.
gitcron task create "Update docs" --priority high --assignee alice
gitcron task list
gitcron task list --state pending
gitcron task update TASK-001 --state in_progress
gitcron task show TASK-001
gitcron remindManage reminders.
gitcron remind create weekly-sync --cron "0 9 * * 1" --title "Weekly Sync"
gitcron remind list
gitcron remind fire weekly-sync # Manually trigger
gitcron remind pause weekly-sync
gitcron remind resume weekly-sync
Gitcron is the scheduling layer for the entire AI agent ecosystem. Any agent that can run as a CLI command can be scheduled:
claude adapter.openai adapter.command to schedule any script, binary, or CLI tool.Gitcron ships with skills that teach agents how to manage their own schedules, tasks, and reminders — enabling self-scheduling agents that can create follow-up jobs, track work items, and set compliance deadlines autonomously.
| Strategy | Behavior |
|---|---|
pr | Create branch, run, commit, push, open PR |
create | Create branch, run, commit, push (no PR) |
commit | Run, commit, push directly to base branch |
none | Run only (no git operations) |
Run a gitagent agent on a schedule:
schedules:
- name: code-review
cron: "0 2 * * *"
agent: code-reviewer
adapter: claude
prompt: "Review open PRs"
Run an agent using the gitclaw runtime (full tools, hooks, audit, compliance):
schedules:
- name: code-review
cron: "0 2 * * *"
agent: code-reviewer
adapter: gitclaw
prompt: "Review open PRs"
agent_source:
type: local
path: "./agents/code-reviewer"
secrets: [ANTHROPIC_API_KEY]
The generated workflow installs and runs gitclaw -d <dir> -p <prompt> instead of gitagent run.
Run any shell command on a schedule:
schedules:
- name: lint-fix
cron: "0 6 * * 1"
command: "npm run lint -- --fix"
| Adapter | Runtime | Install | Best for |
|---|---|---|---|
claude | Claude Code via gitagent | gitagent | Code changes, PRs |
openai | OpenAI API via gitagent | gitagent | Analysis, reviews |
gitclaw | gitclaw runtime (pi-agent-core) | gitclaw | Full agent with tools, hooks, audit, compliance |
system-prompt | System prompt export via gitagent | gitagent | Generic LLM integration |
Contributions are welcome! Please open an issue or submit a pull request.
MIT
FAQs
Cron for AI agents — git-native scheduling, tasks, and reminders compiled to GitHub Actions
We found that gitcron demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
TC39’s March 2026 meeting advanced eight ECMAScript proposals, including Temporal reaching Stage 4 and securing its place in the ECMAScript 2026 specification.

Research
/Security News
Since January 31, 2026, we identified at least 72 additional malicious Open VSX extensions, including transitive GlassWorm loader extensions targeting developers.

Research
Six malicious Packagist packages posing as OphimCMS themes contain trojanized jQuery that exfiltrates URLs, injects ads, and loads FUNNULL-linked redirects.